blob: 11c4053c1ee1d738578c04f4a3cc546c0ef39fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef COMET_CONFIG_H
#define COMET_CONFIG_H
#include <stdio.h>
#include "block.h"
typedef struct {
block_t block;
char *font;
char *monitor;
unsigned int height;
unsigned int width;
bool override_redirect;
} config_t;
void config_init(config_t *config);
void config_read(config_t *config, FILE *file);
void config_free(config_t *config);
#endif
|