ReactOS 0.4.17-dev-304-g69474b3
DllMain.c
Go to the documentation of this file.
1
2#include <windows.h>
3
5
6// Used by wine/locale.c
8
9static
10void
12{
14}
15
17{
18 switch (fdwReason)
19 {
22 //init_locale(hinstDLL);
23 break;
24
26 break;
27
29 break;
30
32 break;
33 }
34
35 return TRUE;
36}
static DWORD const fdwReason
#define TRUE
Definition: types.h:120
#define DLL_THREAD_DETACH
Definition: compat.h:133
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
#define MAX_PATH
Definition: compat.h:34
#define DLL_THREAD_ATTACH
Definition: compat.h:132
UINT WINAPI GetSystemDirectoryA(OUT LPSTR lpBuffer, IN UINT uSize)
Definition: path.c:2202
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
static IN DWORD IN LPVOID lpvReserved
BOOL WINAPI DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
Definition: DllMain.c:9
char system_dir[MAX_PATH]
Definition: DllMain.c:7
static void InitSystemDir(void)
Definition: DllMain.c:11
void init_locale(HMODULE module)
Definition: locale.c:1913
#define WINAPI
Definition: msvc.h:6