Forgot to add a couple of files..

This commit is contained in:
Lauri Alanko 1998-11-20 23:22:13 +00:00
parent d74bf3623e
commit 05665ade08
2 changed files with 26 additions and 0 deletions

9
tools/gcg/TODO Normal file
View File

@ -0,0 +1,9 @@
Not in any order:
- fix memory leaks (no significance in practice, but...)
- gtkarg wrappers for data members
- Pretty formatted comments from doc strings
- HTML doc output
- IDL output
- Demarshallers
- package-prefixless import headers

17
tools/gcg/parse.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef __PARSE_H__
#define __PARSE_H__
#include <stdio.h>
#include "gcg.h"
gint yylex(void);
gint yyerror(gchar* s);
gint yyparse(void);
extern int yydebug;
extern int yy_flex_debug;
extern FILE* yyin;
extern Module* current_module;
#endif