// AppDelegate.h boilerplate #import #include @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @property (nonatomic, strong) NSDictionary *launchOptions; - (void)processFilePath:(NSString *)path; // Exports the game library to a caller app via a URL scheme callback. // The caller requests it with "ppsspp://gameInfo?scheme=", and // PPSSPP responds by opening "://ppsspp?games=". - (void)exportLibraryToScheme:(NSString *)callerScheme; @end void copyDeepLinkForPath(std::string_view filePath);