diff --git a/tools/romimg/src/ELF.h b/tools/romimg/src/ELF.h index 2dbee064574..61b11feaff4 100644 --- a/tools/romimg/src/ELF.h +++ b/tools/romimg/src/ELF.h @@ -1,6 +1,7 @@ -typedef unsigned char u8; -typedef unsigned short int u16; -typedef unsigned int u32; +#ifndef __ELF_H__ +#define __ELF_H__ + +#include /* ELF-loading stuff */ #define ELF_MAGIC 0x464c457f @@ -11,59 +12,59 @@ typedef unsigned int u32; /*------------------------------*/ typedef struct { - u8 ident[16]; /* Structure of a ELF header */ - u16 type; - u16 machine; - u32 version; - u32 entry; - u32 phoff; - u32 shoff; - u32 flags; - u16 ehsize; - u16 phentsize; - u16 phnum; - u16 shentsize; - u16 shnum; - u16 shstrndx; + uint8_t ident[16]; /* Structure of a ELF header */ + uint16_t type; + uint16_t machine; + uint32_t version; + uint32_t entry; + uint32_t phoff; + uint32_t shoff; + uint32_t flags; + uint16_t ehsize; + uint16_t phentsize; + uint16_t phnum; + uint16_t shentsize; + uint16_t shnum; + uint16_t shstrndx; } elf_header_t; /*------------------------------*/ typedef struct { - u32 type; /* Structure of a header a sections in an ELF */ - u32 offset; + uint32_t type; /* Structure of a header a sections in an ELF */ + uint32_t offset; void *vaddr; - u32 paddr; - u32 filesz; - u32 memsz; - u32 flags; - u32 align; + uint32_t paddr; + uint32_t filesz; + uint32_t memsz; + uint32_t flags; + uint32_t align; } elf_pheader_t; typedef struct { - u32 name; - u32 type; - u32 flags; - u32 addr; - u32 offset; - u32 size; - u32 link; - u32 info; - u32 addralign; - u32 entsize; + uint32_t name; + uint32_t type; + uint32_t flags; + uint32_t addr; + uint32_t offset; + uint32_t size; + uint32_t link; + uint32_t info; + uint32_t addralign; + uint32_t entsize; } elf_shdr_t; typedef struct { - u32 offset; - u32 info; + uint32_t offset; + uint32_t info; } elf_rel; typedef struct { - u32 offset; - u32 info; - u32 addend; + uint32_t offset; + uint32_t info; + uint32_t addend; } elf_rela; enum ELF_SHT_types { @@ -83,29 +84,29 @@ enum ELF_SHT_types { typedef struct iopmod_struct { - u32 moduleinfo; - u32 entry; - u32 gp_value; - u32 text_size; - u32 data_size; - u32 bss_size; - u16 version; + uint32_t moduleinfo; + uint32_t entry; + uint32_t gp_value; + uint32_t text_size; + uint32_t data_size; + uint32_t bss_size; + uint16_t version; char modname[]; } iopmod_t; typedef struct eemod_struct { - u32 moduleinfo; - u32 entry; - u32 gp_value; - u32 text_size; - u32 data_size; - u32 bss_size; - u32 ERX_lib_addr; - u32 ERX_lib_size; - u32 ERX_stub_addr; - u32 ERX_stub_size; - u16 version; + uint32_t moduleinfo; + uint32_t entry; + uint32_t gp_value; + uint32_t text_size; + uint32_t data_size; + uint32_t bss_size; + uint32_t ERX_lib_addr; + uint32_t ERX_lib_size; + uint32_t ERX_stub_addr; + uint32_t ERX_stub_size; + uint16_t version; char modname[]; } eemod_t; @@ -120,3 +121,5 @@ typedef struct eemod_struct #define SHF_ALLOC 0x2 #define SHF_EXECINSTR 0x4 #define SHF_MASKPROC 0xf0000000 + +#endif /* __ELF_H__ */ \ No newline at end of file diff --git a/tools/romimg/src/SonyRX.c b/tools/romimg/src/SonyRX.c index 21bd06f4f0c..23fc598e58c 100644 --- a/tools/romimg/src/SonyRX.c +++ b/tools/romimg/src/SonyRX.c @@ -20,7 +20,7 @@ int IsSonyRXModule(const char *path) result = 0; if ((file = fopen(path, "rb")) != NULL) { if (fread(&header, 1, sizeof(elf_header_t), file) != 0) { - if (*(u32 *)header.ident == ELF_MAGIC && (header.type == ELF_TYPE_ERX2 || header.type == ELF_TYPE_IRX)) { + if (*(uint32_t *)header.ident == ELF_MAGIC && (header.type == ELF_TYPE_ERX2 || header.type == ELF_TYPE_IRX)) { unsigned int i; for (i = 0; i < header.shnum; i++) { fseek(file, header.shoff + i * header.shentsize, SEEK_SET); @@ -50,7 +50,7 @@ int GetSonyRXModInfo(const char *path, char *description, unsigned int MaxLength result = ENOENT; if ((file = fopen(path, "rb")) != NULL) { if (fread(&header, 1, sizeof(elf_header_t), file) != 0) { - if (*(u32 *)header.ident == ELF_MAGIC && (header.type == ELF_TYPE_ERX2 || header.type == ELF_TYPE_IRX)) { + if (*(uint32_t *)header.ident == ELF_MAGIC && (header.type == ELF_TYPE_ERX2 || header.type == ELF_TYPE_IRX)) { unsigned int i; for (i = 0; i < header.shnum; i++) { fseek(file, header.shoff + i * header.shentsize, SEEK_SET); diff --git a/tools/romimg/src/SonyRX.h b/tools/romimg/src/SonyRX.h index 708ba5a3c30..fe6520ef30c 100644 --- a/tools/romimg/src/SonyRX.h +++ b/tools/romimg/src/SonyRX.h @@ -1,2 +1,7 @@ +#ifndef __SONY_RX_H__ +#define __SONY_RX_H__ + int IsSonyRXModule(const char *path); int GetSonyRXModInfo(const char *path, char *description, unsigned int MaxLength, unsigned short int *version); + +#endif /* __SONY_RX_H__ */ \ No newline at end of file diff --git a/tools/romimg/src/platform.h b/tools/romimg/src/platform.h index e4f2f654102..f277fb5ba16 100644 --- a/tools/romimg/src/platform.h +++ b/tools/romimg/src/platform.h @@ -1,3 +1,6 @@ +#ifndef __PLATFORM_H__ +#define __PLATFORM_H__ + int GetUsername(char *buffer, unsigned int BufferSize); int GetLocalhostName(char *buffer, unsigned int BufferSize); unsigned int GetSystemDate(void); @@ -9,3 +12,5 @@ int GetCurrentWorkingDirectory(char *buffer, unsigned int BufferSize); #else #define PATHSEP '/' #endif + +#endif /* __PLATFORM_H__ */ \ No newline at end of file diff --git a/tools/romimg/src/romimg.h b/tools/romimg/src/romimg.h index 1a27ebb8081..ad6f872e7c6 100644 --- a/tools/romimg/src/romimg.h +++ b/tools/romimg/src/romimg.h @@ -16,6 +16,10 @@ All sections and files are (must be?) aligned to 16-byte boundaries, and all records within each section must be aligned to 4-byte boundaries. */ + +#ifndef __ROMING_H__ +#define __ROMING_H__ + #include "dprintf.h" #if defined(_WIN32) || defined(WIN32) #define RMIMG_PTRCAST unsigned int @@ -68,3 +72,5 @@ int AddFile(ROMIMG *ROMImg, const char *path); int DeleteFile(ROMIMG *ROMImg, const char *filename); int ExtractFile(const ROMIMG *ROMImg, const char *filename, const char *FileToExtract); int IsFileExists(const ROMIMG *ROMImg, const char *filename); + +#endif /* __ROMING_H__ */ \ No newline at end of file