mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Added W32kInitialize service (orig. name NtGdiInit)
svn path=/trunk/; revision=999
This commit is contained in:
@@ -173,6 +173,7 @@ W32kGetWinMetaFileBits 5
|
||||
W32kGetWindowExtEx 2
|
||||
W32kGetWindowOrgEx 2
|
||||
W32kGetWorldTransform 2
|
||||
W32kInitialize 0
|
||||
W32kIntersectClipRect 5
|
||||
W32kInvertRgn 2
|
||||
W32kLPtoDP 3
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
#ifndef __WIN32K_MISC_H
|
||||
#define __WIN32K_MISC_H
|
||||
|
||||
BOOLEAN
|
||||
STDCALL
|
||||
W32kInitialize (VOID);
|
||||
|
||||
#endif /* __WIN32K_MISC_H */
|
||||
@@ -0,0 +1 @@
|
||||
svctab.c
|
||||
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user