Changeset 2914 for trunk/src/win32k/lib/libDosAllocMemEx.c
- Timestamp:
- Feb 26, 2000, 8:59:55 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/lib/libDosAllocMemEx.c
r2904 r2914 1 /* $Id: libDosAllocMemEx.c,v 1. 2 2000-02-26 17:48:22bird Exp $1 /* $Id: libDosAllocMemEx.c,v 1.3 2000-02-26 19:59:55 bird Exp $ 2 2 * 3 3 * DosAllocMemEx - Extened Edition of DosAllocMem. … … 24 24 *******************************************************************************/ 25 25 #include <os2.h> 26 #include <win32k.h>26 #include "win32k.h" 27 27 28 28 … … 30 30 * Global Variables * 31 31 *******************************************************************************/ 32 extern BOOL fInited = FALSE;33 extern HFILE hWin32k = NULLHANDLE;32 extern BOOL fInited; 33 extern HFILE hWin32k; 34 34 35 35 … … 49 49 Param.flFlags = flag; 50 50 Param.rc = 0; 51 Param.ulCS = -1;52 Param.ulEIP = -1;51 Param.ulCS = libHelperGetCS(); 52 Param.ulEIP = *(PULONG)((int)(&ppv) - 4); 53 53 54 54 rc = DosDevIOCtl(hWin32k,
Note:
See TracChangeset
for help on using the changeset viewer.