forked from joejulian/gio
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();
|
|
});
|
|
}
|