[VGADDI]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 10:31:27 +0000 (10:31 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 10:31:27 +0000 (10:31 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61520

reactos/win32ss/drivers/displays/vga/objects/bitblt.c
reactos/win32ss/drivers/displays/vga/objects/paint.c
reactos/win32ss/drivers/displays/vga/vgaddi.h

index ed24a2a..65356ee 100644 (file)
@@ -8,6 +8,8 @@
 
 #include <vgaddi.h>
 
+#include "bitblt.h"
+
 typedef BOOL (*PFN_VGABlt)(SURFOBJ*, SURFOBJ*, XLATEOBJ*, RECTL*, POINTL*);
 typedef BOOL  (APIENTRY *PBLTRECTFUNC)(SURFOBJ* OutputObj,
                                        SURFOBJ* InputObj,
index 815a7e8..778eeb8 100644 (file)
@@ -8,6 +8,8 @@
 
 #include <vgaddi.h>
 
+#include "brush.h"
+
 BOOL VGADDIFillSolid(SURFOBJ *Surface, RECTL Dimensions, ULONG iColor)
 {
     int x, y, x2, y2, w, h, j;
index 8988746..e43474b 100644 (file)
@@ -2,7 +2,6 @@
 #define _WINDOWS_H
 #include <stdarg.h>
 #include <windef.h>
-#include <guiddef.h>
 #include <wingdi.h>
 #include <winddi.h>
 #include <winioctl.h>
@@ -10,8 +9,6 @@
 #include <ioaccess.h>
 
 #include "vgavideo/vgavideo.h"
-#include "objects/brush.h"
-#include "objects/bitblt.h"
 
 #ifndef NDEBUG
 #define DPRINT DbgPrint