forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CDLCMain.m
37 lines (28 loc) · 813 Bytes
/
CDLCMain.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
// -*- 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-2013 Steve Nygard.
#import "CDLCMain.h"
@implementation CDLCMain
{
struct entry_point_command _entryPointCommand;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_entryPointCommand.cmd = [cursor readInt32];
_entryPointCommand.cmdsize = [cursor readInt32];
_entryPointCommand.entryoff = [cursor readInt64];
_entryPointCommand.stacksize = [cursor readInt64];
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _entryPointCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _entryPointCommand.cmdsize;
}
@end