Changeset 2904 for trunk/src/win32k/lib/libDosAllocMemEx.c
- Timestamp:
- Feb 26, 2000, 6:48:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/lib/libDosAllocMemEx.c
r2823 r2904 1 /* $Id: libDosAllocMemEx.c,v 1. 1 2000-02-18 19:27:31bird Exp $1 /* $Id: libDosAllocMemEx.c,v 1.2 2000-02-26 17:48:22 bird Exp $ 2 2 * 3 3 * DosAllocMemEx - Extened Edition of DosAllocMem. … … 14 14 * Header Files * 15 15 *******************************************************************************/ 16 #define INCL_DOSERROR 16 #define INCL_DOSERRORS 17 17 #define INCL_DOSFILEMGR 18 18 #define INCL_DOSDEVICES … … 30 30 * Global Variables * 31 31 *******************************************************************************/ 32 static BOOLfInited = FALSE;33 HFILEhWin32k = NULLHANDLE;32 extern BOOL fInited = FALSE; 33 extern HFILE hWin32k = NULLHANDLE; 34 34 35 35 … … 43 43 { 44 44 K32ALLOCMEMEX Param; 45 ULONG cbParam = sizeof(Param); 46 ULONG cbData = 0UL; 45 47 Param.pv = *ppv; 46 48 Param.cb = cb; 47 49 Param.flFlags = flag; 48 50 Param.rc = 0; 49 Param.ulCS = ;50 Param.ulEIP = ;51 Param.ulCS = -1; 52 Param.ulEIP = -1; 51 53 52 param.pRpInitIn = pRpIn;53 54 rc = DosDevIOCtl(hWin32k, 54 55 IOCTL_W32K_K32,
Note:
See TracChangeset
for help on using the changeset viewer.