this repo has no description
1
fork

Configure Feed

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

Expand private CoreServices APIs

+13
+13
src/CoreServices/CoreServicesPriv.h
··· 1 1 #ifndef CORESERVICESPRIV_H_ 2 2 #define CORESERVICESPRIV_H_ 3 + 3 4 #include <CoreFoundation/CFString.h> 5 + #include <CoreFoundation/CFURLPriv.h> 4 6 5 7 CF_EXTERN_C_BEGIN 6 8 7 9 Boolean _CSCheckFix(CFStringRef str); 10 + 11 + // Assumed 12 + #define kLSDownloadRiskCategoryKey CFSTR("LSDownloadRiskCategory") 13 + 14 + #define kLSRiskCategorySafe "LSRiskCategorySafe" 15 + #define kLSRiskCategoryNeutral "LSRiskCategoryNeutral" 16 + #define kLSRiskCategoryUnknown "LSRiskCategoryUnknown" 17 + #define kLSRiskCategoryMayContainUnsafeExecutable "LSRiskCategoryMayContainUnsafeExecutable" 18 + 19 + // Also assumed 20 + #define QTN_FLAG_ASSESSMENT_OK 1 8 21 9 22 CF_EXTERN_C_END 10 23