winmain to dll

Started by
0 comments, last by grouby 20 years, 2 months ago
hi, i have an opengl non-MFC project. I try to transform it into a dll. i have created an export function (declared with cdecl(dllexport) )that call my standard WinMain function. But when i load the dll from my test exe, it does not reach the exported function but run directly the winmain and i have crash when the process detach the dll. Must i transform the winmain function or declare the exported function in an other way (i have tried many...) ??? Thanks all ;-)
Advertisement
There can be only one winmain in a project. If you have a dll that''s loaded from an exe, it can''t have one.

Cheers
Chris
CheersChris

This topic is closed to new replies.

Advertisement