mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +02:00
27 lines
1.0 KiB
Objective-C
27 lines
1.0 KiB
Objective-C
// gen1recomp iOS native bridge bootstrap.
|
|
//
|
|
// Runs the Files-app inbox sweep (GRPickerBridge.sweepInbox) every time the
|
|
// app becomes active, so ROMs/mods/saves dropped into the app's Documents
|
|
// folder land in the LÖVE save directory before the Lua importer rescans.
|
|
// Registered from a constructor so no LÖVE/SDL source needs to know about it.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
__attribute__((constructor))
|
|
static void GRBootstrapInstall(void)
|
|
{
|
|
[[NSNotificationCenter defaultCenter]
|
|
addObserverForName:UIApplicationDidBecomeActiveNotification
|
|
object:nil
|
|
queue:[NSOperationQueue mainQueue]
|
|
usingBlock:^(NSNotification *note) {
|
|
Class bridge = NSClassFromString(@"GRPickerBridge");
|
|
if ([bridge respondsToSelector:@selector(preparePublicDocuments)]) {
|
|
[bridge performSelector:@selector(preparePublicDocuments)];
|
|
}
|
|
if ([bridge respondsToSelector:@selector(sweepInbox)]) {
|
|
[bridge performSelector:@selector(sweepInbox)];
|
|
}
|
|
}];
|
|
}
|