1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #pragma once
| #include <stdint.h>
|
| #if defined(__cplusplus)
| extern "C"
| {
| #endif
|
| void* UnityPalSystemCertificatesOpenSystemRootStore();
| int UnityPalSystemCertificatesEnumSystemCertificates(void* certStore, void** iter, int *format, int* size, void** data);
| void UnityPalSystemCertificatesCloseSystemRootStore(void* cStore);
|
| #if defined(__cplusplus)
| }
| #endif
|
|