this repo has no description
1
fork

Configure Feed

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

More stubs for xcodebuild & update submodules

+33 -1
+22
src/CoreServices/LaunchServices.cpp
··· 258 258 return noErr; 259 259 } 260 260 261 + // TODO: See https://gist.github.com/zorgiepoo/d751cba19a0167a589a2 262 + 263 + CFStringRef _kLSBundlePathKey = CFSTR("LSBundlePath"); 264 + CFStringRef _kLSDisplayNameKey = CFSTR("LSDisplayName"); 265 + CFStringRef _kLSExecutablePathKey = CFSTR("LSExecutablePath"); 266 + 267 + CFTypeRef _LSCopyApplicationInformationItem(int /* hopefully */, CFTypeRef asn, CFStringRef what) 268 + { 269 + return NULL; 270 + } 271 + 272 + CFDictionaryRef _LSCopyApplicationInformation(int, CFTypeRef asn, int) 273 + { 274 + return NULL; 275 + } 276 + 277 + LSASNRef _LSASNCreateWithPid(CFAllocatorRef allocator, pid_t pid) 278 + { 279 + return NULL; 280 + } 281 + 282 +
+11 -1
src/CoreServices/include/LaunchServices/LaunchServices.h
··· 19 19 typedef int LSNotificationCode; 20 20 typedef int LSNotificationID; 21 21 typedef int LSASN; 22 - typedef LSASN *LSASNRef; 22 + typedef CFTypeRef LSASNRef; 23 23 typedef int LSSessionID; 24 24 25 25 #define kLSNotificationInvalidID -1 ··· 71 71 OSStatus LSGetExtensionInfo(UniCharCount inNameLen, const UniChar* inNameBuffer, UniCharCount *outExtStartIndex); 72 72 OSStatus LSSetExtensionHiddenForRef(const FSRef *inRef, Boolean hide); 73 73 OSStatus LSSetExtensionHiddenForURL(CFURLRef inURL, Boolean hide); 74 + 75 + extern CFStringRef _kLSBundlePathKey; 76 + extern CFStringRef _kLSDisplayNameKey; 77 + extern CFStringRef _kLSExecutablePathKey; 78 + 79 + CFTypeRef _LSCopyApplicationInformationItem(int /* hopefully */, CFTypeRef asn, CFStringRef what); 80 + 81 + CFDictionaryRef _LSCopyApplicationInformation(int, CFTypeRef asn, int); 82 + 83 + LSASNRef _LSASNCreateWithPid(CFAllocatorRef allocator, pid_t pid); 74 84 75 85 // TODO: many other functions 76 86