Initial Import
[glAntsMech.git] / glants_mech / linux / src / keys.h
blobb6f05152098a539711a8a7027adc389594ef66d7
1 //
2 //
3 // KEYS.H
4 #ifndef _KEYS_H_
5 #define _KEYS_H_
7 #define MAX_INPUT_STR 32
9 // see keys.c
10 #define SEL_SERVER_MODE 0
11 #define SEL_CLIENT_MODE 1
13 #define START_SEL 0
14 #define SEL_SERVER_MAX 5
15 #define SEL_CLIENT_MAX 5
17 #define SEL_TYPE_TEXT 0
18 #define SEL_TYPE_BOOL 1
19 #define SEL_TYPE_IP 2
20 #define SEL_TYPE_NUMERIC 3
21 #define SEL_TYPE_APPLY 4
22 #define SEL_TYPE_NOCHANGE 5
24 void Display_NetSel(char str[26][80]);
25 void Alpha_Keys(char *buffer);
27 #endif