blob: 6c663fae4dce02c4ce0fa05e686255381417cc41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// PcsxrFileHandle.h
// Pcsxr
//
// Created by Charles Betts on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol PcsxrFileHandle <NSObject>
+ (NSArray *)supportedUTIs;
- (BOOL)handleFile:(NSString *)theFile;
@end
|