blob: b73f18133960569634eef1fb525d7664c80779a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef COMET_SCHEME_H
#define COMET_SCHEME_H
#include "../block.h"
typedef struct block_scheme {
const char *name;
block_t block;
size_t size;
const config_entry_t *entries;
bool (*block_scheme_verify_t)(block_t *block, struct block_scheme *scheme);
} block_scheme_t;
extern const block_scheme_t *block_schemes[];
#endif
|