mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
28 lines
392 B
C
28 lines
392 B
C
![]() |
|
||
|
#include <windef.h>
|
||
|
#include <winbase.h>
|
||
|
|
||
|
DWORD WINAPI GetVersion()
|
||
|
{
|
||
|
return TESTVER;
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|