Click here to Skip to main content
15,921,989 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CListCtrl and lParam Pin
t2x16-Feb-06 1:19
t2x16-Feb-06 1:19 
GeneralRe: CListCtrl and lParam Pin
Dan McCormick16-Feb-06 6:18
Dan McCormick16-Feb-06 6:18 
QuestionCan STL vector cross DLL boundaries? Pin
unjedai14-Feb-06 8:30
unjedai14-Feb-06 8:30 
AnswerRe: Can STL vector cross DLL boundaries? Pin
Michael Dunn14-Feb-06 10:14
sitebuilderMichael Dunn14-Feb-06 10:14 
AnswerRe: Can STL vector cross DLL boundaries? Pin
Jeff Thompson14-Feb-06 10:17
Jeff Thompson14-Feb-06 10:17 
AnswerRe: Can STL vector cross DLL boundaries? Pin
Stephen Hewitt14-Feb-06 11:28
Stephen Hewitt14-Feb-06 11:28 
AnswerRe: Can STL vector cross DLL boundaries? Pin
Anthony_Yio14-Feb-06 15:37
Anthony_Yio14-Feb-06 15:37 
QuestionStrange variations Pin
hint_5414-Feb-06 8:27
hint_5414-Feb-06 8:27 
AnswerRe: Strange variations Pin
David Crow14-Feb-06 9:46
David Crow14-Feb-06 9:46 
GeneralRe: Strange variations Pin
hint_5415-Feb-06 6:22
hint_5415-Feb-06 6:22 
AnswerRe: Strange variations Pin
Stephen Hewitt14-Feb-06 11:34
Stephen Hewitt14-Feb-06 11:34 
AnswerRe: Strange variations Pin
Dan McCormick14-Feb-06 13:37
Dan McCormick14-Feb-06 13:37 
GeneralRe: Strange variations Pin
hint_5415-Feb-06 5:36
hint_5415-Feb-06 5:36 
NewsRe: Strange variations Pin
Dan McCormick15-Feb-06 11:10
Dan McCormick15-Feb-06 11:10 
QuestionFormat of data in writing file , on different Windows Pin
zahid_ash14-Feb-06 8:14
zahid_ash14-Feb-06 8:14 
AnswerRe: Format of data in writing file , on different Windows Pin
Red Stateler14-Feb-06 8:57
Red Stateler14-Feb-06 8:57 
QuestionSerial port interfacing Pin
srija14-Feb-06 7:02
srija14-Feb-06 7:02 
AnswerRe: Serial port interfacing Pin
Milton Karimbekallil14-Feb-06 8:16
Milton Karimbekallil14-Feb-06 8:16 
AnswerRe: Serial port interfacing Pin
Dan McCormick14-Feb-06 8:29
Dan McCormick14-Feb-06 8:29 
QuestionWinsock2.h and "unresolved external error" Pin
Mutty14-Feb-06 6:53
Mutty14-Feb-06 6:53 
AnswerRe: Winsock2.h and "unresolved external error" Pin
James R. Twine14-Feb-06 6:57
James R. Twine14-Feb-06 6:57 
GeneralRe: Winsock2.h and "unresolved external error" Pin
Mutty14-Feb-06 7:23
Mutty14-Feb-06 7:23 
GeneralRe: Winsock2.h and "unresolved external error" Pin
ThatsAlok14-Feb-06 22:22
ThatsAlok14-Feb-06 22:22 
AnswerRe: Winsock2.h and "unresolved external error" Pin
David Crow14-Feb-06 7:00
David Crow14-Feb-06 7:00 
Questioninlining problem Pin
hint_5414-Feb-06 6:21
hint_5414-Feb-06 6:21 
I've tryed the following code.

// somefile.h
class MyClass {
public:
inline void MemberFunction( void );
};

// somefile.cpp
#include "somefile.h"
void MyClass::MemberFunction( void ) // Also tryed "inline void MyClass::Memb..."
{
// Blá, blá, blá...
}

// Launcher.cpp
#include "somefile.h"
int main( void )
{
MyClass Example;
Example.MemberFunction();
return 0;
}

#ENDCODE

But I get

launcher.obj : error LNK2001: unresolved external symbol "public: void __thiscall CCPU::SomeFunction(void)" (?SomeFunction@CCPU@@QAEXXZ)
Debug/LOAC.exe : fatal error LNK1120: 1 unresolved externals

Any suggestions?

regards

hint_54

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.