1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00
putty-source/utils/conf_data.c

10 lines
236 B
C
Raw Normal View History

#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"
};