Changeset 2832 for trunk/kLdr/kLdrInternal.h
- Timestamp:
- Oct 25, 2006, 12:26:01 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrInternal.h
r2827 r2832 86 86 * Dynamic loader module. 87 87 */ 88 typedef struct KLDRDY 88 typedef struct KLDRDYMOD 89 89 { 90 90 /** The next module in the list. */ 91 PKLDRDYpNext;91 struct KLDRDYMOD *pNext; 92 92 /** The prev module in the list. */ 93 PKLDRDYpPrev;93 struct KLDRDYMOD *pPrev; 94 94 /** The module. */ 95 95 PKLDRMOD pMod; … … 110 110 /** Reserved for future use. */ 111 111 uint32_t fReserved : 29; 112 } KLDRDY ;112 } KLDRDYMOD, *PKLDRDYMOD; 113 113 114 114 115 115 /** Pointer to the head module (the executable). */ 116 extern PKLDRDY 116 extern PKLDRDYMOD kLdrModuleHead; 117 117 /** Pointer to the tail module. */ 118 extern PKLDRDY 118 extern PKLDRDYMOD kLdrModuleTail; 119 119 /** The Library search path. */ 120 120 extern char kLdrLibraryPath[4096];
Note:
See TracChangeset
for help on using the changeset viewer.