mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
27 lines
386 B
C
27 lines
386 B
C
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
DWORD WINAPI GetVersion()
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
BOOL
|
|
WINAPI
|
|
DllMain(HINSTANCE hinstDll,
|
|
DWORD dwReason,
|
|
LPVOID reserved)
|
|
{
|
|
switch (dwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
DisableThreadLibraryCalls(hinstDll);
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|