1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pub use base::*;
pub use elf32::*;
pub use elf64::*;
pub use section_flag::*;
pub use section_type::*;
pub use util::*;
mod base;
mod elf32;
mod elf64;
mod section_flag;
mod section_type;
mod util;
pub const SHN_UNDEF: u16 = 0;
pub const SHN_LOPROC: u16 = 0xff00;
pub const SHN_HIPROC: u16 = 0xff1f;
pub const SHN_LOOS: u16 = 0xff20;
pub const SHN_HIOS: u16 = 0xff3f;
pub const SHN_ABS: u16 = 0xfff1;
pub const SHN_COMMON: u16 = 0xfff2;
pub const SHN_XINDEX: u16 = 0xffff;