git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9641 626c5289-ae23-0410-ae9c-e8d60b6d4f22
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
/* -----------------------------------------------------------------------------
|
|
* See the LICENSE file for information on copyright, usage and redistribution
|
|
* of SWIG, and the README file for authors - http://www.swig.org/release.html.
|
|
*
|
|
* swigwrap.h
|
|
*
|
|
* Functions related to wrapper objects.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
/* $Id: swig.h 9635 2007-01-12 01:44:16Z beazley $ */
|
|
|
|
typedef struct Wrapper {
|
|
Hash *localh;
|
|
String *def;
|
|
String *locals;
|
|
String *code;
|
|
} Wrapper;
|
|
|
|
extern Wrapper *NewWrapper();
|
|
extern void DelWrapper(Wrapper *w);
|
|
extern void Wrapper_compact_print_mode_set(int flag);
|
|
extern void Wrapper_pretty_print(String *str, File *f);
|
|
extern void Wrapper_compact_print(String *str, File *f);
|
|
extern void Wrapper_print(Wrapper *w, File *f);
|
|
extern int Wrapper_add_local(Wrapper *w, const String_or_char *name, const String_or_char *decl);
|
|
extern int Wrapper_add_localv(Wrapper *w, const String_or_char *name, ...);
|
|
extern int Wrapper_check_local(Wrapper *w, const String_or_char *name);
|
|
extern char *Wrapper_new_local(Wrapper *w, const String_or_char *name, const String_or_char *decl);
|
|
extern char *Wrapper_new_localv(Wrapper *w, const String_or_char *name, ...);
|