Added W32kInitialize service (orig. name NtGdiInit)

svn path=/trunk/; revision=999
This commit is contained in:
Eric Kohl 2000-02-22 20:53:11 +00:00
parent 213e8b569c
commit f8fe1ea0b1
5 changed files with 22 additions and 1 deletions

View file

@ -173,6 +173,7 @@ W32kGetWinMetaFileBits 5
W32kGetWindowExtEx 2
W32kGetWindowOrgEx 2
W32kGetWorldTransform 2
W32kInitialize 0
W32kIntersectClipRect 5
W32kInvertRgn 2
W32kLPtoDP 3

View file

@ -11,6 +11,7 @@
#include <win32k/icm.h>
#include <win32k/line.h>
#include <win32k/metafile.h>
#include <win32k/misc.h>
#include <win32k/paint.h>
#include <win32k/path.h>
#include <win32k/pen.h>

View file

@ -0,0 +1,8 @@
#ifndef __WIN32K_MISC_H
#define __WIN32K_MISC_H
BOOLEAN
STDCALL
W32kInitialize (VOID);
#endif /* __WIN32K_MISC_H */

View file

@ -0,0 +1 @@
svctab.c

View file

@ -1,4 +1,4 @@
/* $Id: dllmain.c,v 1.12 2000/02/21 22:44:37 ekohl Exp $
/* $Id: dllmain.c,v 1.13 2000/02/22 20:53:11 ekohl Exp $
*
* Entry Point for win32k.sys
*/
@ -52,4 +52,14 @@ DllMain (
return STATUS_SUCCESS;
}
BOOLEAN
STDCALL
W32kInitialize (VOID)
{
DbgPrint("W32kInitialize called\n");
return TRUE;
}
/* EOF */