forked from preemptive/PPiOS-Rename
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CDLCRoutines32.m
44 lines (34 loc) · 1.15 KB
/
CDLCRoutines32.m
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
// -*- 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-2015 Steve Nygard.
#import "CDLCRoutines32.h"
@implementation CDLCRoutines32
{
struct routines_command _routinesCommand;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_routinesCommand.cmd = [cursor readInt32];
_routinesCommand.cmdsize = [cursor readInt32];
_routinesCommand.init_address = [cursor readInt32];
_routinesCommand.init_module = [cursor readInt32];
_routinesCommand.reserved1 = [cursor readInt32];
_routinesCommand.reserved2 = [cursor readInt32];
_routinesCommand.reserved3 = [cursor readInt32];
_routinesCommand.reserved4 = [cursor readInt32];
_routinesCommand.reserved5 = [cursor readInt32];
_routinesCommand.reserved6 = [cursor readInt32];
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _routinesCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _routinesCommand.cmdsize;
}
@end