mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[WIN32SS]
* Add header guards to the main headers. CORE-7716 svn path=/trunk/; revision=62023
This commit is contained in:
@@ -22,7 +22,6 @@
|
||||
|
||||
#include "framebuf.h"
|
||||
|
||||
|
||||
DWORD CALLBACK
|
||||
DdCanCreateSurface(LPDDHAL_CANCREATESURFACEDATA pccsd)
|
||||
{
|
||||
@@ -113,4 +112,3 @@ DdCreateSurface(PDD_CREATESURFACEDATA pcsd)
|
||||
pcsd->ddRVal = DD_OK;
|
||||
return DDHAL_DRIVER_HANDLED;
|
||||
}
|
||||
|
||||
|
||||
@@ -257,4 +257,3 @@ DrvGetDirectDrawInfo(
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
* PROGRAMMERS: Copyright (c) 1992-1995 Microsoft Corporation
|
||||
* ReactOS Portable Systems Group
|
||||
*/
|
||||
|
||||
#include "driver.h"
|
||||
|
||||
#define SYSTM_LOGFONT {16,7,0,0,700,0,0,0,ANSI_CHARSET,OUT_DEFAULT_PRECIS,CLIP_DEFAULT_PRECIS,DEFAULT_QUALITY,VARIABLE_PITCH | FF_DONTCARE,L"System"}
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#ifndef _VGADDI_PCH_
|
||||
#define _VGADDI_PCH_
|
||||
|
||||
#define _WINBASE_
|
||||
#define _WINDOWS_H
|
||||
#include <stdarg.h>
|
||||
@@ -281,3 +284,5 @@ vgaReadScan(int x, int y, int w, void *b);
|
||||
|
||||
VOID FASTCALL
|
||||
vgaWriteScan(int x, int y, int w, void *b);
|
||||
|
||||
#endif /* _VGADDI_PCH_ */
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
* PROGRAMMER: Timo Kreuzer ([email protected])
|
||||
*/
|
||||
|
||||
#ifndef _BMFD_PCH_
|
||||
#define _BMFD_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <wingdi.h>
|
||||
@@ -364,3 +367,4 @@ APIENTRY
|
||||
BmfdDestroyFont(
|
||||
IN FONTOBJ *pfo);
|
||||
|
||||
#endif /* _BMFD_PCH_ */
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
* PROGRAMMER: Timo Kreuzer ([email protected])
|
||||
*/
|
||||
|
||||
#ifndef _FTFD_PCH_
|
||||
#define _FTFD_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <windef.h>
|
||||
#include <wingdi.h>
|
||||
@@ -148,3 +151,4 @@ FtfdQueryFontData(
|
||||
PVOID pv,
|
||||
ULONG cjSize);
|
||||
|
||||
#endif /* _FTFD_PCH_ */
|
||||
|
||||
@@ -18,6 +18,9 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#ifndef _VBEMP_PCH_
|
||||
#define _VBEMP_PCH_
|
||||
|
||||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#include <ntdef.h>
|
||||
@@ -300,3 +303,5 @@ VBESetColorRegisters(
|
||||
PVBE_DEVICE_EXTENSION DeviceExtension,
|
||||
PVIDEO_CLUT ColorLookUpTable,
|
||||
PSTATUS_BLOCK StatusBlock);
|
||||
|
||||
#endif /* _VBEMP_PCH_ */
|
||||
|
||||
@@ -7,6 +7,9 @@
|
||||
* ReactOS Portable Systems Group
|
||||
*/
|
||||
|
||||
#ifndef _VGA_NEW_PCH_
|
||||
#define _VGA_NEW_PCH_
|
||||
|
||||
#include <ntdef.h>
|
||||
#include <dderror.h>
|
||||
#include <miniport.h>
|
||||
@@ -446,3 +449,5 @@ extern VIDEO_ACCESS_RANGE VgaAccessRange[];
|
||||
#define VESA_MAGIC ('V' + ('E' << 8) + ('S' << 16) + ('A' << 24))
|
||||
|
||||
#include "vbe.h"
|
||||
|
||||
#endif /* _VGA_NEW_PCH_ */
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||
* PROGRAMMER: Alex Ionescu ([email protected])
|
||||
*/
|
||||
|
||||
#ifndef _GDI32_PCH_
|
||||
#define _GDI32_PCH_
|
||||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
/* Definitions */
|
||||
@@ -43,4 +46,4 @@
|
||||
/* Deprecated NTGDI calls which shouldn't exist */
|
||||
#include <ntgdibad.h>
|
||||
|
||||
/* EOF */
|
||||
#endif /* _GDI32_PCH_ */
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#ifndef _DXG_PCH_
|
||||
#define _DXG_PCH_
|
||||
|
||||
#include <ntifs.h>
|
||||
|
||||
/* Win32 Headers */
|
||||
@@ -102,3 +105,5 @@ PVOID FASTCALL DdHmgLock(HANDLE DdHandle, UCHAR ObjectType, BOOLEAN LockOwned);
|
||||
#define drvDxEngUnlockDC gpEngFuncs[DXENG_INDEX_DxEngUnlockDC]
|
||||
#define drvDxEngUnlockHdev gpEngFuncs[DXENG_INDEX_DxEngUnlockHdev]
|
||||
#define drvDxEngLockHdev gpEngFuncs[DXENG_INDEX_DxEngLockHdev]
|
||||
|
||||
#endif /* _DXG_PCH_ */
|
||||
|
||||
@@ -6,6 +6,9 @@
|
||||
* PROGRAMMER: Alex Ionescu ([email protected])
|
||||
*/
|
||||
|
||||
#ifndef _USER32_PCH_
|
||||
#define _USER32_PCH_
|
||||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
||||
/* C Headers */
|
||||
@@ -54,3 +57,5 @@
|
||||
|
||||
/* User macros */
|
||||
#include "user_x.h"
|
||||
|
||||
#endif /* _USER32_PCH_ */
|
||||
|
||||
Reference in New Issue
Block a user