13 lines
165 B
C
13 lines
165 B
C
#ifndef CAPABILITY_H
|
|
#define CAPABILITY_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
char name[32];
|
|
bool supported;
|
|
} capability_t;
|
|
|
|
#endif
|