mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
10 lines
236 B
C
10 lines
236 B
C
|
#include "putty.h"
|
||
|
|
||
|
#define CONF_OPTION(id, ...) { __VA_ARGS__ },
|
||
|
#define VALUE_TYPE(x) .value_type = CONF_TYPE_ ## x
|
||
|
#define SUBKEY_TYPE(x) .subkey_type = CONF_TYPE_ ## x
|
||
|
|
||
|
const ConfKeyInfo conf_key_info[] = {
|
||
|
#include "conf.h"
|
||
|
};
|