Imported Upstream version 2.6.0
This commit is contained in:
parent
26fb71b504
commit
459aaf9392
510 changed files with 40508 additions and 18859 deletions
|
|
@ -12,15 +12,15 @@
|
|||
#define ST_FLAG_IMMUTABLE 0x0004
|
||||
|
||||
/* list of possible ENUM values */
|
||||
struct enum_t {
|
||||
typedef struct enum_s {
|
||||
char *val;
|
||||
struct enum_t *next;
|
||||
};
|
||||
struct enum_s *next;
|
||||
} enum_t;
|
||||
|
||||
/* list of instant commands */
|
||||
struct cmdlist_t {
|
||||
typedef struct cmdlist_s {
|
||||
char *name;
|
||||
struct cmdlist_t *next;
|
||||
};
|
||||
struct cmdlist_s *next;
|
||||
} cmdlist_t;
|
||||
|
||||
#endif /* EXTSTATE_H_SEEN */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue