José Armando Fuxá Núñez

3
reputation
3

include < Windows.h >

BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { if (ul_reason_for_call == DLL_PROCESS_ATTACH) MessageBox(0, L"Hello World!", L"Hello", MB_ICONINFORMATION);

return TRUE;

}