views:

32

answers:

2

I am getting an error while compiling in vc++ vs2005.

error LNK2019: unresolved external symbol __imp__MessageBoxA@16
referenced in function "void __cdecl MsgBox(char const *,char const *,...)"
(?MsgBox@@YAXPBD0ZZ)
A: 

i think their is conflict between nsvcrt and mfc80u.lib

vijay.j
If you want to add to your question then edit it - do NOT post additions as answers!
anon
A: 

There are a few causes of linker errors:

  • Missing references
  • If you're using external headers or source files ensure they are all referenced

Could you post a code snippet of the area in question?

Jamie Keeling