2007-03-02 01:36:52 +00:00
|
|
|
//
|
|
|
|
// FileSource.h
|
|
|
|
// FileSource
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 3/1/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2013-10-04 23:32:58 +00:00
|
|
|
#import <File_Extractor/fex.h>
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
#import "Plugin.h"
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface FileSource : NSObject <CogSource> {
|
|
|
|
fex_t *fex;
|
|
|
|
const void *data;
|
|
|
|
NSUInteger offset;
|
|
|
|
NSUInteger size;
|
|
|
|
|
2007-03-02 01:36:52 +00:00
|
|
|
FILE *_fd;
|
2022-02-07 05:49:27 +00:00
|
|
|
|
2007-03-04 04:36:10 +00:00
|
|
|
NSURL *_url;
|
2022-06-21 05:10:43 +00:00
|
|
|
|
|
|
|
const void *sbHandle;
|
2007-03-02 01:36:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|