]>
Dogcows Code - chaz/openbox/blob - openbox/parse.h
9 TOKEN_INTEGER
= INTEGER
,
10 TOKEN_STRING
= STRING
,
11 TOKEN_IDENTIFIER
= IDENTIFIER
,
22 typedef void (*ParseFunc
)(ParseTokenType type
, union ParseToken token
);
25 void parse_shutdown();
32 void parse_reg_section(char *section
, ParseFunc func
);
35 /* Free a parsed token's allocated memory */
36 void parse_free_token(ParseTokenType type
, union ParseToken token
);
38 /* Display an error message while parsing.
39 found in parse.yacc */
40 void yyerror(char *err
);
This page took 0.035584 seconds and 4 git commands to generate.