Added correct (I hope) typechecking for native scripting objects

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4821 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Luigi Ballabio 2003-05-22 13:01:44 +00:00
commit 418ed3416b
3 changed files with 7 additions and 4 deletions

View file

@ -372,14 +372,15 @@
%typemap(constant) SWIGTYPE (CLASS::*) "rb_define_const($module, \"$symname\", SWIG_NewPackedObj((void *) &$1, sizeof($type), $1_descriptor));";
/* ------------------------------------------------------------
* typedef & typemaps for VALUE (passed through unmodified)
* ------------------------------------------------------------ */
/* ---------------------------------------------------------------------
* typedef & typemaps for VALUE (passed through unmodified and unchecked)
* --------------------------------------------------------------------- */
typedef unsigned long VALUE;
%typemap(ruby,in) VALUE "$1 = $input;";
%typemap(ruby,out) VALUE "$result = $1;";
%typecheck(SWIG_TYPECHECK_POINTER) VALUE "$1 = 1;";
/* ------------------------------------------------------------
* String & length