Author: fireball
Date: Tue Jul 22 06:24:56 2008
New Revision: 34679
URL:
http://svn.reactos.org/svn/reactos?rev=34679&view=rev
Log:
- PFN_DrvMovePanning type is not part of DDK/WDK's winddi.h, so it shouldn't have
been added to ReactOS DDK as well. Move it to ntgdityp.h.
Modified:
trunk/reactos/include/ddk/winddi.h
trunk/reactos/include/reactos/win32k/ntgdityp.h
Modified: trunk/reactos/include/ddk/winddi.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/winddi.h?rev=3…
==============================================================================
--- trunk/reactos/include/ddk/winddi.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/winddi.h [iso-8859-1] Tue Jul 22 06:24:56 2008
@@ -3818,12 +3818,6 @@
IN POINTL *pptlBrushOrg,
IN MIX mix);
-typedef VOID
-(APIENTRY *PFN_DrvMovePanning)(
- IN LONG x,
- IN LONG y,
- IN FLONG fl);
-
typedef BOOL
(APIENTRY *PFN_DrvPlgBlt)(
IN SURFOBJ *psoTrg,
Modified: trunk/reactos/include/reactos/win32k/ntgdityp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/win32k/ntg…
==============================================================================
--- trunk/reactos/include/reactos/win32k/ntgdityp.h [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/win32k/ntgdityp.h [iso-8859-1] Tue Jul 22 06:24:56 2008
@@ -568,7 +568,13 @@
typedef VOID (NTAPI *PGD_SYNCHRONIZESURFACE)(SURFOBJ*, RECTL *, FLONG);
//
-// Most of these are definded in ddk/winddi.h
+// Declarations missing in ddk/winddi.h
+//
+typedef VOID (APIENTRY *PFN_DrvMovePanning)(LONG, LONG, FLONG);
+
+
+//
+// Most of these are defined in ddk/winddi.h
//
typedef struct _DRIVER_FUNCTIONS
{