blob: 96a5e343eb1fcd94c2f36bf0b43e8a7ad2ccac3f [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-1998, 2000-2001, 2004-2009 Steve Nygard.
#import "CDMachOFile.h"
@interface CDMachO32File : CDMachOFile
{
struct mach_header header; // header.magic is read in and stored in little endian order.
}
- (id)initWithData:(NSData *)someData offset:(NSUInteger)anOffset;
- (uint32_t)magic;
- (cpu_type_t)cputype;
- (cpu_subtype_t)cpusubtype;
- (uint32_t)filetype;
- (uint32_t)flags;
- (BOOL)bestMatchForLocalArch:(CDArch *)archPtr;
- (Class)processorClass;
@end