SecLogging.h
1 // 2 // SecLogging.h 3 // sec 4 // 5 // Remote control for logging settings in securityd/secd 6 // 7 8 9 #ifndef _SECURITY_SECLOGGING_H_ 10 #define _SECURITY_SECLOGGING_H_ 11 12 #include <CoreFoundation/CoreFoundation.h> 13 14 CFArrayRef SecGetCurrentServerLoggingInfo(CFErrorRef *error); 15 16 bool SecSetLoggingInfoForXPCScope(CFPropertyListRef /* String or Dictionary of strings */ settings, CFErrorRef *error); 17 18 bool SecSetLoggingInfoForCircleScope(CFPropertyListRef /* String or Dictionary of strings */ settings, CFErrorRef *error); 19 20 #endif