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
14CFArrayRef SecGetCurrentServerLoggingInfo(CFErrorRef *error);
15
16bool SecSetLoggingInfoForXPCScope(CFPropertyListRef /* String or Dictionary of strings */ settings, CFErrorRef *error);
17
18#endif
19