Changeset 4164 for trunk/src/win32k/k32/k32AllocMemEx.cpp
- Timestamp:
- Sep 2, 2000, 11:08:23 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/k32/k32AllocMemEx.cpp
r2823 r4164 1 /* $Id: k32AllocMemEx.cpp,v 1. 2 2000-02-18 19:27:30bird Exp $1 /* $Id: k32AllocMemEx.cpp,v 1.3 2000-09-02 21:08:05 bird Exp $ 2 2 * 3 3 * k32AllocMemEx - Equivalent to DosAllocMem, but this one … … 18 18 #define INCL_OS2KRNL_VM 19 19 20 #define NO_WIN32K_LIB_FUNCTIONS 21 20 22 #ifndef OBJ_SELMAPALL 21 23 #define OBJ_SELMAPALL 0x00000800UL … … 27 29 *******************************************************************************/ 28 30 #include <os2.h> 31 #include "devSegDf.h" /* Win32k segment definitions. */ 29 32 #include "OS2Krnl.h" 33 #include "win32k.h" 30 34 #include "k32.h" 31 35 #include "options.h" 32 36 #include "dev32.h" 33 37 #include "log.h" 38 #include "macros.h" 34 39 35 40 … … 95 100 APIRET k32AllocMemEx(PPVOID ppv, ULONG cb, ULONG flag, ULONG ulCS, ULONG ulEIP) 96 101 { 102 #if 0 97 103 APIRET rc; 98 104 ULONG flFlags2; … … 133 139 134 140 return rc; 141 #else 142 NOREF(ppv); 143 NOREF(cb); 144 NOREF(flag); 145 NOREF(ulCS); 146 NOREF(ulEIP); 147 return ERROR_NOT_SUPPORTED; 148 #endif 135 149 } 136 150
Note:
See TracChangeset
for help on using the changeset viewer.