blob: 2aea34c94350d89f82382dc579ebc80e1a44c5cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _OPTIONS_INC
#define _OPTIONS_INC
typedef struct {
TCHAR email[256];
TCHAR pw[256];
} Options;
extern Options options;
void InitOptions();
void DeinitOptions();
#endif
|