blob: 8d5bcd2a8425dc4685bf782ff09886739f515120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* PARSEC HEADER: con_conf.h
*/
#ifndef _CON_CONF_H_
#define _CON_CONF_H_
// color command spec
struct colcomm_s {
const char *cmd;
colrgba_s *col;
void (*func)();
};
// external functions
void DisplayCurrentNetSubsys();
int CheckColorConfig( char *scan );
int CheckConfigCommand( char *scan );
// external variables
extern colcomm_s col_comms[];
extern int num_col_commands;
#endif // _CON_CONF_H_
|