mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:32:59 +00:00
Fix typo spoted by Stefan100.
svn path=/trunk/; revision=33459
This commit is contained in:
parent
da0b3935d7
commit
e051367b2f
1 changed files with 2 additions and 2 deletions
|
@ -271,7 +271,7 @@ typedef struct _DEVCAPS // Very similar to GDIINFO
|
||||||
} DEVCAPS, *PDEVCAPS;
|
} DEVCAPS, *PDEVCAPS;
|
||||||
|
|
||||||
/* Gdi Handle Cache Types and Structures */
|
/* Gdi Handle Cache Types and Structures */
|
||||||
#define GDI_CACHED_HADNLE_TYPES 4
|
#define GDI_CACHED_HANDLE_TYPES 4
|
||||||
#define CACHE_BRUSH_ENTRIES 10
|
#define CACHE_BRUSH_ENTRIES 10
|
||||||
#define CACHE_PEN_ENTRIES 8
|
#define CACHE_PEN_ENTRIES 8
|
||||||
#define CACHE_REGION_ENTRIES 8
|
#define CACHE_REGION_ENTRIES 8
|
||||||
|
@ -288,7 +288,7 @@ typedef enum _HANDLECACHETYPE
|
||||||
typedef struct _GDIHANDLECACHE
|
typedef struct _GDIHANDLECACHE
|
||||||
{
|
{
|
||||||
ULONG ulLock;
|
ULONG ulLock;
|
||||||
ULONG ulNumHandles[GDI_CACHED_HADNLE_TYPES];
|
ULONG ulNumHandles[GDI_CACHED_HANDLE_TYPES];
|
||||||
HANDLE Handle[CACHE_BRUSH_ENTRIES+CACHE_PEN_ENTRIES+CACHE_REGION_ENTRIES+CACHE_LFONT_ENTRIES];
|
HANDLE Handle[CACHE_BRUSH_ENTRIES+CACHE_PEN_ENTRIES+CACHE_REGION_ENTRIES+CACHE_LFONT_ENTRIES];
|
||||||
} GDIHANDLECACHE, *PGDIHANDLECACHE;
|
} GDIHANDLECACHE, *PGDIHANDLECACHE;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue