sed -i "s/\(const \)\?String_or_char \*/const_String_or_char_ptr /g" CParse/* Include/* Modules/* Preprocessor/* Swig/* This is a preparation for moving to new DOH, since for strong typed objects we need the const_String_or_char_ptr class to implicit convert to and from String * or const char *. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11080 626c5289-ae23-0410-ae9c-e8d60b6d4f22
29 lines
1.1 KiB
C
29 lines
1.1 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.
|
|
*
|
|
* swigparm.h
|
|
*
|
|
* Functions related to the handling of function/method parameters and
|
|
* parameter lists.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
/* $Id: swig.h 9629 2006-12-30 18:27:47Z beazley $ */
|
|
|
|
/* Individual parameters */
|
|
extern Parm *NewParm(SwigType *type, const_String_or_char_ptr name);
|
|
extern Parm *CopyParm(Parm *p);
|
|
|
|
/* Parameter lists */
|
|
extern ParmList *CopyParmList(ParmList *);
|
|
extern ParmList *CopyParmListMax(ParmList *, int count);
|
|
extern int ParmList_len(ParmList *);
|
|
extern int ParmList_numrequired(ParmList *);
|
|
extern int ParmList_has_defaultargs(ParmList *p);
|
|
|
|
/* Output functions */
|
|
extern String *ParmList_str(ParmList *);
|
|
extern String *ParmList_str_defaultargs(ParmList *);
|
|
extern String *ParmList_protostr(ParmList *);
|
|
|
|
|