mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
27 lines
392 B
C
27 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;
|
|
}
|