mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-29 08:43:42 -04:00
node
This commit is contained in:
parent
7e5535d9bd
commit
939db9fcf9
@ -24,6 +24,21 @@ typedef struct tag_token {
|
||||
} data;
|
||||
} SP_TOKEN;
|
||||
|
||||
typedef struct tag_sp_node {
|
||||
union {
|
||||
struct tag_sp_node *node;
|
||||
char *field;
|
||||
} left;
|
||||
|
||||
int op;
|
||||
|
||||
union {
|
||||
struct tag_sp_node *node;
|
||||
int ivalue;
|
||||
char *cvalue;
|
||||
} right;
|
||||
} SP_NODE;
|
||||
|
||||
/*
|
||||
#define T_ID 0x00
|
||||
#define T_PATH 0x01
|
||||
|
Loading…
x
Reference in New Issue
Block a user