Changeset 2799 for trunk/src/win32k/include/win32k.h
- Timestamp:
- Feb 16, 2000, 12:39:20 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/include/win32k.h
r2796 r2799 1 /* $Id: win32k.h,v 1. 1 2000-02-15 16:26:06bird Exp $1 /* $Id: win32k.h,v 1.2 2000-02-15 23:39:19 bird Exp $ 2 2 * 3 3 * Top level make file for the Win32k library. … … 24 24 * K32 category - these are the functions found in the k32 directory. 25 25 */ 26 #define K32_ DOSALLOCMEMEX0x0126 #define K32_ALLOCMEMEX 0x01 27 27 28 28 … … 33 33 34 34 35 /******************************************************************************* 36 * Structures and Typedefs * 37 *******************************************************************************/ 38 /* 39 * K32 category parameter structs 40 */ 41 typedef struct _k32AllocMemEx 42 { 43 PVOID pv; /* Pointer to allocated memory block */ 44 /* On input this holds the suggested */ 45 /* location of the block. */ 46 ULONG cb; /* Blocksize (bytes) */ 47 ULONG flFlags; /* Flags (equal to DosAllocMem flags) */ 48 ULONG ulCS; /* Call CS */ 49 ULONG ulEIP; /* Call EIP */ 50 ULONG rc; /* Return code. */ 51 } K32ALLOCMEMEX, *PK32ALLOCMEMEX; 52 53 54 35 55 36 56 #ifdef INCL_WIN32K_LIB … … 38 58 * External Functions * 39 59 *******************************************************************************/ 40 APIRET APIENTRY DosAllocMemEx(PPVOID pp b, ULONG cb, ULONG flag);60 APIRET APIENTRY DosAllocMemEx(PPVOID ppv, ULONG cb, ULONG flag); 41 61 42 62 #endif
Note:
See TracChangeset
for help on using the changeset viewer.