mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
1dc1c3f7ef
- Fix and enable tests for redirection support in LoadLibraryExW. - Add tests for the default activation context that is active for every process. svn path=/trunk/; revision=73568
28 lines
386 B
C
28 lines
386 B
C
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
|
|
DWORD WINAPI GetVersion()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
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;
|
|
}
|