- 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.

svn path=/trunk/; revision=34679
This commit is contained in:
Aleksey Bragin 2008-07-22 11:24:56 +00:00
parent c18f0a3fb9
commit b10a7debe3
2 changed files with 7 additions and 7 deletions

View file

@ -3818,12 +3818,6 @@ typedef BOOL
IN POINTL *pptlBrushOrg, IN POINTL *pptlBrushOrg,
IN MIX mix); IN MIX mix);
typedef VOID
(APIENTRY *PFN_DrvMovePanning)(
IN LONG x,
IN LONG y,
IN FLONG fl);
typedef BOOL typedef BOOL
(APIENTRY *PFN_DrvPlgBlt)( (APIENTRY *PFN_DrvPlgBlt)(
IN SURFOBJ *psoTrg, IN SURFOBJ *psoTrg,

View file

@ -568,7 +568,13 @@ typedef BOOL (NTAPI *PGD_GRADIENTFILL)(SURFOBJ*, CLIPOBJ*, XLATEOBJ*, TRIVERTEX*
typedef VOID (NTAPI *PGD_SYNCHRONIZESURFACE)(SURFOBJ*, RECTL *, FLONG); 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 typedef struct _DRIVER_FUNCTIONS
{ {