Click here to Skip to main content
15,895,011 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CArray Pin
ThatsAlok16-Feb-06 3:00
ThatsAlok16-Feb-06 3:00 
GeneralRe: CArray Pin
cuteee16-Feb-06 5:56
cuteee16-Feb-06 5:56 
GeneralRe: CArray Pin
ThatsAlok16-Feb-06 17:17
ThatsAlok16-Feb-06 17:17 
QuestionWhere is 'this'? Pin
CodyDaemon15-Feb-06 13:02
CodyDaemon15-Feb-06 13:02 
QuestionUndefined symbol when compiling for Picotux Pin
Ed.Poore15-Feb-06 11:23
Ed.Poore15-Feb-06 11:23 
AnswerRe: Undefined symbol when compiling for Picotux Pin
Stephen Hewitt15-Feb-06 11:46
Stephen Hewitt15-Feb-06 11:46 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ed.Poore15-Feb-06 11:54
Ed.Poore15-Feb-06 11:54 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Stephen Hewitt15-Feb-06 12:02
Stephen Hewitt15-Feb-06 12:02 
If you declare a function without defining it things compile ok but you get a failure at link time. e.g.

void Foo();
 
int main(int argc, char* argv[])
{
     Foo();
 
     return 0;
}


To stop the link error you need to add the definition somewhere in your project. i.e.

void Foo()
{
     // Do stuff...
}


You might be right about the name being mangled, you need the unmangled name, MSVC's linker gives both. If you can't find it you may need to guess. i.e, try "writeP13".

Steve
AnswerRe: Undefined symbol when compiling for Picotux Pin
Dan McCormick15-Feb-06 12:58
Dan McCormick15-Feb-06 12:58 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ryan Binns15-Feb-06 17:47
Ryan Binns15-Feb-06 17:47 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ed.Poore15-Feb-06 20:08
Ed.Poore15-Feb-06 20:08 
AnswerRe: Undefined symbol when compiling for Picotux Pin
Ryan Binns15-Feb-06 17:46
Ryan Binns15-Feb-06 17:46 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ed.Poore15-Feb-06 20:11
Ed.Poore15-Feb-06 20:11 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ryan Binns15-Feb-06 21:55
Ryan Binns15-Feb-06 21:55 
GeneralRe: Undefined symbol when compiling for Picotux Pin
Ed.Poore16-Feb-06 11:55
Ed.Poore16-Feb-06 11:55 
QuestionWin32 worth it? Pin
Zanathel15-Feb-06 10:58
Zanathel15-Feb-06 10:58 
AnswerRe: Win32 worth it? Pin
Michael Dunn15-Feb-06 12:03
sitebuilderMichael Dunn15-Feb-06 12:03 
GeneralRe: Win32 worth it? Pin
Ed K15-Feb-06 15:10
Ed K15-Feb-06 15:10 
GeneralRe: Win32 worth it? Pin
ThatsAlok16-Feb-06 2:46
ThatsAlok16-Feb-06 2:46 
GeneralRe: Win32 worth it? Pin
Blake Miller16-Feb-06 12:21
Blake Miller16-Feb-06 12:21 
GeneralRe: Win32 worth it? Pin
Blake Miller16-Feb-06 12:19
Blake Miller16-Feb-06 12:19 
AnswerRe: Win32 worth it? Pin
Ashutosh_shashi15-Feb-06 17:42
Ashutosh_shashi15-Feb-06 17:42 
GeneralRe: Win32 worth it? Pin
Zanathel16-Feb-06 3:25
Zanathel16-Feb-06 3:25 
QuestionDebug Assertion failed Pin
cuteee15-Feb-06 10:28
cuteee15-Feb-06 10:28 
QuestionRe: Debug Assertion failed Pin
David Crow16-Feb-06 3:29
David Crow16-Feb-06 3:29 

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.