mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
911b526dc1
The redundant include also broke CI. Signed-off-by: Elias Naur <mail@eliasnaur.com>
12 lines
221 B
Objective-C
12 lines
221 B
Objective-C
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include "_cgo_export.h"
|
|
|
|
void gio_wakeupMainThread(void) {
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
gio_dispatchMainFuncs();
|
|
});
|
|
}
|