3 static HINSTANCE instance
;
5 BOOL WINAPI
DllMain(HINSTANCE instance_new
, DWORD reason
, LPVOID reserved
)
9 case DLL_PROCESS_ATTACH
:
10 instance
= instance_new
;
17 void WINAPI
get_path(char *buffer
, int buffer_size
)
19 GetModuleFileNameA(instance
, buffer
, buffer_size
);