Changeset 380 for Whitix/branches/hybrid/include
- Timestamp:
- 05/01/08 15:14:08 (7 months ago)
- Files:
-
- 1 modified
-
Whitix/branches/hybrid/include/elf.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/hybrid/include/elf.h
r378 r380 92 92 }PACKED; 93 93 94 /* Section types. */ 95 #define SEC_TYPE_SYMTAB 2 96 #define SEC_TYPE_STRTAB 3 97 98 /* Section flags. */ 99 #define SEC_FLAGS_EXEC 4 100 94 101 struct ElfSectionHeader 95 102 { … … 106 113 }PACKED; 107 114 115 #define STN_UNDEF 0 116 117 #define ELF_ST_TYPE(val) ((val) & 0xF) 118 119 #define STT_FUNC 2 120 108 121 struct ElfSymbol 109 122 {
