added stubs and build spec for win32k.sys
[reactos.git] / reactos / subsys / win32k / main / dllmain.c
1 /*
2 * Entry Point for win32k.sys
3 */
4
5 #include <windows.h>
6 #include <ddk/ntddk.h>
7
8 WINBOOL STDCALL DllMain(HANDLE hInst,
9 ULONG ul_reason_for_call,
10 LPVOID lpReserved)
11 {
12 DbgPrint("win32k:DllMain(hInst %x, ul_reason_for_call %d)\n",
13 hInst,
14 ul_reason_for_call);
15
16 return TRUE;
17 }
18
19 #if 0
20 HDC GDICreateDC(LPCWSTR Driver,
21 LPCWSTR Device,
22 CONST PDEVMODE InitData)
23 {
24 /* %%% initialize device driver here on first call for display DC. */
25 }
26 #endif