add some datastructure

This commit is contained in:
fslongjin 2022-05-12 23:45:39 +08:00
parent 1cc3db5e88
commit 46b08c7738
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
#include "elf.h"

View File

@ -0,0 +1,10 @@
#pragma once
#include <common/glib.h>
// ====== ELF头文件中的
typedef uint32_t Elf32_Addr;
typedef uint16_t Elf32_Half;
typedef uint32_t Elf32_Off;
typedef uint32_t Elf32_SWord;
typedef uint32_t Elf32_Word;