swig/SWIG/Source/Preprocessor/preprocessor.h
Dave Beazley 8cf944f555 Renamining
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@102 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-01-18 21:53:32 +00:00

41 lines
959 B
C

/****************************************************************************
* Simplified Wrapper and Interface Generator (SWIG)
*
* Author : David Beazley
*
* Department of Computer Science
* University of Chicago
* 1100 E 58th Street
* Chicago, IL 60637
* beazley@cs.uchicago.edu
*
* Please read the file LICENSE for the copyright and terms by which SWIG
* can be used and distributed.
****************************************************************************/
#ifndef _PREPROCESSOR_H
#define _PREPROCESSOR_H
#include "swig.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int Preprocessor_expr(DOH *s, int *error);
extern char *Preprocessor_expr_error(void);
extern DOH *Preprocessor_define(DOH *str, int swigmacro);
extern void Preprocessor_undef(DOH *name);
extern void Preprocessor_init();
extern DOH *Preprocessor_parse(DOH *s);
extern void Preprocessor_include_all(int);
#ifdef __cplusplus
}
#endif
#endif