libyasm
parser.h
Go to the documentation of this file.
1 
30 #ifndef YASM_PARSER_H
31 #define YASM_PARSER_H
32 
34 typedef struct yasm_parser_module {
36  const char *name;
37 
39  const char *keyword;
40 
45  const char **preproc_keywords;
46 
49 
52 
62  void (*do_parse)
63  (yasm_object *object, yasm_preproc *pp, int save_input,
64  yasm_linemap *linemap, yasm_errwarns *errwarns);
66 
67 #endif