+2.006 - 8th September 2003
+
+ * call_(pv|sv|method|argv) added
+ * still compiler-warnings for grok_??? and 5.6.x, fixed
+
2.005 - 2nd September 2003
* Some tweaks to grok_(hex|oct|bin) to make compiler warnings
aTHX_
AvFILLp
boolSV(b)
+ call_argv
+ call_method
+ call_pv
+ call_sv
DEFSV
dMY_CXT
dMY_CXT_SV
use strict;
use vars qw( $VERSION @ISA @EXPORT @EXPORT_OK $data );
-$VERSION = "2.005";
+$VERSION = "2.006";
@ISA = qw(Exporter DynaLoader);
@EXPORT = qw();
# define get_hv(name,create) perl_get_hv(name,create)
#endif
+#ifndef call_argv
+# define call_argv perl_call_argv
+#endif
+
+#ifndef call_method
+# define call_method perl_call_method
+#endif
+
+#ifndef call_pv
+# define call_pv perl_call_pv
+#endif
+
+#ifndef call_sv
+# define call_sv perl_call_sv
+#endif
+
#ifndef PERL_SCAN_GREATER_THAN_UV_MAX
# define PERL_SCAN_GREATER_THAN_UV_MAX 0x02
#endif
# define PERL_SCAN_DISALLOW_PREFIX 0x02
#endif
-#if (PERL_VERSION > 6)
+#if (PERL_VERSION >= 6)
#define I32_CAST
#else
#define I32_CAST (I32*)