Added import of ntdll.
[wine] / dlls / gdi / gdi_main.c
1 /*
2  * GDI initialization code
3  */
4
5 #include "windef.h"
6 #include "wingdi.h"
7 #include "wine/winbase16.h"
8
9 #include "gdi.h"
10 #include "global.h"
11 #include "tweak.h"
12 #include "win16drv.h"
13 #include "winbase.h"
14
15 /***********************************************************************
16  *           GDI initialisation routine
17  */
18 BOOL WINAPI MAIN_GdiInit(HINSTANCE hinstDLL, DWORD reason, LPVOID lpvReserved)
19 {
20     if (reason != DLL_PROCESS_ATTACH) return TRUE;
21
22     if (!TWEAK_Init()) return FALSE;
23
24     /* GDI initialisation */
25     if(!GDI_Init()) return FALSE;
26
27     /* Create the Win16 printer driver */
28     if (!WIN16DRV_Init()) return FALSE;
29
30     /* PSDRV initialization */
31     if (!LoadLibraryA( "wineps" )) return FALSE;
32
33     return TRUE;
34 }
35
36
37 /***********************************************************************
38  *           Copy   (GDI.250)
39  */
40 void WINAPI Copy16( LPVOID src, LPVOID dst, WORD size )
41 {
42     memcpy( dst, src, size );
43 }