]> git.saurik.com Git - apple/security.git/blobdiff - OSX/utilities/SecCoreAnalytics.h
Security-59754.80.3.tar.gz
[apple/security.git] / OSX / utilities / SecCoreAnalytics.h
index 244ffd282d77c251e99f7bf1707d50f28a2f686d..f9608865db7ae683ae546f492cacd3d6898e751f 100644 (file)
 * @APPLE_LICENSE_HEADER_END@
 */
 
-#import <Foundation/Foundation.h>
+#include <CoreFoundation/CoreFoundation.h>
+
+void SecCoreAnalyticsSendValue(CFStringRef _Nonnull eventName, int64_t value);
+void SecCoreAnalyticsSendKernEntropyHealth(void);
 
 #if __OBJC__
 
+#import <Foundation/Foundation.h>
+
 NS_ASSUME_NONNULL_BEGIN
 
+extern NSString* const SecCoreAnalyticsValue;
+
 @interface SecCoreAnalytics : NSObject
 
 + (void)sendEvent:(NSString*) eventName event:(NSDictionary<NSString*,NSObject*> *)event;