this repo has no description
1
fork

Configure Feed

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

Add symbols for sketchtool

darlinghq/darling#494

+23
+2
src/ApplicationServices/ApplicationServices.c
··· 10 10 const CFStringRef kAXUIElementCopyHierarchyTruncateStringsKey = CFSTR("AXTRUNC"); 11 11 /* Not const for some reason */ 12 12 CFStringRef kAXTrustedCheckOptionPrompt = CFSTR("AXTrustedCheckOptionPrompt"); 13 + 14 +
+8
src/CoreServices/LaunchServices.cpp
··· 286 286 return NULL; 287 287 } 288 288 289 + /* 290 + OSStatus _LSOpenURLsWithRole(CFArrayRef inURLs, LSRolesMask inRole, void *unknown) 291 + { 292 + CFURLRef url = CFArrayGetValueAtIndex(inURLs, 0); 293 + LSOpenCFURLRef(url, NULL); 294 + return noErr; 295 + } 296 + */ 289 297 290 298 CFStringRef LSUserApplicationType = CFSTR("User"); 291 299 CFStringRef LSSystemApplicationType = CFSTR("System");
+1
src/CoreServices/constants.m
··· 28 28 const CFStringRef kUTTypeSwiftSource = CFSTR("public.swift-source"); 29 29 const CFStringRef kUTTypeText = CFSTR("public.text"); 30 30 const CFStringRef kUTTypeFramework = CFSTR("com.apple.framework"); 31 + const CFStringRef kUTTypeImage = CFSTR("public.image"); 31 32 32 33 const CFStringRef _kLSASNKey = CFSTR("LSASN"); 33 34 const CFStringRef _kLSApplicationTypeKey = CFSTR("ApplicationType");
+2
src/CoreServices/include/LaunchServices/LaunchServices.h
··· 84 84 85 85 extern CFStringRef LSUserApplicationType, LSSystemApplicationType, LSInternalApplicationType, LSPlugInKitType, LSVPNPluginType; 86 86 87 + //OSStatus _LSOpenURLsWithRole(CFArrayRef inURLs, LSRolesMask inRole, void *unknown); 88 + 87 89 // TODO: many other functions 88 90 89 91 #ifdef __cplusplus
+4
src/ImageIO/src/ImageIO.m
··· 31 31 const CFStringRef kCGImageSourceCreateThumbnailFromImageIfAbsent = CFSTR("kCGImageSourceCreateThumbnailFromImageIfAbsent"); 32 32 const CFStringRef kCGImagePropertyPixelHeight = CFSTR("PixelHeight"); 33 33 const CFStringRef kCGImagePropertyPixelWidth = CFSTR("PixelWidth"); 34 + const CFStringRef kCGImagePropertyPNGDictionary = CFSTR("{PNG}"); 35 + const CFStringRef kCGImagePropertyPNGGamma = CFSTR("Gamma"); 36 + const CFStringRef kCGImageSourceCreateThumbnailWithTransform = CFSTR("kCGImageSourceCreateThumbnailWithTransform"); 37 + const CFStringRef kCGImageSourceShouldCache = CFSTR("kCGImageSourceShouldCache"); 34 38 35 39 static int verbose = 0; 36 40
+6
src/libc/darwin/darling_hacks.c
··· 9 9 vsyslog(priority, arg1, args); 10 10 va_end(args); 11 11 } 12 + 13 + typedef float __attribute__((ext_vector_type(4))) simd_float4; 14 + typedef struct { simd_float4 columns[4]; } simd_float4x4; 15 + 16 + // TODO 17 + simd_float4x4 matrix_identity_float4x4;