6 #include <CoreFoundation/CoreFoundation.h>
8 void SecABCTrigger(CFStringRef _Nonnull type
,
9 CFStringRef _Nonnull subtype
,
10 CFStringRef _Nullable subtypeContext
,
11 CFDictionaryRef _Nullable payload
);
14 #import <Foundation/Foundation.h>
16 NS_ASSUME_NONNULL_BEGIN
18 @interface SecABC
: NSObject
20 + (void)triggerAutoBugCaptureWithType
:(NSString
*)type
21 subType
:(NSString
*)subType
;
23 + (void)triggerAutoBugCaptureWithType
:(NSString
*)type
24 subType
:(NSString
*)subType
25 subtypeContext
:(NSString
* _Nullable
)subtypeContext
26 events
:(NSArray
* _Nullable
)events
27 payload
:(NSDictionary
* _Nullable
)payload
28 detectedProcess
:(NSString
* _Nullable
)process
;