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?

link|improve this question
Perhaps I'm missing something incredibly simple here, but it looks to me like you have a naming problem. Your exported function has the name wWinMain and the startup code is looking for a symbol called WinMain. Another way to solve the problem is to create a standard WinMain function in your main program that just calls the wWinMain function that's in the DLL. – Jim Mischel Dec 27 '10 at 17:32
why are you putting wWinMain in a DLL? it really makes no sense. If it's for the DLL to use, you shouldn't be calling it wWinMain or exporting it. If it's for the caller, ... the caller would already be too late to call WinMain, and if you want them to call this function as some kind of drop-in entrypoint, you should call it MyMain, not something that's already reserved by standard windows development. – tenfour Dec 29 '10 at 6:20
feedback

3 Answers

This is not possible as-is, the linker can only set the entrypoint for an EXE to a function that's inside the EXE. Rename the wWinMain() in the DLL to something else. Write a wWinMain() in a source code file that gets linked into your EXE, simply call the DLL's exported function.

link|improve this answer
feedback

Should you be using WinMain in a DLL? Should it not be DllMain?

link|improve this answer
feedback

If you want to call the WinMain of the dll, you need to replace the CRTWinMainStartup function(_tmainCRTStartup in your liked CRT lib), and make it call your exported WinMain, this stops the linker looking for a local WinMain and still keeps correct flow of the program(the source for the CRT startups should be in the crt source of any compiler)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.