git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@128 626c5289-ae23-0410-ae9c-e8d60b6d4f22
39 lines
890 B
C
39 lines
890 B
C
/* -----------------------------------------------------------------------------
|
|
* preprocessor.h
|
|
*
|
|
* SWIG preprocessor module.
|
|
*
|
|
* Author(s) : David Beazley (beazley@cs.uchicago.edu)
|
|
*
|
|
* Copyright (C) 1999-2000. The University of Chicago
|
|
* See the file LICENSE for information on usage and redistribution.
|
|
*
|
|
* $Header$
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
#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
|
|
|
|
|
|
|
|
|