reshuffling of dlls
[reactos.git] / reactos / gdiplus / gdiplus / dllmain.c
1 #include <windows.h>
2 #include <gdiplusprivate.h>
3 #include <debug.h>
4
5 #ifdef DBG
6
7 /* See debug.h for debug/trace constants */
8 DWORD DebugTraceLevel = MIN_TRACE;
9
10 #endif /* DBG */
11
12 /*
13 * @unimplemented
14 */
15 Status WINAPI
16 GdiplusStartup(ULONG_PTR *token,
17 const GdiplusStartupInput *input,
18 GdiplusStartupOutput *output)
19 {
20 return NotImplemented;
21 }
22
23 /*
24 * @unimplemented
25 */
26 VOID WINAPI
27 GdiplusShutdown(ULONG_PTR token)
28 {
29 }
30
31 INT STDCALL
32 DllMain(
33 PVOID hinstDll,
34 ULONG dwReason,
35 PVOID reserved)
36 {
37 switch (dwReason)
38 {
39 case DLL_PROCESS_ATTACH:
40 break;
41 case DLL_THREAD_ATTACH:
42 break;
43 case DLL_THREAD_DETACH:
44 break;
45 case DLL_PROCESS_DETACH:
46 break;
47 }
48
49 return 1;
50 }