mirror of
https://github.com/darlinghq/class-dump.git
synced 2024-11-28 06:40:26 +00:00
794d46725b
Mach-O files and others generated from the Objective-C segment.
21 lines
423 B
Objective-C
21 lines
423 B
Objective-C
#import "CDLoadCommand.h"
|
|
#include <mach-o/loader.h>
|
|
|
|
@interface CDDylibCommand : CDLoadCommand
|
|
{
|
|
const struct dylib_command *dylibCommand;
|
|
NSString *name;
|
|
}
|
|
|
|
- (id)initWithPointer:(const void *)ptr machOFile:(CDMachOFile *)aMachOFile;
|
|
- (void)dealloc;
|
|
|
|
- (NSString *)name;
|
|
- (unsigned long)timestamp;
|
|
- (unsigned long)currentVersion;
|
|
- (unsigned long)compatibilityVersion;
|
|
|
|
//- (NSString *)extraDescription;
|
|
|
|
@end
|