ppsspp/ios/ViewController.h

26 lines
643 B
C
Raw Permalink Normal View History

// ViewController.h boilerplate
#import <UIKit/UIKit.h>
#import <GLKit/GLKit.h>
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1
2014-01-27 19:24:22 +04:00
#import <GameController/GameController.h>
#endif
2013-05-30 20:58:41 -05:00
#import "iCade/iCadeReaderView.h"
#import "CameraHelper.h"
#import "LocationHelper.h"
2013-05-30 20:58:41 -05:00
@interface ViewController : GLKViewController <iCadeEventDelegate,
LocationHandlerDelegate, CameraFrameDelegate>
2020-04-25 10:07:35 +03:00
- (void)shareText:(NSString *)text;
2018-02-22 03:04:12 -08:00
- (void)shutdown;
@end
2018-02-22 03:04:12 -08:00
extern __unsafe_unretained ViewController* sharedViewController;
void setCameraSize(int width, int height);
void startVideo();
void stopVideo();
void startLocation();
void stopLocation();