/+junk/codegen

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/codegen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

#include "defs.h"

CG_BEGIN_DEFS

typedef struct Configuration {
  int tmp;
  str_t in_file_path;
  str_t out_file_path;
} Configuration;

typedef enum ConfigurationParam {
  CONFIG_PARAM_INVALID,

  CONFIG_PARAM_LAST
} ConfigurationParam;

Configuration *
configuration_get_default ();

void
configuration_set_default (Configuration* cfg);

void
configuration_free_default ();

CG_END_DEFS