mirror of
https://github.com/LegacyUpdate/LegacyUpdate.git
synced 2025-01-22 14:12:07 -05:00
11 lines
216 B
C
11 lines
216 B
C
|
#include <windows.h>
|
||
|
#include <nsis/pluginapi.h>
|
||
|
|
||
|
HMODULE g_hInstance;
|
||
|
HWND g_hwndParent;
|
||
|
|
||
|
EXTERN_C BOOL WINAPI DllMain(HMODULE hInstance, UINT iReason, LPVOID lpReserved) {
|
||
|
g_hInstance = hInstance;
|
||
|
return TRUE;
|
||
|
}
|