/CDLoadCommand.h
http://i386codedump.googlecode.com/ · C Header · 30 lines · 17 code · 11 blank · 2 comment · 0 complexity · e4432862cc1f73dfd19ff9e1b289f10c MD5 · raw file
- // 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-2006 Steve Nygard
- #import <Foundation/NSObject.h>
- #include <mach-o/loader.h>
- @class CDMachOFile;
- @interface CDLoadCommand : NSObject
- {
- CDMachOFile *nonretainedMachOFile;
- struct load_command loadCommand;
- }
- + (id)loadCommandWithPointer:(const void *)ptr machOFile:(CDMachOFile *)aMachOFile;
- - (id)initWithPointer:(const void *)ptr machOFile:(CDMachOFile *)aMachOFile;
- - (CDMachOFile *)machOFile;
- - (unsigned long)cmd;
- - (unsigned long)cmdsize;
- - (NSString *)commandName;
- - (NSString *)description;
- - (NSString *)extraDescription;
- @end