[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]
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]
'Windows > MFC' 카테고리의 다른 글
wince 시작프로그램 등록 (0) | 2013.10.02 |
---|---|
urlencode (0) | 2013.10.02 |
error LNK2001: unresolved external symbol IID_DestNetInternet on Visual (0) | 2013.10.02 |
InternetGetConnectedState Function (0) | 2013.10.02 |
Establishing GPRS Connection on Windows CE and Windows Mobile: Sample Codes (0) | 2013.10.02 |