Author: akhaldi Date: Sun Feb 9 22:07:47 2014 New Revision: 62084
URL: http://svn.reactos.org/svn/reactos?rev=62084&view=rev Log: [FRAMEBUF_NEW] * Add header guards to the main header. * Improve header inclusions. CORE-7716
Modified: trunk/reactos/win32ss/drivers/displays/framebuf_new/driver.h
Modified: trunk/reactos/win32ss/drivers/displays/framebuf_new/driver.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/drivers/displays/fr... ============================================================================== --- trunk/reactos/win32ss/drivers/displays/framebuf_new/driver.h [iso-8859-1] (original) +++ trunk/reactos/win32ss/drivers/displays/framebuf_new/driver.h [iso-8859-1] Sun Feb 9 22:07:47 2014 @@ -6,16 +6,17 @@ * PROGRAMMERS: Copyright (c) 1992-1995 Microsoft Corporation * ReactOS Portable Systems Group */ - + +#ifndef _FRAMEBUF_NEW_PCH_ +#define _FRAMEBUF_NEW_PCH_ + //#define DBG 1 -#include "stddef.h" #include <stdarg.h> -#include <string.h> -#include "windef.h" -#include "wingdi.h" -#include "winddi.h" -#include "devioctl.h" -#include "ntddvdeo.h" +#include <windef.h> +#include <wingdi.h> +#include <winddi.h> +#include <devioctl.h> +#include <ntddvdeo.h> #include "debug.h"
typedef struct _PDEV @@ -74,3 +75,5 @@ #define ALLOC_TAG 'bfDD' // Four byte tag (characters in // reverse order) used for memory // allocations + +#endif /* _FRAMEBUF_NEW_PCH_ */