Skip to main content

luaur_code_gen/records/
unwind_function_dwarf_2.rs

1#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Hash)]
2#[repr(C)]
3pub struct UnwindFunctionDwarf2 {
4    pub begin_offset: u32,
5    pub end_offset: u32,
6    pub fde_entry_start_pos: u32,
7}
8
9#[allow(non_upper_case_globals)]
10impl UnwindFunctionDwarf2 {
11    pub const beginOffset: u32 = 0;
12    pub const endOffset: u32 = 0;
13    pub const fdeEntryStartPos: u32 = 0;
14}