forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCDLCTwoLevelHints.m
More file actions
39 lines (29 loc) · 816 Bytes
/
CDLCTwoLevelHints.m
File metadata and controls
39 lines (29 loc) · 816 Bytes
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
// -*- 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 "CDLCTwoLevelHints.h"
#import "CDMachOFile.h"
@implementation CDLCTwoLevelHints
{
struct twolevel_hints_command _hintsCommand;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_hintsCommand.cmd = [cursor readInt32];
_hintsCommand.cmdsize = [cursor readInt32];
_hintsCommand.offset = [cursor readInt32];
_hintsCommand.nhints = [cursor readInt32];
}
return self;
}
#pragma mark -
- (uint32_t)cmd;
{
return _hintsCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _hintsCommand.cmdsize;
}
@end