mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 09:35:09 +02:00
e0a5a3e2bf
Fixes #21577
21 lines
482 B
Objective-C
21 lines
482 B
Objective-C
// AppDelegate.h boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#include <string_view>
|
|
|
|
@protocol PPSSPPViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
@property (strong, nonatomic) UIScreen *screen;
|
|
@property (nonatomic, strong) NSDictionary *launchOptions;
|
|
|
|
- (BOOL)launchPPSSPP:(int)argc argv:(char**)argv;
|
|
- (void)processFilePath:(NSString *)path;
|
|
|
|
@end
|
|
|
|
void copyDeepLinkForPath(std::string_view filePath);
|