forked from Polidea/ios-class-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDSection.h
45 lines (31 loc) · 913 Bytes
/
CDSection.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2009 Steve Nygard.
#import <Foundation/Foundation.h>
#include <mach-o/loader.h>
@class CDDataCursor, CDMachOFile, CDLCSegment32;
@interface CDSection : NSObject
{
NSString *segmentName;
NSString *sectionName;
NSData *data;
struct {
unsigned int hasLoadedData:1;
} _flags;
}
- (id)init;
- (void)dealloc;
- (NSString *)segmentName;
- (void)setSegmentName:(NSString *)newName;
- (NSString *)sectionName;
- (void)setSectionName:(NSString *)newName;
- (NSData *)data;
- (void)loadData;
- (void)unloadData;
- (NSUInteger)addr;
- (NSUInteger)size;
- (CDMachOFile *)machOFile;
- (NSString *)description;
- (BOOL)containsAddress:(NSUInteger)address;
- (NSUInteger)fileOffsetForAddress:(NSUInteger)address;
@end