-
Notifications
You must be signed in to change notification settings - Fork 701
/
Exceptions.h
31 lines (23 loc) · 844 Bytes
/
Exceptions.h
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
/*
* Exceptions.h
* MachOView
*
* Created by psaghelyi on 20/07/2010.
*
*/
#import "MachOLayout.h"
@interface MachOLayout (Exceptions)
- (MVNode *)createCFINode:(MVNode *)parent
caption:(NSString *)caption
location:(uint64_t)location
length:(uint64_t)length;
- (MVNode *)createLSDANode:(MVNode *)parent
caption:(NSString *)caption
location:(uint64_t)location
length:(uint64_t)length
eh_frame_begin:(uint64_t)eh_frame_begin;
- (MVNode *)createUnwindInfoHeaderNode:(MVNode *)parent
caption:(NSString *)caption
location:(uint64_t)location
header:(struct unwind_info_section_header const *)unwind_info_section_header;
@end