blob: 00afb00f6530de41cb2d68fd37113483d8776647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "info.h"
static const config_entry_t block_group_entries[] = {
{ "spacing", CONFIG_INT, offsetof(block_t, group.spacing) },
{ 0 },
};
// TODO
const config_block_t block_group_info = {
.type_name = "group",
.type_size = 0,
.base = { 0 },
.entries = block_group_entries,
.apply = NULL,
};
|