Changeset 436 for Whitix/branches/hybrid/include
- Timestamp:
- 05/06/08 15:51:54 (7 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/hybrid/include/module.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/include/module.h
r427 r436 8 8 9 9 #include <elf.h> 10 #include <llist.h> 10 11 11 12 struct Module 12 13 { 14 char* name; 15 struct ListHead next; 16 17 /* ELF specific information. */ 13 18 DWORD loadAddr; 14 19 DWORD textAddr; 15 20 16 /* ELF specific information. */17 21 struct ElfSectionHeader* sectionHeaders; 18 22 … … 22 26 int symTableSize; 23 27 }; 28 29 #endif 24 30 25 31 struct KernelSymbol … … 41 47 42 48 #endif 43 44 #endif
