blob: 41d59fa85d2b0fc2a2b4bd498978febff3212c70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// for size_t
#include <stddef.h>
typedef struct discoveryOrganization {
const char* display_name;
const char* org_id;
const char* secure_internet_home;
const char* keyword_list;
} discoveryOrganization;
typedef struct discoveryOrganizations {
unsigned long long int version;
discoveryOrganization** organizations;
size_t total_organizations;
} discoveryOrganizations;
|