this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Symbols for Xcode 9/10 (#445)

+14 -8
+8 -1
src/ApplicationServices/ApplicationServices.c
··· 1 + #include <CoreFoundation/CoreFoundation.h> 2 + 1 3 const char* ApplicationServicesVersionString = "Darling ApplicationServices-48"; 2 4 const unsigned long long ApplicationServicesVersionNumber = 0x4048000000000000; 3 - 5 + const CFStringRef kAXUIElementCopyHierarchyArrayAttributesKey = CFSTR("AXCHAA"); 6 + const CFStringRef kAXUIElementCopyHierarchyMaxArrayCountKey = CFSTR("AXCHMAC"); 7 + const CFStringRef kAXUIElementCopyHierarchyResultValueKey = CFSTR("value"); 8 + const CFStringRef kAXUIElementCopyHierarchyReturnAttributeErrorsKey = CFSTR("AXCHRE"); 9 + const CFStringRef kAXUIElementCopyHierarchySkipInspectionForAttributesKey = CFSTR("AXCHSIA"); 10 + const CFStringRef kAXUIElementCopyHierarchyTruncateStringsKey = CFSTR("AXTRUNC");
+1 -1
src/ApplicationServices/CMakeLists.txt
··· 8 8 SOURCES 9 9 ApplicationServices.c 10 10 DEPENDENCIES 11 - system CoreServices 11 + system CoreServices CoreFoundation 12 12 LINK_FLAGS 13 13 " -Wl,-reexport_library,${CMAKE_BINARY_DIR}/src/CoreServices/CoreServices \ 14 14 -Wl,-reexport_library,${CMAKE_BINARY_DIR}/src/external/cocotron/CoreGraphics/CoreGraphics"
+5 -6
src/CoreServices/constants.m
··· 1 1 #include <CoreFoundation/CoreFoundation.h> 2 - #include <Foundation/Foundation.h> 3 2 4 - const CFStringRef *_kLSPIDKey = CFSTR("pid"); 5 - const CFStringRef *kUTTagClassDeviceModelCode = CFSTR("com.apple.device-model-code"); 6 - const CFStringRef *kUTTagClassFilenameExtension = CFSTR("public.filename-extension"); 7 - const CFStringRef *kUTTagClassMIMEType = CFSTR("public.mime-type"); 8 - const CFStringRef *kUTTypeDevice = CFSTR("public.device"); 3 + const CFStringRef _kLSPIDKey = CFSTR("pid"); 4 + const CFStringRef kUTTagClassDeviceModelCode = CFSTR("com.apple.device-model-code"); 5 + const CFStringRef kUTTagClassFilenameExtension = CFSTR("public.filename-extension"); 6 + const CFStringRef kUTTagClassMIMEType = CFSTR("public.mime-type"); 7 + const CFStringRef kUTTypeDevice = CFSTR("public.device");