1
0
mirror of https://github.com/fumiama/simple-kanban.git synced 2026-06-05 00:10:29 +08:00
Files
simple-kanban/config.h
2023-12-01 11:14:41 +09:00

23 lines
415 B
C

#ifndef _CONFIG_H_
#define _CONFIG_H_
struct config_t {
char pwd[64]; //password
char sps[64]; //set password
};
typedef struct config_t config_t;
struct const_config_t {
const char pwd[64]; //password
const char sps[64]; //set password
};
typedef struct const_config_t const_config_t;
#define TCPOOL_THREAD_TIMER_T_SZ 65536
#define TCPOOL_MAXWAITSEC 16
#define TCPOOL_THREADCNT 32
#endif