Changeset 6841 for branches/splittup/src/win32k/pe2lx/pe2lx.cpp
- Timestamp:
- Sep 27, 2001, 5:08:35 AM (24 years ago)
- File:
-
- 1 edited
-
branches/splittup/src/win32k/pe2lx/pe2lx.cpp (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/splittup/src/win32k/pe2lx/pe2lx.cpp
r6493 r6841 1 /* $Id: pe2lx.cpp,v 1.32 2001-08-08 17:24:45bird Exp $1 /* $Id: pe2lx.cpp,v 1.32.2.1 2001-09-27 03:08:34 bird Exp $ 2 2 * 3 3 * Pe2Lx class implementation. Ring 0 and Ring 3 … … 19 19 #define INCL_OS2KRNL_LDR /* Loader definitions. */ 20 20 #define INCL_OS2KRNL_PTDA /* PTDA definitions. */ 21 #define INCL_KKL_LOG 22 #define INCL_KKL_AVL 23 #define INCL_KKL_HEAP 21 24 #ifdef RING0 22 25 #define INCL_NOAPI /* RING0: No apis. */ 26 #define Yield() D32Hlp_Yield() 23 27 #else /*RING3*/ 24 28 #define INCL_DOSPROCESS /* RING3: DosSleep. */ 25 29 #define INCL_OS2KRNL_LDR_NOAPIS /* No apis */ 30 #define Yield() DosSleep(0) 26 31 #endif 27 32 … … 83 88 #include <newexe.h> /* OS/2 NE structs and definitions. */ 84 89 #include <exe386.h> /* OS/2 LX structs and definitions. */ 90 #include <OS2Krnl.h> /* kernel structs. (SFN) */ 91 #include <kKrnlLib.h> 85 92 86 93 #include "devSegDf.h" /* Win32k segment definitions. */ 87 88 #include "malloc.h" /* win32k malloc (resident). Not C library! */89 #include "smalloc.h" /* win32k swappable heap. */90 #include "rmalloc.h" /* win32k resident heap. */91 94 92 95 #include <string.h> /* C library string.h. */ … … 95 98 #include <stdarg.h> /* C library stdarg.h. */ 96 99 97 #include "vprintf.h" /* win32k printf and vprintf. Not C library! */98 100 #include "dev32.h" /* 32-Bit part of the device driver. (SSToDS) */ 99 #include "OS2Krnl.h" /* kernel structs. (SFN) */100 101 #ifdef RING0 101 #include "avl.h" /* AVL tree. (ldr.h need it) */102 102 #include "ldr.h" /* ldr helpers. (ldrGetExePath) */ 103 103 #include "env.h" /* Environment helpers. */ … … 108 108 #include "pe2lx.h" /* Pe2Lx class definitions, ++. */ 109 109 #include <versionos2.h> /* Pe2Lx version. */ 110 #include "yield.h" /* Yield CPU. */111 110 #include "options.h" /* Win32k options. */ 112 111 … … 1791 1790 1792 1791 case FINDDLL_LIBPATH: 1793 pszPath = *pLdrLibPath;1792 pszPath = LdrLibPath; 1794 1793 break; 1795 1794
Note:
See TracChangeset
for help on using the changeset viewer.
