Skip to main content

luaur_code_gen/records/
unwind_function_win.rs

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