File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
CoreFoundation/RunLoop.subproj Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,12 @@ extern mach_port_t _dispatch_get_main_queue_port_4CF(void);
101
101
#elif TARGET_OS_WIN32 || TARGET_OS_CYGWIN
102
102
#include <process.h>
103
103
DISPATCH_EXPORT HANDLE _dispatch_get_main_queue_handle_4CF (void );
104
- DISPATCH_EXPORT void _dispatch_main_queue_callback_4CF (void );
104
+ DISPATCH_EXPORT void _dispatch_main_queue_callback_4CF (void * _Null_unspecified );
105
105
106
106
#define MACH_PORT_NULL 0
107
107
#define mach_port_name_t HANDLE
108
108
#define mach_port_t HANDLE
109
109
#define _dispatch_get_main_queue_port_4CF _dispatch_get_main_queue_handle_4CF
110
- #define _dispatch_main_queue_callback_4CF (x ) _dispatch_main_queue_callback_4CF()
111
110
112
111
#elif DEPLOYMENT_TARGET_LINUX
113
112
@@ -121,7 +120,6 @@ dispatch_runloop_handle_t _dispatch_get_main_queue_handle_4CF(void);
121
120
extern void _dispatch_main_queue_callback_4CF (void * _Null_unspecified msg );
122
121
123
122
#define _dispatch_get_main_queue_port_4CF _dispatch_get_main_queue_handle_4CF
124
- #define _dispatch_main_queue_callback_4CF (x ) _dispatch_main_queue_callback_4CF(x)
125
123
#endif
126
124
127
125
#if DEPLOYMENT_TARGET_WINDOWS || DEPLOYMENT_TARGET_LINUX
You can’t perform that action at this time.
0 commit comments