- Added debugging.
[wine/testsucceed.git] / dlls / gdi / gdi_main.c
blob0fac9f50ecd1787b514df5d5dafac91d1e66e650
1 /*
2 * GDI initialization code
3 */
5 #include <string.h>
6 #include "windef.h"
7 #include "wingdi.h"
8 #include "wine/winbase16.h"
10 #include "gdi.h"
11 #include "win16drv.h"
12 #include "winbase.h"
14 /***********************************************************************
15 * GDI initialisation routine
17 BOOL WINAPI MAIN_GdiInit(HINSTANCE hinstDLL, DWORD reason, LPVOID lpvReserved)
19 if (reason != DLL_PROCESS_ATTACH) return TRUE;
20 return GDI_Init();
24 /***********************************************************************
25 * Copy (GDI.250)
27 void WINAPI Copy16( LPVOID src, LPVOID dst, WORD size )
29 memcpy( dst, src, size );