1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21

mod relinstruction;
pub use relinstruction::*;

mod sections;
pub use sections::*;

mod reader;
pub use reader::*;

mod writer;
pub use writer::*;

mod sectionheaders;
pub use sectionheaders::*;

mod kofile;
pub use kofile::*;

pub static FILE_VERSION: u8 = 3;
pub static MAGIC_NUMBER: u32 = 0x666f016b;