summaryrefslogtreecommitdiffstats
path: root/aclk/schema-wrappers/capability.h
blob: c6085a44b88f2f0cb5f79451b8ac55679bc44a64 (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, const struct capability *c_capa);
#endif

#endif /* ACLK_SCHEMA_CAPABILITY_H */