29 lines
396 B
Objective-C
29 lines
396 B
Objective-C
//
|
|
// FileSource.h
|
|
// FileSource
|
|
//
|
|
// Created by Vincent Spader on 3/1/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <File_Extractor/fex.h>
|
|
|
|
#import "Plugin.h"
|
|
|
|
@interface FileSource : NSObject <CogSource> {
|
|
fex_t *fex;
|
|
const void *data;
|
|
NSUInteger offset;
|
|
NSUInteger size;
|
|
|
|
FILE *_fd;
|
|
|
|
NSURL *_url;
|
|
|
|
const void *sbHandle;
|
|
}
|
|
|
|
@end
|