summaryrefslogtreecommitdiffstats
path: root/bank.h
blob: be331a1de40a289f4ad250a597b92e1ca000b966 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "../include/bbs.h"

#define PORT 2003

#ifdef STRLEN
    #undef STRLEN
#endif
#define STRLEN 128

#define ERROR   0x1
#define SUCCESS 0x2
#define TIMEOUT 0x4

typedef int response;

typedef struct request{
    int money;
    char userid[IDLEN];
}request;