본문 바로가기

Windows/MFC

error C2731: 'DllMain'

[code]
BOOL APIENTRY DllMain( HMODULE hModule,
                     DWORD ul_reason_for_call,
                     LPVOID lpReserved)
{
    return TRUE;
}
[/code]


fixed code
[code]
BOOL APIENTRY DllMain( HANDLE hModule,
                     DWORD ul_reason_for_call,
                     LPVOID lpReserved)
{
    return TRUE;
}
[/code]