Changeset 3568
- Timestamp:
- Aug 28, 2007, 11:41:54 PM (18 years ago)
- Location:
- trunk/kStuff
- Files:
-
- 1 added
- 4 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kLdrFmts/elf-amd64.h
r3565 r3568 27 27 */ 28 28 29 #ifndef __ kLdrModELFAmd64_h__30 #define __ kLdrModELFAmd64_h__29 #ifndef ___k_kLdrFmts_elf_amd64_h___ 30 #define ___k_kLdrFmts_elf_amd64_h___ 31 31 32 32 /* -
trunk/kStuff/include/k/kLdrFmts/elf-i386.h
r3565 r3568 27 27 */ 28 28 29 #ifndef __ kLdrModELFi386_h__30 #define __ kLdrModELFi386_h__29 #ifndef ___k_kLdrFmts_elf_i386_h___ 30 #define ___k_kLdrFmts_elf_i386_h___ 31 31 32 32 #if 0 /** @todo Auxiliary vector entries. */ -
trunk/kStuff/include/k/kLdrFmts/elf32.h
r3567 r3568 27 27 */ 28 28 29 #ifndef __ kLdrModELF32_h__30 #define __ kLdrModELF32_h__29 #ifndef ___k_kLdrFmts_elf32_h___ 30 #define ___k_kLdrFmts_elf32_h___ 31 31 32 #include "kLdrBase.h" 33 #include "kLdrModELFCommon.h" 32 #include <k/kDefs.h> 33 #include <k/kTypes.h> 34 #include <k/kLdrFmts/elf_common.h> 34 35 35 36 /* -
trunk/kStuff/include/k/kLdrFmts/elf64.h
r3567 r3568 27 27 */ 28 28 29 #ifndef __ kLdrModELF64_h__30 #define __ kLdrModELF64_h__29 #ifndef ___k_kLdrFmts_elf64_h___ 30 #define ___k_kLdrFmts_elf64_h___ 31 31 32 #include "kLdrBase.h" 33 #include "kLdrModELFCommon.h" 32 #include <k/kDefs.h> 33 #include <k/kTypes.h> 34 #include <k/kLdrFmts/elf_common.h> 34 35 35 36 /* -
trunk/kStuff/include/k/kLdrFmts/elf_common.h
r3567 r3568 27 27 */ 28 28 29 #ifndef __ kLdrModELFCommon_h__30 #define __ kLdrModELFCommon_h__29 #ifndef ___k_kLdrFmts_elf_common_h___ 30 #define ___k_kLdrFmts_elf_common_h___ 31 31 32 32 /* -
trunk/kStuff/include/k/kLdrFmts/lx.h
r3567 r3568 1 1 /* $Id $ */ 2 3 #ifndef __kLdrModLX_h__ 4 #define __kLdrModLX_h__ 5 6 #include "kLdrBase.h" 2 /** @file 3 * LX structures, types and defines. 4 */ 5 6 #ifndef ___k_kLdrFmts_lx_h___ 7 #define ___k_kLdrFmts_lx_h___ 8 9 #include <k/kDefs.h> 10 #include <k/kTypes.h> 7 11 8 12 -
trunk/kStuff/include/k/kLdrFmts/mach-o.h
r3567 r3568 4 4 */ 5 5 6 #ifndef __kLdrModMachO_h__ 7 #define __kLdrModMachO_h__ 8 9 #include "kLdrBase.h" 6 #ifndef ___k_kLdrFmts_mach_o_h___ 7 #define ___k_kLdrFmts_mach_o_h___ 8 9 #include <k/kDefs.h> 10 #include <k/kTypes.h> 11 10 12 11 13 /** @defgroup grp_mach_o The Mach-O Structures, Types, and Defines. -
trunk/kStuff/include/k/kLdrFmts/mz.h
r3567 r3568 1 1 /* $Id$ */ 2 /** @file 3 * MZ structures, types and defines. 4 */ 2 5 3 #ifndef __ kLdrModMZ_h__4 #define __ kLdrModMZ_h__6 #ifndef ___k_kLdrFmts_mz_h___ 7 #define ___k_kLdrFmts_mz_h___ 5 8 6 #include "kLdrBase.h" 9 #include <k/kDefs.h> 10 #include <k/kTypes.h> 7 11 8 12 #pragma pack(1) /* not required */ -
trunk/kStuff/include/k/kLdrFmts/pe.h
r3567 r3568 1 1 /* $Id$ */ 2 3 #ifndef __kLdrModPE_h__ 4 #define __kLdrModPE_h__ 2 /** @file 3 * PE structures, types and defines. 4 */ 5 6 #ifndef ___k_kLdrFmts_pe_h___ 7 #define ___k_kLdrFmts_pe_h___ 5 8 6 9 … … 8 11 * Header Files * 9 12 *******************************************************************************/ 10 #include "kLdrBase.h" 13 #include <k/kTypes.h> 14 #include <k/kDefs.h> 11 15 12 16 -
trunk/kStuff/kLdr/kLdrMod.c
r3567 r3568 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" 34 #include "kLdrModMZ.h"34 #include <k/kLdrFmts/mz.h> 35 35 #if 1 /* testing headers */ 36 # include "kLdrModPE.h"37 # include "kLdrModLX.h"38 # include "kLdrModELF32.h"39 # include "kLdrModELF64.h"40 # include "kLdrModMachO.h"36 # include <k/kLdrFmts/pe.h> 37 # include <k/kLdrFmts/lx.h> 38 # include <k/kLdrFmts/elf32.h> 39 # include <k/kLdrFmts/elf64.h> 40 # include <k/kLdrFmts/mach-o.h> 41 41 #endif 42 42 -
trunk/kStuff/kLdr/kLdrModLX.c
r3567 r3568 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" 34 #include "kLdrModLX.h"34 #include <k/kLdrFmts/lx.h> 35 35 36 36 -
trunk/kStuff/kLdr/kLdrModMachO.c
r3567 r3568 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" 34 #include "kLdrModMachO.h"34 #include <k/kLdrFmts/mach-o.h> 35 35 36 36 -
trunk/kStuff/kLdr/kLdrModPE.c
r3567 r3568 32 32 #include "kLdrHlp.h" 33 33 #include "kLdrInternal.h" 34 #include "kLdrModPE.h"34 #include <k/kLdrFmts/pe.h> 35 35 36 36
Note:
See TracChangeset
for help on using the changeset viewer.