Click here to Skip to main content
15,891,248 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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
AnswerRe: inlining problem Pin
Chris Losinger14-Feb-06 6:33
professionalChris Losinger14-Feb-06 6:33 
GeneralRe: inlining problem Pin
hint_5414-Feb-06 6:36
hint_5414-Feb-06 6:36 
AnswerRe: inlining problem Pin
James R. Twine14-Feb-06 6:36
James R. Twine14-Feb-06 6:36 
GeneralRe: inlining problem Pin
hint_5414-Feb-06 6:38
hint_5414-Feb-06 6:38 
QuestionRe: inlining problem Pin
James R. Twine14-Feb-06 6:40
James R. Twine14-Feb-06 6:40 
AnswerRe: inlining problem Pin
hint_5414-Feb-06 6:46
hint_5414-Feb-06 6:46 
GeneralRe: inlining problem Pin
James R. Twine14-Feb-06 7:02
James R. Twine14-Feb-06 7:02 
GeneralRe: inlining problem Pin
hint_5414-Feb-06 7:04
hint_5414-Feb-06 7:04 
AnswerRe: inlining problem Pin
David Crow14-Feb-06 6:58
David Crow14-Feb-06 6:58 
GeneralRe: inlining problem Pin
hint_5414-Feb-06 6:58
hint_5414-Feb-06 6:58 
QuestionGood Book for "advanced beginners" C++ Pin
ldsdbomber14-Feb-06 5:57
ldsdbomber14-Feb-06 5:57 
QuestionRe: Good Book for "advanced beginners" C++ Pin
David Crow14-Feb-06 6:48
David Crow14-Feb-06 6:48 
GeneralRe: Good Book for "advanced beginners" C++ Pin
Ed K14-Feb-06 7:05
Ed K14-Feb-06 7:05 
GeneralRe: Good Book for "advanced beginners" C++ Pin
David Crow14-Feb-06 7:10
David Crow14-Feb-06 7:10 
GeneralRe: Good Book for "advanced beginners" C++ Pin
ldsdbomber15-Feb-06 6:16
ldsdbomber15-Feb-06 6:16 
GeneralRe: Good Book for "advanced beginners" C++ Pin
David Crow15-Feb-06 8:41
David Crow15-Feb-06 8:41 
QuestionLNK 4089 error with SHELL32.dll /OPT:REF Pin
ldsdbomber14-Feb-06 5:48
ldsdbomber14-Feb-06 5:48 

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.