summaryrefslogtreecommitdiffstats
path: root/aclk/schema-wrappers/capability.h
blob: 9517a871632ecf9495d3183f0dd6c160227c15f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef ACLK_SCHEMA_CAPABILITY_H
#define ACLK_SCHEMA_CAPABILITY_H

#ifdef __cplusplus
extern "C" {
#endif

struct capability {
    const char *name;
    uint32_t version;
    int enabled;
};

#ifdef __cplusplus
}

#include "proto/aclk/v1/lib.pb.h"

void capability_set(aclk_lib::v1::Capability *proto_capa, struct capability *c_capa);
#endif

#endif /* ACLK_SCHEMA_CAPABILITY_H */