mirror of https://github.com/GNOME/gimp.git
Forgot to add a couple of files..
This commit is contained in:
parent
d74bf3623e
commit
05665ade08
|
@ -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
|
|
@ -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
|
Loading…
Reference in New Issue