16 lines
179 B
C
16 lines
179 B
C
#ifndef __VALUES__
|
|
#define __VALUES__
|
|
|
|
#define MAX_WINDOWS 512
|
|
#define MAX_CHILDREN 32
|
|
#define MAX_TITLE_LEN 32
|
|
|
|
enum ComponentType {
|
|
BASE,
|
|
BAR,
|
|
STRING,
|
|
TABLE,
|
|
};
|
|
|
|
#endif
|