I am trying to hide the WinMain function inside a DLL in order to avoid typing again much of the code over and over again.
I exported wWinMain from the DLL by declaring it as
extern "C" int WINAPI wWinMain( ... )
{
// repetitive code here
}
and used the linker option /EXPORT:wWinMain, but when I try to use the import library in another project I get the error
LIBCMTD.lib(wincrt0.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function __tmainCRTStartup
Remark I do want to use the GUI interface and I know this is common error when you define a main instead of a WinMain function. Also, I enabled the UNICODE support in both projects. What should I do?
wWinMainand the startup code is looking for a symbol calledWinMain. Another way to solve the problem is to create a standardWinMainfunction in your main program that just calls thewWinMainfunction that's in the DLL. – Jim Mischel Dec 27 '10 at 17:32MyMain, not something that's already reserved by standard windows development. – tenfour Dec 29 '10 at 6:20