forked from Naville/class-dump-utf8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDLCRoutines64.m
42 lines (31 loc) · 1.09 KB
/
CDLCRoutines64.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
// -*- 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 "CDLCRoutines64.h"
#import "CDDataCursor.h"
@implementation CDLCRoutines64
- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile;
{
if ([super initWithDataCursor:cursor machOFile:aMachOFile] == nil)
return nil;
routinesCommand.cmd = [cursor readInt32];
routinesCommand.cmdsize = [cursor readInt32];
routinesCommand.init_address = [cursor readInt64];
routinesCommand.init_module = [cursor readInt64];
routinesCommand.reserved1 = [cursor readInt64];
routinesCommand.reserved2 = [cursor readInt64];
routinesCommand.reserved3 = [cursor readInt64];
routinesCommand.reserved4 = [cursor readInt64];
routinesCommand.reserved5 = [cursor readInt64];
routinesCommand.reserved6 = [cursor readInt64];
return self;
}
- (uint32_t)cmd;
{
return routinesCommand.cmd;
}
- (uint32_t)cmdsize;
{
return routinesCommand.cmdsize;
}
@end