[VGA]
authorAmine Khaldi <amine.khaldi@reactos.org>
Tue, 4 Feb 2014 17:01:57 +0000 (17:01 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Tue, 4 Feb 2014 17:01:57 +0000 (17:01 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61981

reactos/win32ss/drivers/miniport/vga_new/cmdcnst.h
reactos/win32ss/drivers/miniport/vga_new/modeset.c
reactos/win32ss/drivers/miniport/vga_new/vbe.h
reactos/win32ss/drivers/miniport/vga_new/vga.c
reactos/win32ss/drivers/miniport/vga_new/vga.h

index c818b49..531fb54 100644 (file)
@@ -6,6 +6,7 @@
  * PROGRAMMERS:     Copyright (c) 1992  Microsoft Corporation
  */
 
+#pragma once
  
 //--------------------------------------------------------------------------
 //   Definition of the set/clear mode command language.
index 2d7805e..107f53e 100644 (file)
@@ -896,4 +896,3 @@ Return Value:
     VgaInterpretCmdStream(HwDeviceExtension, DisableA000Color);
 
 }
-
index 7cee0c6..0035272 100644 (file)
@@ -6,6 +6,7 @@
  * PROGRAMMERS:     ReactOS Portable Systems Group
  */
 
+#pragma once
 
 #define LOWORD(l)      ((USHORT)((ULONG_PTR)(l)))
 #define HIWORD(l)      ((USHORT)(((ULONG_PTR)(l)>>16)&0xFFFF))
index 26e5db9..8ceab4c 100644 (file)
@@ -11,6 +11,8 @@
 
 #include "vga.h"
 
+#include <devioctl.h>
+
 //---------------------------------------------------------------------------
 //
 // Function declarations
index 73e7fc8..a30baf6 100644 (file)
@@ -7,12 +7,11 @@
  *                  ReactOS Portable Systems Group
  */
 
-#include "ntdef.h"
-#include "dderror.h"
-#include "devioctl.h"
-#include "miniport.h"
-#include "ntddvdeo.h"
-#include "video.h"
+#include <ntdef.h>
+#include <dderror.h>
+#include <miniport.h>
+#include <video.h>
+
 #include "cmdcnst.h"
 
 //