|
답변이 없어 다시 질문 드립니다.
Dll exception에 대해서... 어떤식으로 처리하는지 알고 싶습
니다.
void __fastcall AppExceptions(TObject *Sender, Exception *E)
{
/*
처리 내용
*/
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fwdreason, LPVOID lpvReserved)
{
Application->OnException = AppExceptions;
return 1;
}
이런 식으로 하니깐 에러나던데요...음....^^
|