The great merge

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2002-11-30 22:01:28 +00:00
commit 516036631c
1508 changed files with 125983 additions and 44037 deletions

View file

@ -15,19 +15,21 @@
#define _PREPROCESSOR_H
#include "swig.h"
#include "swigwarn.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void Preprocessor_expr_init(void);
extern int Preprocessor_expr(DOHString *s, int *error);
extern char *Preprocessor_expr_error(void);
extern DOH *Preprocessor_define(DOHString_or_char *str, int swigmacro);
extern void Preprocessor_undef(DOHString_or_char *name);
extern void Preprocessor_init();
extern DOH *Preprocessor_parse(DOH *s);
extern void Preprocessor_include_all(int);
extern int Preprocessor_expr(String *s, int *error);
extern char *Preprocessor_expr_error(void);
extern Hash *Preprocessor_define(const String_or_char *str, int swigmacro);
extern void Preprocessor_undef(String_or_char *name);
extern void Preprocessor_init();
extern String *Preprocessor_parse(String *s);
extern void Preprocessor_include_all(int);
extern void Preprocessor_import_all(int);
extern void Preprocessor_ignore_missing(int);
extern List *Preprocessor_depend(void);
#ifdef __cplusplus
}