blob: 383fb6ac490195144a36eaf9dee172444d2bf8a8 [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 "CDLoadCommand.h"
@interface CDLCUnixThread : CDLoadCommand
{
struct load_command loadCommand;
NSMutableData *commandData;
}
- (id)initWithDataCursor:(CDDataCursor *)cursor machOFile:(CDMachOFile *)aMachOFile;
- (void)dealloc;
- (uint32_t)cmd;
- (uint32_t)cmdsize;
@end