SCNetworkConnection.c
1 #include <SystemConfiguration/SCNetworkConnection.h> 2 3 CFTypeID SCNetworkConnectionGetTypeID(void) 4 { 5 return 0; 6 } 7 8 Boolean SCNetworkConnectionScheduleWithRunLoop(SCNetworkConnectionRef ref, CFRunLoopRef rl, CFStringRef rlMode) 9 { 10 return 0; 11 } 12 13 Boolean SCNetworkConnectionUnscheduleFromRunLoop(SCNetworkConnectionRef ref, CFRunLoopRef rl, CFStringRef rlMode) 14 { 15 return 0; 16 } 17 18 Boolean SCNetworkConnectionStop(SCNetworkConnectionRef ref, Boolean force) 19 { 20 return 0; 21 } 22 23 Boolean SCNetworkConnectionStart(SCNetworkConnectionRef ref, CFDictionaryRef userOptions, Boolean linger) 24 { 25 return 0; 26 } 27 28 Boolean 29 SCNetworkConnectionCopyUserPreferences ( 30 CFDictionaryRef __nullable selectionOptions, 31 CFStringRef __nonnull * __nullable serviceID, 32 CFDictionaryRef __nonnull * __nullable userOptions 33 ) __OSX_AVAILABLE_STARTING(__MAC_10_3,__IPHONE_NA) { 34 return 0; 35 } 36 37 SCNetworkConnectionRef SCNetworkConnectionCreateWithServiceID(CFAllocatorRef allocator, CFStringRef serviceID, SCNetworkConnectionCallBack cb, SCNetworkConnectionContext* ctxt) 38 { 39 return NULL; 40 } 41 42