blob: 2fd82f6e61bf2832932c826146d7bb1ed35dfa77 [file] [log] [blame]
// -*- mode: ObjC -*-
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-2019 Steve Nygard.
#import "CDLCRoutines64.h"
@implementation CDLCRoutines64
{
struct routines_command_64 _routinesCommand;
}
- (id)initWithDataCursor:(CDMachOFileDataCursor *)cursor;
{
if ((self = [super initWithDataCursor:cursor])) {
_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;
}
#pragma mark -
- (uint32_t)cmd;
{
return _routinesCommand.cmd;
}
- (uint32_t)cmdsize;
{
return _routinesCommand.cmdsize;
}
@end