From 30eb26e6fbb2650070211575932ea67d6ecebf1c Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Fri, 28 Dec 2007 13:56:03 +0000 Subject: [PATCH] Add #define VIDMEM_* * to make some older drv code happy svn path=/trunk/; revision=31472 --- reactos/include/ddk/ddrawint.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/reactos/include/ddk/ddrawint.h b/reactos/include/ddk/ddrawint.h index 17f2a8779c6..0d6a8670ec8 100644 --- a/reactos/include/ddk/ddrawint.h +++ b/reactos/include/ddk/ddrawint.h @@ -1451,6 +1451,16 @@ typedef struct DD_KERNELCALLBACKS #define DDRAWI_VPORTGETCOLOR 0x0001 #define DDRAWI_VPORTSETCOLOR 0x0002 +#ifndef __DDRAWI_INCLUDED__ +#define VIDMEM_ISLINEAR 0x00000001 +#define VIDMEM_ISRECTANGULAR 0x00000002 +#define VIDMEM_ISHEAP 0x00000004 +#define VIDMEM_ISNONLOCAL 0x00000008 +#define VIDMEM_ISWC 0x00000010 +#define VIDMEM_ISDISABLED 0x00000020 +#endif + + #ifdef __cplusplus } /* extern "C" */ #endif