summaryrefslogtreecommitdiff
path: root/subversion/bindings/swig/perl/native/svn_wc.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/bindings/swig/perl/native/svn_wc.c')
-rw-r--r--subversion/bindings/swig/perl/native/svn_wc.c4437
1 files changed, 1627 insertions, 2810 deletions
diff --git a/subversion/bindings/swig/perl/native/svn_wc.c b/subversion/bindings/swig/perl/native/svn_wc.c
index c7e723b..d5ea25f 100644
--- a/subversion/bindings/swig/perl/native/svn_wc.c
+++ b/subversion/bindings/swig/perl/native/svn_wc.c
@@ -1,11 +1,11 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.9
- *
- * This file is not intended to be easily readable and contains a number of
+ * Version 2.0.12
+ *
+ * This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make
- * changes to this file unless you know what you are doing--modify the SWIG
- * interface file instead.
+ * changes to this file unless you know what you are doing--modify the SWIG
+ * interface file instead.
* ----------------------------------------------------------------------------- */
#define SWIGPERL
@@ -42,28 +42,28 @@
#ifndef SWIGUNUSED
# if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
-# define SWIGUNUSED __attribute__ ((__unused__))
+# define SWIGUNUSED __attribute__ ((__unused__))
# else
# define SWIGUNUSED
# endif
# elif defined(__ICC)
-# define SWIGUNUSED __attribute__ ((__unused__))
+# define SWIGUNUSED __attribute__ ((__unused__))
# else
-# define SWIGUNUSED
+# define SWIGUNUSED
# endif
#endif
#ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */
-# endif
+# endif
#endif
#ifndef SWIGUNUSEDPARM
# ifdef __cplusplus
# define SWIGUNUSEDPARM(p)
# else
-# define SWIGUNUSEDPARM(p) p SWIGUNUSED
+# define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif
#endif
@@ -106,7 +106,7 @@
# define SWIGSTDCALL __stdcall
# else
# define SWIGSTDCALL
-# endif
+# endif
#endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */
@@ -144,7 +144,7 @@
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
creating a static or dynamic library from the SWIG runtime code.
In 99.9% of the cases, SWIG just needs to declare them as 'static'.
-
+
But only do this if strictly necessary, ie, if you have problems
with your compiler or suchlike.
*/
@@ -170,16 +170,16 @@
#define SWIG_POINTER_OWN 0x1
-/*
+/*
Flags/methods for returning states.
-
- The SWIG conversion methods, as ConvertPtr, return an integer
+
+ The SWIG conversion methods, as ConvertPtr, return an integer
that tells if the conversion was successful or not. And if not,
an error code can be returned (see swigerrors.swg for the codes).
-
+
Use the following macros/flags to set or process the returning
states.
-
+
In old versions of SWIG, code such as the following was usually written:
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
@@ -212,23 +212,23 @@
} else {
// fail code
}
-
+
I.e., now SWIG_ConvertPtr can return new objects and you can
identify the case and take care of the deallocation. Of course that
also requires SWIG_ConvertPtr to return new result values, such as
- int SWIG_ConvertPtr(obj, ptr,...) {
- if (<obj is ok>) {
- if (<need new object>) {
- *ptr = <ptr to new allocated object>;
- return SWIG_NEWOBJ;
- } else {
- *ptr = <ptr to old object>;
- return SWIG_OLDOBJ;
- }
- } else {
- return SWIG_BADOBJ;
- }
+ int SWIG_ConvertPtr(obj, ptr,...) {
+ if (<obj is ok>) {
+ if (<need new object>) {
+ *ptr = <ptr to new allocated object>;
+ return SWIG_NEWOBJ;
+ } else {
+ *ptr = <ptr to old object>;
+ return SWIG_OLDOBJ;
+ }
+ } else {
+ return SWIG_BADOBJ;
+ }
}
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
@@ -242,17 +242,17 @@
int fooi(int);
and you call
-
+
food(1) // cast rank '1' (1 -> 1.0)
fooi(1) // cast rank '0'
just use the SWIG_AddCast()/SWIG_CheckState()
*/
-#define SWIG_OK (0)
+#define SWIG_OK (0)
#define SWIG_ERROR (-1)
#define SWIG_IsOK(r) (r >= 0)
-#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
+#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
/* The CastRankLimit says how many bits are used for the cast rank */
#define SWIG_CASTRANKLIMIT (1 << 8)
@@ -283,14 +283,14 @@
# endif
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
-SWIGINTERNINLINE int SWIG_AddCast(int r) {
+SWIGINTERNINLINE int SWIG_AddCast(int r) {
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
}
-SWIGINTERNINLINE int SWIG_CheckState(int r) {
- return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
+SWIGINTERNINLINE int SWIG_CheckState(int r) {
+ return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
}
#else /* no cast-rank mode */
-# define SWIG_AddCast
+# define SWIG_AddCast(r) (r)
# define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
#endif
@@ -334,7 +334,7 @@ typedef struct swig_module_info {
void *clientdata; /* Language specific module data */
} swig_module_info;
-/*
+/*
Compare two type names skipping the space characters, therefore
"char*" == "char *" and "Class<int>" == "Class<int >", etc.
@@ -354,18 +354,18 @@ SWIG_TypeNameComp(const char *f1, const char *l1,
/*
Check type equivalence in a name list like <name1>|<name2>|...
- Return 0 if not equal, 1 if equal
+ Return 0 if equal, -1 if nb < tb, 1 if nb > tb
*/
SWIGRUNTIME int
-SWIG_TypeEquiv(const char *nb, const char *tb) {
- int equiv = 0;
+SWIG_TypeCmp(const char *nb, const char *tb) {
+ int equiv = 1;
const char* te = tb + strlen(tb);
const char* ne = nb;
- while (!equiv && *ne) {
+ while (equiv != 0 && *ne) {
for (nb = ne; *ne; ++ne) {
if (*ne == '|') break;
}
- equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
+ equiv = SWIG_TypeNameComp(nb, ne, tb, te);
if (*ne) ++ne;
}
return equiv;
@@ -373,24 +373,13 @@ SWIG_TypeEquiv(const char *nb, const char *tb) {
/*
Check type equivalence in a name list like <name1>|<name2>|...
- Return 0 if equal, -1 if nb < tb, 1 if nb > tb
+ Return 0 if not equal, 1 if equal
*/
SWIGRUNTIME int
-SWIG_TypeCompare(const char *nb, const char *tb) {
- int equiv = 0;
- const char* te = tb + strlen(tb);
- const char* ne = nb;
- while (!equiv && *ne) {
- for (nb = ne; *ne; ++ne) {
- if (*ne == '|') break;
- }
- equiv = (SWIG_TypeNameComp(nb, ne, tb, te) == 0) ? 1 : 0;
- if (*ne) ++ne;
- }
- return equiv;
+SWIG_TypeEquiv(const char *nb, const char *tb) {
+ return SWIG_TypeCmp(nb, tb) == 0 ? 1 : 0;
}
-
/*
Check the typename
*/
@@ -418,7 +407,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
return 0;
}
-/*
+/*
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
*/
SWIGRUNTIME swig_cast_info *
@@ -453,7 +442,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
}
-/*
+/*
Dynamic pointer casting. Down an inheritance hierarchy
*/
SWIGRUNTIME swig_type_info *
@@ -497,7 +486,7 @@ SWIG_TypePrettyName(const swig_type_info *type) {
return type->name;
}
-/*
+/*
Set the clientdata field for a type
*/
SWIGRUNTIME void
@@ -505,14 +494,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
swig_cast_info *cast = ti->cast;
/* if (ti->clientdata == clientdata) return; */
ti->clientdata = clientdata;
-
+
while (cast) {
if (!cast->converter) {
swig_type_info *tc = cast->type;
if (!tc->clientdata) {
SWIG_TypeClientData(tc, clientdata);
}
- }
+ }
cast = cast->next;
}
}
@@ -521,18 +510,18 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
SWIG_TypeClientData(ti, clientdata);
ti->owndata = 1;
}
-
+
/*
Search for a swig_type_info structure only by mangled name
Search is a O(log #types)
-
- We start searching at module start, and finish searching when start == end.
+
+ We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around
the circular list.
*/
SWIGRUNTIME swig_type_info *
-SWIG_MangledTypeQueryModule(swig_module_info *start,
- swig_module_info *end,
+SWIG_MangledTypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
const char *name) {
swig_module_info *iter = start;
do {
@@ -541,11 +530,11 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
register size_t r = iter->size - 1;
do {
/* since l+r >= 0, we can (>> 1) instead (/ 2) */
- register size_t i = (l + r) >> 1;
+ register size_t i = (l + r) >> 1;
const char *iname = iter->types[i]->name;
if (iname) {
register int compare = strcmp(name, iname);
- if (compare == 0) {
+ if (compare == 0) {
return iter->types[i];
} else if (compare < 0) {
if (i) {
@@ -570,14 +559,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
Search for a swig_type_info structure for either a mangled name or a human readable name.
It first searches the mangled names of the types, which is a O(log #types)
If a type is not found it then searches the human readable names, which is O(#types).
-
- We start searching at module start, and finish searching when start == end.
+
+ We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around
the circular list.
*/
SWIGRUNTIME swig_type_info *
-SWIG_TypeQueryModule(swig_module_info *start,
- swig_module_info *end,
+SWIG_TypeQueryModule(swig_module_info *start,
+ swig_module_info *end,
const char *name) {
/* STEP 1: Search the name field using binary search */
swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
@@ -596,12 +585,12 @@ SWIG_TypeQueryModule(swig_module_info *start,
iter = iter->next;
} while (iter != end);
}
-
+
/* neither found a match */
return 0;
}
-/*
+/*
Pack binary data into a string
*/
SWIGRUNTIME char *
@@ -617,7 +606,7 @@ SWIG_PackData(char *c, void *ptr, size_t sz) {
return c;
}
-/*
+/*
Unpack binary data from a string
*/
SWIGRUNTIME const char *
@@ -631,21 +620,21 @@ SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
uu = ((d - '0') << 4);
else if ((d >= 'a') && (d <= 'f'))
uu = ((d - ('a'-10)) << 4);
- else
+ else
return (char *) 0;
d = *(c++);
if ((d >= '0') && (d <= '9'))
uu |= (d - '0');
else if ((d >= 'a') && (d <= 'f'))
uu |= (d - ('a'-10));
- else
+ else
return (char *) 0;
*u = uu;
}
return c;
}
-/*
+/*
Pack 'void *' into a string buffer.
*/
SWIGRUNTIME char *
@@ -705,18 +694,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
#endif
/* Errors in SWIG */
-#define SWIG_UnknownError -1
-#define SWIG_IOError -2
-#define SWIG_RuntimeError -3
-#define SWIG_IndexError -4
-#define SWIG_TypeError -5
-#define SWIG_DivisionByZero -6
-#define SWIG_OverflowError -7
-#define SWIG_SyntaxError -8
-#define SWIG_ValueError -9
+#define SWIG_UnknownError -1
+#define SWIG_IOError -2
+#define SWIG_RuntimeError -3
+#define SWIG_IndexError -4
+#define SWIG_TypeError -5
+#define SWIG_DivisionByZero -6
+#define SWIG_OverflowError -7
+#define SWIG_SyntaxError -8
+#define SWIG_ValueError -9
#define SWIG_SystemError -10
#define SWIG_AttributeError -11
-#define SWIG_MemoryError -12
+#define SWIG_MemoryError -12
#define SWIG_NullReferenceError -13
@@ -1684,7 +1673,7 @@ static swig_module_info swig_module = {swig_types, 179, 0, 0, 0, 0};
#define SWIG_name "SVN::_Wc::boot_SVN___Wc"
#define SWIG_prefix "SVN::_Wc::"
-#define SWIGVERSION 0x020009
+#define SWIGVERSION 0x020012
#define SWIG_VERSION SWIGVERSION
@@ -2403,9 +2392,11 @@ XS(_wrap_svn_wc_context_create) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 1) || (items > 3)) {
@@ -2537,16 +2528,16 @@ XS(_wrap_svn_wc_adm_open3) {
int ecode4 = 0 ;
int val5 ;
int ecode5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_adm_open3(associated,path,write_lock,levels_to_lock,cancel_func,cancel_baton,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -2570,16 +2561,10 @@ XS(_wrap_svn_wc_adm_open3) {
}
arg5 = (int)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_adm_open3" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(4);
}
- res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_adm_open3" "', argument " "7"" of type '" "void *""'");
- }
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -2613,8 +2598,6 @@ XS(_wrap_svn_wc_adm_open3) {
-
-
XSRETURN(argvi);
fail:
@@ -2623,8 +2606,6 @@ XS(_wrap_svn_wc_adm_open3) {
-
-
SWIG_croak_null();
}
}
@@ -2655,6 +2636,7 @@ XS(_wrap_svn_wc_adm_open2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -2752,6 +2734,7 @@ XS(_wrap_svn_wc_adm_open) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -2845,16 +2828,16 @@ XS(_wrap_svn_wc_adm_probe_open3) {
int ecode4 = 0 ;
int val5 ;
int ecode5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_adm_probe_open3(associated,path,write_lock,levels_to_lock,cancel_func,cancel_baton,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -2878,16 +2861,10 @@ XS(_wrap_svn_wc_adm_probe_open3) {
}
arg5 = (int)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_adm_probe_open3" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_adm_probe_open3" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(4);
}
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -2921,8 +2898,6 @@ XS(_wrap_svn_wc_adm_probe_open3) {
-
-
XSRETURN(argvi);
fail:
@@ -2931,8 +2906,6 @@ XS(_wrap_svn_wc_adm_probe_open3) {
-
-
SWIG_croak_null();
}
}
@@ -2963,6 +2936,7 @@ XS(_wrap_svn_wc_adm_probe_open2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -3060,6 +3034,7 @@ XS(_wrap_svn_wc_adm_probe_open) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -3154,18 +3129,18 @@ XS(_wrap_svn_wc_adm_open_anchor) {
int ecode5 = 0 ;
int val6 ;
int ecode6 = 0 ;
- int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 5) || (items > 6)) {
+ if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_adm_open_anchor(path,write_lock,levels_to_lock,cancel_func,cancel_baton,pool);");
}
res4 = SWIG_AsCharPtrAndSize(ST(0), &buf4, NULL, &alloc4);
@@ -3184,16 +3159,10 @@ XS(_wrap_svn_wc_adm_open_anchor) {
}
arg6 = (int)(val6);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg7), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_adm_open_anchor" "', argument " "7"" of type '" "svn_cancel_func_t""'");
- }
+ arg7 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg8 = ST(3);
}
- res8 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg8), 0, 0);
- if (!SWIG_IsOK(res8)) {
- SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_adm_open_anchor" "', argument " "8"" of type '" "void *""'");
- }
- if (items > 5) {
+ if (items > 4) {
}
{
@@ -3238,8 +3207,6 @@ XS(_wrap_svn_wc_adm_open_anchor) {
-
-
XSRETURN(argvi);
fail:
@@ -3249,8 +3216,6 @@ XS(_wrap_svn_wc_adm_open_anchor) {
-
-
SWIG_croak_null();
}
}
@@ -3275,6 +3240,7 @@ XS(_wrap_svn_wc_adm_retrieve) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -3352,6 +3318,7 @@ XS(_wrap_svn_wc_adm_probe_retrieve) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -3431,16 +3398,16 @@ XS(_wrap_svn_wc_adm_probe_try3) {
int ecode4 = 0 ;
int val5 ;
int ecode5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_adm_probe_try3(associated,path,write_lock,levels_to_lock,cancel_func,cancel_baton,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -3464,16 +3431,10 @@ XS(_wrap_svn_wc_adm_probe_try3) {
}
arg5 = (int)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_adm_probe_try3" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_adm_probe_try3" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(4);
}
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -3507,8 +3468,6 @@ XS(_wrap_svn_wc_adm_probe_try3) {
-
-
XSRETURN(argvi);
fail:
@@ -3517,8 +3476,6 @@ XS(_wrap_svn_wc_adm_probe_try3) {
-
-
SWIG_croak_null();
}
}
@@ -3549,6 +3506,7 @@ XS(_wrap_svn_wc_adm_probe_try2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -3646,6 +3604,7 @@ XS(_wrap_svn_wc_adm_probe_try) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -3731,6 +3690,7 @@ XS(_wrap_svn_wc_adm_close2) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_adm_close2(adm_access,scratch_pool);");
@@ -3946,6 +3906,7 @@ XS(_wrap_svn_wc_locked2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -4033,6 +3994,7 @@ XS(_wrap_svn_wc_locked) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 1) || (items > 2)) {
@@ -4101,6 +4063,7 @@ XS(_wrap_svn_wc_is_adm_dir) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_is_adm_dir(name,pool);");
@@ -4141,6 +4104,7 @@ XS(_wrap_svn_wc_get_adm_dir) {
{
_global_pool = arg1 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 0) || (items > 1)) {
SWIG_croak("Usage: svn_wc_get_adm_dir(pool);");
@@ -4178,6 +4142,7 @@ XS(_wrap_svn_wc_set_adm_dir) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_set_adm_dir(name,pool);");
@@ -4233,6 +4198,7 @@ XS(_wrap_svn_wc_init_traversal_info) {
{
_global_pool = arg1 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 0) || (items > 1)) {
SWIG_croak("Usage: svn_wc_init_traversal_info(pool);");
@@ -4515,6 +4481,7 @@ XS(_wrap_svn_wc_external_item2_t_revision_set) {
void *argp1 = 0 ;
int res1 = 0 ;
svn_opt_revision_t rev2 ;
+ apr_pool_t *_global_pool = NULL ;
int argvi = 0;
dXSARGS;
@@ -4527,7 +4494,11 @@ XS(_wrap_svn_wc_external_item2_t_revision_set) {
}
arg1 = (struct svn_wc_external_item2_t *)(argp1);
{
- arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE, _global_pool);
}
if (arg1) (arg1)->revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -4577,6 +4548,7 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_set) {
void *argp1 = 0 ;
int res1 = 0 ;
svn_opt_revision_t rev2 ;
+ apr_pool_t *_global_pool = NULL ;
int argvi = 0;
dXSARGS;
@@ -4589,7 +4561,11 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_set) {
}
arg1 = (struct svn_wc_external_item2_t *)(argp1);
{
- arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE, _global_pool);
}
if (arg1) (arg1)->peg_revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -4699,6 +4675,7 @@ XS(_wrap_svn_wc_external_item2_create) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 0) || (items > 1)) {
@@ -4755,6 +4732,7 @@ XS(_wrap_svn_wc_external_item_create) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 0) || (items > 1)) {
@@ -4812,6 +4790,7 @@ XS(_wrap_svn_wc_external_item2_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_external_item2_dup(item,pool);");
@@ -4995,6 +4974,7 @@ XS(_wrap_svn_wc_external_item_t_revision_set) {
void *argp1 = 0 ;
int res1 = 0 ;
svn_opt_revision_t rev2 ;
+ apr_pool_t *_global_pool = NULL ;
int argvi = 0;
dXSARGS;
@@ -5007,7 +4987,11 @@ XS(_wrap_svn_wc_external_item_t_revision_set) {
}
arg1 = (struct svn_wc_external_item_t *)(argp1);
{
- arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE, _global_pool);
}
if (arg1) (arg1)->revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -5118,6 +5102,7 @@ XS(_wrap_svn_wc_external_item_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_external_item_dup(item,pool);");
@@ -5171,10 +5156,11 @@ XS(_wrap_svn_wc_parse_externals_description3) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
- SWIG_croak("Usage: svn_wc_parse_externals_description3(parent_directory,desc,canonicalize_url,pool);");
+ SWIG_croak("Usage: svn_wc_parse_externals_description3(defining_directory,desc,canonicalize_url,pool);");
}
res2 = SWIG_AsCharPtrAndSize(ST(0), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
@@ -5257,6 +5243,7 @@ XS(_wrap_svn_wc_parse_externals_description2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -5336,6 +5323,7 @@ XS(_wrap_svn_wc_parse_externals_description) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -7024,6 +7012,7 @@ XS(_wrap_svn_wc_create_notify) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_create_notify(path,action,pool);");
@@ -7078,6 +7067,7 @@ XS(_wrap_svn_wc_create_notify_url) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_create_notify_url(url,action,pool);");
@@ -7128,6 +7118,7 @@ XS(_wrap_svn_wc_dup_notify) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_dup_notify(notify,pool);");
@@ -7590,6 +7581,7 @@ XS(_wrap_svn_wc_conflict_version_create2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_conflict_version_create2(repos_root_url,repos_uuid,repos_relpath,revision,kind,result_pool);");
@@ -7672,6 +7664,7 @@ XS(_wrap_svn_wc_conflict_version_create) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_conflict_version_create(repos_url,path_in_repos,peg_rev,node_kind,pool);");
@@ -7736,6 +7729,7 @@ XS(_wrap_svn_wc_conflict_version_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_conflict_version_dup(version,pool);");
@@ -7766,1092 +7760,6 @@ XS(_wrap_svn_wc_conflict_version_dup) {
}
-XS(_wrap_svn_wc_conflict_description2_t_local_abspath_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_local_abspath_set(self,local_abspath);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_local_abspath_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->local_abspath) free((char *)arg1->local_abspath);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->local_abspath = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_local_abspath_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_local_abspath_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->local_abspath);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_node_kind_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_node_kind_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_node_kind_set(self,node_kind);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_node_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
- }
- arg2 = (svn_node_kind_t)(val2);
- if (arg1) (arg1)->node_kind = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_node_kind_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_node_kind_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_node_kind_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_node_kind_t) ((arg1)->node_kind);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_kind_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_conflict_kind_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_kind_set(self,kind);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_kind_set" "', argument " "2"" of type '" "svn_wc_conflict_kind_t""'");
- }
- arg2 = (svn_wc_conflict_kind_t)(val2);
- if (arg1) (arg1)->kind = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_kind_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_kind_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_kind_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_conflict_kind_t) ((arg1)->kind);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_property_name_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_property_name_set(self,property_name);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_property_name_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->property_name) free((char *)arg1->property_name);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->property_name = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_property_name_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_property_name_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->property_name);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_is_binary_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_boolean_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_is_binary_set(self,is_binary);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_is_binary_set" "', argument " "2"" of type '" "svn_boolean_t""'");
- }
- arg2 = (svn_boolean_t)(val2);
- if (arg1) (arg1)->is_binary = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_is_binary_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_boolean_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_is_binary_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_boolean_t) ((arg1)->is_binary);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_mime_type_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_mime_type_set(self,mime_type);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_mime_type_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->mime_type) free((char *)arg1->mime_type);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->mime_type = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_mime_type_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_mime_type_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->mime_type);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_action_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_conflict_action_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_action_set(self,action);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_action_set" "', argument " "2"" of type '" "svn_wc_conflict_action_t""'");
- }
- arg2 = (svn_wc_conflict_action_t)(val2);
- if (arg1) (arg1)->action = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_action_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_action_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_action_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_conflict_action_t) ((arg1)->action);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_reason_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_conflict_reason_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_reason_set(self,reason);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_reason_set" "', argument " "2"" of type '" "svn_wc_conflict_reason_t""'");
- }
- arg2 = (svn_wc_conflict_reason_t)(val2);
- if (arg1) (arg1)->reason = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_reason_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_reason_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_reason_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_conflict_reason_t) ((arg1)->reason);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_base_abspath_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_base_abspath_set(self,base_abspath);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_base_abspath_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->base_abspath) free((char *)arg1->base_abspath);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->base_abspath = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_base_abspath_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_base_abspath_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->base_abspath);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_their_abspath_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_their_abspath_set(self,their_abspath);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_their_abspath_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->their_abspath) free((char *)arg1->their_abspath);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->their_abspath = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_their_abspath_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_their_abspath_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->their_abspath);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_my_abspath_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_my_abspath_set(self,my_abspath);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_my_abspath_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->my_abspath) free((char *)arg1->my_abspath);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->my_abspath = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_my_abspath_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_my_abspath_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->my_abspath);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_merged_file_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- char *arg2 = (char *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_merged_file_set(self,merged_file);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_merged_file_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
- {
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->merged_file) free((char *)arg1->merged_file);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->merged_file = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_merged_file_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_merged_file_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (char *) ((arg1)->merged_file);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_operation_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_operation_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_operation_set(self,operation);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_operation_set" "', argument " "2"" of type '" "svn_wc_operation_t""'");
- }
- arg2 = (svn_wc_operation_t)(val2);
- if (arg1) (arg1)->operation = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_operation_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_operation_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_operation_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_operation_t) ((arg1)->operation);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_src_left_version_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- void *argp2 = 0 ;
- int res2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_src_left_version_set(self,src_left_version);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_src_left_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t const *""'");
- }
- arg2 = (svn_wc_conflict_version_t *)(argp2);
- if (arg1) (arg1)->src_left_version = (svn_wc_conflict_version_t const *)arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_src_left_version_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_version_t *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_src_left_version_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_conflict_version_t *) ((arg1)->src_left_version);
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_src_right_version_set) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- void *argp2 = 0 ;
- int res2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_src_right_version_set(self,src_right_version);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_src_right_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t const *""'");
- }
- arg2 = (svn_wc_conflict_version_t *)(argp2);
- if (arg1) (arg1)->src_right_version = (svn_wc_conflict_version_t const *)arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_description2_t_src_right_version_get) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_version_t *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_description2_t_src_right_version_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- result = (svn_wc_conflict_version_t *) ((arg1)->src_right_version);
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_new_svn_wc_conflict_description2_t) {
- {
- int argvi = 0;
- struct svn_wc_conflict_description2_t *result = 0 ;
- dXSARGS;
-
- if ((items < 0) || (items > 0)) {
- SWIG_croak("Usage: new_svn_wc_conflict_description2_t();");
- }
- {
- result = (struct svn_wc_conflict_description2_t *)calloc(1, sizeof(struct svn_wc_conflict_description2_t));
-
-
-
- }
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, SWIG_OWNER | SWIG_SHADOW); argvi++ ;
- XSRETURN(argvi);
- fail:
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_delete_svn_wc_conflict_description2_t) {
- {
- struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: delete_svn_wc_conflict_description2_t(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, SWIG_POINTER_DISOWN | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_description2_t" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
- }
- arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
- {
- free((char *) arg1);
-
-
-
- }
- ST(argvi) = sv_newmortal();
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
XS(_wrap_svn_wc_conflict_description_t_path_set) {
{
struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
@@ -10017,6 +8925,7 @@ XS(_wrap_svn_wc_conflict_description_create_text2) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_text2(local_abspath,result_pool);");
@@ -10035,7 +8944,7 @@ XS(_wrap_svn_wc_conflict_description_create_text2) {
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | SWIG_SHADOW); argvi++ ;
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0); argvi++ ;
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
XSRETURN(argvi);
@@ -10064,6 +8973,7 @@ XS(_wrap_svn_wc_conflict_description_create_text) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_text(path,adm_access,pool);");
@@ -10122,6 +9032,7 @@ XS(_wrap_svn_wc_conflict_description_create_prop2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_prop2(local_abspath,node_kind,property_name,result_pool);");
@@ -10150,7 +9061,7 @@ XS(_wrap_svn_wc_conflict_description_create_prop2) {
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | SWIG_SHADOW); argvi++ ;
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0); argvi++ ;
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
@@ -10190,6 +9101,7 @@ XS(_wrap_svn_wc_conflict_description_create_prop) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_prop(path,adm_access,node_kind,property_name,pool);");
@@ -10267,6 +9179,7 @@ XS(_wrap_svn_wc_conflict_description_create_tree2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_tree2(local_abspath,node_kind,operation,src_left_version,src_right_version,result_pool);");
@@ -10305,7 +9218,7 @@ XS(_wrap_svn_wc_conflict_description_create_tree2) {
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | SWIG_SHADOW); argvi++ ;
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0); argvi++ ;
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -10354,6 +9267,7 @@ XS(_wrap_svn_wc_conflict_description_create_tree) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_conflict_description_create_tree(path,adm_access,node_kind,operation,src_left_version,src_right_version,pool);");
@@ -10419,7 +9333,7 @@ XS(_wrap_svn_wc_conflict_description_create_tree) {
}
-XS(_wrap_svn_wc__conflict_description2_dup) {
+XS(_wrap_svn_wc_conflict_description2_dup) {
{
svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
apr_pool_t *arg2 = (apr_pool_t *) 0 ;
@@ -10432,62 +9346,26 @@ XS(_wrap_svn_wc__conflict_description2_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
- SWIG_croak("Usage: svn_wc__conflict_description2_dup(conflict,result_pool);");
+ SWIG_croak("Usage: svn_wc_conflict_description2_dup(conflict,result_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc__conflict_description2_dup" "', argument " "1"" of type '" "svn_wc_conflict_description2_t const *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_dup" "', argument " "1"" of type '" "svn_wc_conflict_description2_t const *""'");
}
arg1 = (svn_wc_conflict_description2_t *)(argp1);
if (items > 1) {
}
{
- result = (svn_wc_conflict_description2_t *)svn_wc__conflict_description2_dup((struct svn_wc_conflict_description2_t const *)arg1,arg2);
+ result = (svn_wc_conflict_description2_t *)svn_wc_conflict_description2_dup((struct svn_wc_conflict_description2_t const *)arg1,arg2);
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | SWIG_SHADOW); argvi++ ;
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_result_t_choice_set) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- svn_wc_conflict_choice_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_choice_set(self,choice);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_result_t_choice_set" "', argument " "2"" of type '" "svn_wc_conflict_choice_t""'");
- }
- arg2 = (svn_wc_conflict_choice_t)(val2);
- if (arg1) (arg1)->choice = arg2;
- ST(argvi) = sv_newmortal();
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0); argvi++ ;
XSRETURN(argvi);
@@ -10499,222 +9377,45 @@ XS(_wrap_svn_wc_conflict_result_t_choice_set) {
}
-XS(_wrap_svn_wc_conflict_result_t_choice_get) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_wc_conflict_choice_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_choice_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- result = (svn_wc_conflict_choice_t) ((arg1)->choice);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_result_t_merged_file_set) {
+XS(_wrap_svn_wc__conflict_description2_dup) {
{
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- char *arg2 = (char *) 0 ;
+ svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ apr_pool_t *arg2 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
void *argp1 = 0 ;
int res1 = 0 ;
- int res2 ;
- char *buf2 = 0 ;
- int alloc2 = 0 ;
int argvi = 0;
+ svn_wc_conflict_description2_t *result = 0 ;
dXSARGS;
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_merged_file_set(self,merged_file);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
- if (!SWIG_IsOK(res2)) {
- SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_result_t_merged_file_set" "', argument " "2"" of type '" "char const *""'");
- }
- arg2 = (char *)(buf2);
{
- apr_size_t len = strlen(arg2) + 1;
- char *copied;
- if (arg1->merged_file) free((char *)arg1->merged_file);
- copied = malloc(len);
- memcpy(copied, arg2, len);
- arg1->merged_file = copied;
- }
- ST(argvi) = sv_newmortal();
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- XSRETURN(argvi);
- fail:
-
- if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_result_t_merged_file_get) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- char *result = 0 ;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_merged_file_get(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- result = (char *) ((arg1)->merged_file);
- ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_result_t_save_merged_set) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- svn_boolean_t arg2 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int val2 ;
- int ecode2 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 2) || (items > 2)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_save_merged_set(self,save_merged);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
+ _global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
- if (!SWIG_IsOK(ecode2)) {
- SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_result_t_save_merged_set" "', argument " "2"" of type '" "svn_boolean_t""'");
- }
- arg2 = (svn_boolean_t)(val2);
- if (arg1) (arg1)->save_merged = arg2;
- ST(argvi) = sv_newmortal();
-
-
- XSRETURN(argvi);
- fail:
-
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_svn_wc_conflict_result_t_save_merged_get) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- svn_boolean_t result;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: svn_wc_conflict_result_t_save_merged_get(self);");
+ if ((items < 1) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc__conflict_description2_dup(conflict,result_pool);");
}
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
- result = (svn_boolean_t) ((arg1)->save_merged);
- ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
-
- XSRETURN(argvi);
- fail:
-
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_new_svn_wc_conflict_result_t) {
- {
- int argvi = 0;
- struct svn_wc_conflict_result_t *result = 0 ;
- dXSARGS;
-
- if ((items < 0) || (items > 0)) {
- SWIG_croak("Usage: new_svn_wc_conflict_result_t();");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc__conflict_description2_dup" "', argument " "1"" of type '" "svn_wc_conflict_description2_t const *""'");
}
- {
- result = (struct svn_wc_conflict_result_t *)calloc(1, sizeof(struct svn_wc_conflict_result_t));
-
-
+ arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ if (items > 1) {
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_result_t, SWIG_OWNER | SWIG_SHADOW); argvi++ ;
- XSRETURN(argvi);
- fail:
- SWIG_croak_null();
- }
-}
-
-
-XS(_wrap_delete_svn_wc_conflict_result_t) {
- {
- struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
- void *argp1 = 0 ;
- int res1 = 0 ;
- int argvi = 0;
- dXSARGS;
-
- if ((items < 1) || (items > 1)) {
- SWIG_croak("Usage: delete_svn_wc_conflict_result_t(self);");
- }
- res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, SWIG_POINTER_DISOWN | 0 );
- if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_result_t" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
- }
- arg1 = (struct svn_wc_conflict_result_t *)(argp1);
{
- free((char *) arg1);
+ result = (svn_wc_conflict_description2_t *)svn_wc__conflict_description2_dup((struct svn_wc_conflict_description2_t const *)arg1,arg2);
}
- ST(argvi) = sv_newmortal();
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0); argvi++ ;
+
XSRETURN(argvi);
fail:
+
SWIG_croak_null();
}
}
@@ -10737,6 +9438,7 @@ XS(_wrap_svn_wc_create_conflict_result) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_create_conflict_result(choice,merged_file,pool);");
@@ -10760,7 +9462,7 @@ XS(_wrap_svn_wc_create_conflict_result) {
}
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_result_t, 0 | SWIG_SHADOW); argvi++ ;
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0); argvi++ ;
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -12870,6 +11572,7 @@ XS(_wrap_svn_wc_check_wc2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -12948,6 +11651,7 @@ XS(_wrap_svn_wc_check_wc) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
if ((items < 1) || (items > 2)) {
@@ -13022,6 +11726,7 @@ XS(_wrap_svn_wc_has_binary_prop) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -13106,6 +11811,7 @@ XS(_wrap_svn_wc_text_modified_p2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -13197,6 +11903,7 @@ XS(_wrap_svn_wc_text_modified_p) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -13285,6 +11992,7 @@ XS(_wrap_svn_wc_props_modified_p2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -13366,6 +12074,7 @@ XS(_wrap_svn_wc_props_modified_p) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -14654,10 +13363,9 @@ XS(_wrap_svn_wc_entry_t_text_time_get) {
arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->text_time);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -14724,10 +13432,9 @@ XS(_wrap_svn_wc_entry_t_prop_time_get) {
arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->prop_time);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -14932,10 +13639,9 @@ XS(_wrap_svn_wc_entry_t_cmt_date_get) {
arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->cmt_date);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -15292,10 +13998,9 @@ XS(_wrap_svn_wc_entry_t_lock_creation_date_get) {
arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->lock_creation_date);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -15711,10 +14416,9 @@ XS(_wrap_svn_wc_entry_t_working_size_get) {
arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->working_size);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -16008,6 +14712,7 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_set) {
void *argp1 = 0 ;
int res1 = 0 ;
svn_opt_revision_t rev2 ;
+ apr_pool_t *_global_pool = NULL ;
int argvi = 0;
dXSARGS;
@@ -16020,7 +14725,11 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_set) {
}
arg1 = (struct svn_wc_entry_t *)(argp1);
{
- arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE, _global_pool);
}
if (arg1) (arg1)->file_external_peg_rev = *arg2;
ST(argvi) = sv_newmortal();
@@ -16070,6 +14779,7 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_set) {
void *argp1 = 0 ;
int res1 = 0 ;
svn_opt_revision_t rev2 ;
+ apr_pool_t *_global_pool = NULL ;
int argvi = 0;
dXSARGS;
@@ -16082,7 +14792,11 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_set) {
}
arg1 = (struct svn_wc_entry_t *)(argp1);
{
- arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE, _global_pool);
}
if (arg1) (arg1)->file_external_rev = *arg2;
ST(argvi) = sv_newmortal();
@@ -16202,6 +14916,7 @@ XS(_wrap_svn_wc_entry) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -16285,6 +15000,7 @@ XS(_wrap_svn_wc_entries_read) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -16356,6 +15072,7 @@ XS(_wrap_svn_wc_entry_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_entry_dup(entry,pool);");
@@ -16846,10 +15563,9 @@ XS(_wrap_svn_wc_info_t_recorded_size_get) {
arg1 = (struct svn_wc_info_t *)(argp1);
result = ((arg1)->recorded_size);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -16916,10 +15632,9 @@ XS(_wrap_svn_wc_info_t_recorded_time_get) {
arg1 = (struct svn_wc_info_t *)(argp1);
result = ((arg1)->recorded_time);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -17282,6 +15997,7 @@ XS(_wrap_svn_wc_info_dup) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_info_dup(info,pool);");
@@ -17338,6 +16054,7 @@ XS(_wrap_svn_wc_conflicted_p3) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -17443,6 +16160,7 @@ XS(_wrap_svn_wc_conflicted_p2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -17545,6 +16263,7 @@ XS(_wrap_svn_wc_conflicted_p) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -17637,6 +16356,7 @@ XS(_wrap_svn_wc_get_ancestry) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -18034,15 +16754,15 @@ XS(_wrap_svn_wc_walk_entries3) {
int ecode5 = 0 ;
int val6 ;
int ecode6 = 0 ;
- int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_walk_entries3(path,adm_access,walk_callbacks,walk_baton,depth,show_hidden,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -18075,16 +16795,10 @@ XS(_wrap_svn_wc_walk_entries3) {
}
arg6 = (svn_boolean_t)(val6);
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_walk_entries3" "', argument " "7"" of type '" "svn_cancel_func_t""'");
- }
+ arg7 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg8 = ST(6);
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
- if (!SWIG_IsOK(res8)) {
- SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_walk_entries3" "', argument " "8"" of type '" "void *""'");
- }
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -18116,8 +16830,6 @@ XS(_wrap_svn_wc_walk_entries3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -18127,8 +16839,6 @@ XS(_wrap_svn_wc_walk_entries3) {
-
-
SWIG_croak_null();
}
}
@@ -18155,15 +16865,15 @@ XS(_wrap_svn_wc_walk_entries2) {
int res4 ;
int val5 ;
int ecode5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_walk_entries2(path,adm_access,walk_callbacks,walk_baton,show_hidden,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -18191,16 +16901,10 @@ XS(_wrap_svn_wc_walk_entries2) {
}
arg5 = (svn_boolean_t)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_walk_entries2" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_walk_entries2" "', argument " "7"" of type '" "void *""'");
- }
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -18231,8 +16935,6 @@ XS(_wrap_svn_wc_walk_entries2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -18241,8 +16943,6 @@ XS(_wrap_svn_wc_walk_entries2) {
-
-
SWIG_croak_null();
}
}
@@ -18273,6 +16973,7 @@ XS(_wrap_svn_wc_walk_entries) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_walk_entries(path,adm_access,walk_callbacks,walk_baton,show_hidden,pool);");
@@ -18362,6 +17063,7 @@ XS(_wrap_svn_wc_mark_missing_deleted) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_mark_missing_deleted(path,parent,pool);");
@@ -18449,6 +17151,7 @@ XS(_wrap_svn_wc_ensure_adm4) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_ensure_adm4(wc_ctx,local_abspath,url,repos_root_url,repos_uuid,revision,depth,scratch_pool);");
@@ -18568,6 +17271,7 @@ XS(_wrap_svn_wc_ensure_adm3) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_ensure_adm3(path,uuid,url,repos,revision,depth,pool);");
@@ -18677,6 +17381,7 @@ XS(_wrap_svn_wc_ensure_adm2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_ensure_adm2(path,uuid,url,repos,revision,pool);");
@@ -18775,6 +17480,7 @@ XS(_wrap_svn_wc_ensure_adm) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_ensure_adm(path,uuid,url,revision,pool);");
@@ -18862,6 +17568,7 @@ XS(_wrap_svn_wc_maybe_set_repos_root) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_maybe_set_repos_root(adm_access,path,repos,pool);");
@@ -19107,10 +17814,9 @@ XS(_wrap_svn_wc_status3_t_filesize_get) {
arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->filesize);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -19697,10 +18403,9 @@ XS(_wrap_svn_wc_status3_t_changed_date_get) {
arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->changed_date);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -20717,10 +19422,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_date_get) {
arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->ood_changed_date);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -21015,6 +19719,71 @@ XS(_wrap_svn_wc_status3_t_file_external_get) {
}
+XS(_wrap_svn_wc_status3_t_actual_kind_set) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ svn_node_kind_t arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_status3_t_actual_kind_set(self,actual_kind);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_actual_kind_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_actual_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
+ }
+ arg2 = (svn_node_kind_t)(val2);
+ if (arg1) (arg1)->actual_kind = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_actual_kind_get) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_node_kind_t result;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_status3_t_actual_kind_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_actual_kind_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ result = (svn_node_kind_t) ((arg1)->actual_kind);
+ ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_new_svn_wc_status3_t) {
{
int argvi = 0;
@@ -21849,10 +20618,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_get) {
arg1 = (struct svn_wc_status2_t *)(argp1);
result = ((arg1)->ood_last_cmt_date);
{
- char temp[256];
+ char temp[30];
sprintf(temp, "%" APR_INT64_T_FMT, (apr_int64_t) result);
- ST(argvi) = sv_newmortal();
- sv_setpv((SV*)ST(argvi++), temp);
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = sv_2mortal(newSVpv(temp, 0)); argvi++ ;
}
XSRETURN(argvi);
@@ -22904,6 +21672,7 @@ XS(_wrap_svn_wc_dup_status3) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_dup_status3(orig_stat,pool);");
@@ -22947,6 +21716,7 @@ XS(_wrap_svn_wc_dup_status2) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_dup_status2(orig_stat,pool);");
@@ -22990,6 +21760,7 @@ XS(_wrap_svn_wc_dup_status) {
{
_global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 1) || (items > 2)) {
SWIG_croak("Usage: svn_wc_dup_status(orig_stat,pool);");
@@ -23040,9 +21811,11 @@ XS(_wrap_svn_wc_status3) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 4)) {
@@ -23131,6 +21904,7 @@ XS(_wrap_svn_wc_status2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -23208,6 +21982,7 @@ XS(_wrap_svn_wc_status) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -23297,15 +22072,15 @@ XS(_wrap_svn_wc_walk_status) {
void *argp7 = 0 ;
int res7 = 0 ;
int res9 ;
- int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_walk_status(wc_ctx,local_abspath,depth,get_all,no_ignore,ignore_text_mods,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -23354,16 +22129,10 @@ XS(_wrap_svn_wc_walk_status) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_walk_status" "', argument " "9"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_walk_status" "', argument " "10"" of type '" "svn_cancel_func_t""'");
- }
+ arg10 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg11 = ST(9);
}
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
- if (!SWIG_IsOK(res11)) {
- SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_walk_status" "', argument " "11"" of type '" "void *""'");
- }
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -23398,8 +22167,6 @@ XS(_wrap_svn_wc_walk_status) {
-
-
XSRETURN(argvi);
fail:
@@ -23412,8 +22179,6 @@ XS(_wrap_svn_wc_walk_status) {
-
-
SWIG_croak_null();
}
}
@@ -23467,22 +22232,23 @@ XS(_wrap_svn_wc_get_status_editor5) {
void *argp13 = 0 ;
int res13 = 0 ;
int res15 ;
- int res17 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg18 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg19 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 13) || (items > 15)) {
+ if ((items < 12) || (items > 14)) {
SWIG_croak("Usage: svn_wc_get_status_editor5(wc_ctx,anchor_abspath,target_basename,depth,get_all,no_ignore,depth_as_sticky,server_performs_filtering,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,result_pool,scratch_pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -23541,19 +22307,13 @@ XS(_wrap_svn_wc_get_status_editor5) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor5" "', argument " "15"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(11), (void**)(&arg16), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor5" "', argument " "16"" of type '" "svn_cancel_func_t""'");
- }
- }
- res17 = SWIG_ConvertPtr(ST(12),SWIG_as_voidptrptr(&arg17), 0, 0);
- if (!SWIG_IsOK(res17)) {
- SWIG_exception_fail(SWIG_ArgError(res17), "in method '" "svn_wc_get_status_editor5" "', argument " "17"" of type '" "void *""'");
+ arg16 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg17 = ST(11);
}
- if (items > 13) {
+ if (items > 12) {
}
- if (items > 14) {
+ if (items > 13) {
}
{
@@ -23610,8 +22370,6 @@ XS(_wrap_svn_wc_get_status_editor5) {
-
-
XSRETURN(argvi);
fail:
@@ -23631,8 +22389,6 @@ XS(_wrap_svn_wc_get_status_editor5) {
-
-
SWIG_croak_null();
}
}
@@ -23675,7 +22431,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
int ecode9 = 0 ;
void *argp10 = 0 ;
int res10 = 0 ;
- int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
int argvi = 0;
@@ -23684,12 +22439,13 @@ XS(_wrap_svn_wc_get_status_editor4) {
{
_global_pool = arg16 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_status_editor4(anchor,target,depth,get_all,no_ignore,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -23723,25 +22479,19 @@ XS(_wrap_svn_wc_get_status_editor4) {
}
arg10 = (apr_array_header_t *)(argp10);
{
- arg11 = svn_swig_pl_status_func3;
+ arg11 = (svn_wc_status_func3_t) svn_swig_pl_status_func3;
arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor4" "', argument " "13"" of type '" "svn_cancel_func_t""'");
- }
- }
- res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
- if (!SWIG_IsOK(res14)) {
- SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor4" "', argument " "14"" of type '" "void *""'");
+ arg13 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg14 = ST(7);
}
- res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(8), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor4" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -23793,8 +22543,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -23809,8 +22557,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -23853,7 +22599,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
int ecode9 = 0 ;
void *argp10 = 0 ;
int res10 = 0 ;
- int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
int argvi = 0;
@@ -23862,12 +22607,13 @@ XS(_wrap_svn_wc_get_status_editor3) {
{
_global_pool = arg16 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_status_editor3(anchor,target,depth,get_all,no_ignore,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -23901,25 +22647,19 @@ XS(_wrap_svn_wc_get_status_editor3) {
}
arg10 = (apr_array_header_t *)(argp10);
{
- arg11 = svn_swig_pl_status_func2;
+ arg11 = (svn_wc_status_func2_t) svn_swig_pl_status_func2;
arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor3" "', argument " "13"" of type '" "svn_cancel_func_t""'");
- }
- }
- res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
- if (!SWIG_IsOK(res14)) {
- SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor3" "', argument " "14"" of type '" "void *""'");
+ arg13 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg14 = ST(7);
}
- res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(8), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor3" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -23971,8 +22711,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
-
-
XSRETURN(argvi);
fail:
@@ -23987,8 +22725,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
-
-
SWIG_croak_null();
}
}
@@ -24029,7 +22765,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
int ecode9 = 0 ;
int val10 ;
int ecode10 = 0 ;
- int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
int argvi = 0;
@@ -24038,12 +22773,13 @@ XS(_wrap_svn_wc_get_status_editor2) {
{
_global_pool = arg16 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_status_editor2(anchor,target,config,recurse,get_all,no_ignore,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -24076,25 +22812,19 @@ XS(_wrap_svn_wc_get_status_editor2) {
}
arg10 = (svn_boolean_t)(val10);
{
- arg11 = svn_swig_pl_status_func2;
+ arg11 = (svn_wc_status_func2_t) svn_swig_pl_status_func2;
arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor2" "', argument " "13"" of type '" "svn_cancel_func_t""'");
- }
+ arg13 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg14 = ST(7);
}
- res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
- if (!SWIG_IsOK(res14)) {
- SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor2" "', argument " "14"" of type '" "void *""'");
- }
- res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(8), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor2" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -24146,8 +22876,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
-
-
XSRETURN(argvi);
fail:
@@ -24162,8 +22890,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
-
-
SWIG_croak_null();
}
}
@@ -24202,7 +22928,6 @@ XS(_wrap_svn_wc_get_status_editor) {
int ecode8 = 0 ;
int val9 ;
int ecode9 = 0 ;
- int res13 ;
void *argp14 = 0 ;
int res14 = 0 ;
int argvi = 0;
@@ -24211,11 +22936,12 @@ XS(_wrap_svn_wc_get_status_editor) {
{
_global_pool = arg15 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_status_editor(anchor,target,config,recurse,get_all,no_ignore,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res4 = SWIG_ConvertPtr(ST(0), &argp4,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -24248,25 +22974,19 @@ XS(_wrap_svn_wc_get_status_editor) {
}
arg9 = (svn_boolean_t)(val9);
{
- arg10 = svn_swig_pl_status_func;
+ arg10 = (svn_wc_status_func_t) svn_swig_pl_status_func;
arg11 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg12), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor" "', argument " "12"" of type '" "svn_cancel_func_t""'");
- }
- }
- res13 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg13), 0, 0);
- if (!SWIG_IsOK(res13)) {
- SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_get_status_editor" "', argument " "13"" of type '" "void *""'");
+ arg12 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg13 = ST(7);
}
- res14 = SWIG_ConvertPtr(ST(9), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res14 = SWIG_ConvertPtr(ST(8), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor" "', argument " "14"" of type '" "svn_wc_traversal_info_t *""'");
}
arg14 = (svn_wc_traversal_info_t *)(argp14);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -24314,8 +23034,6 @@ XS(_wrap_svn_wc_get_status_editor) {
-
-
XSRETURN(argvi);
fail:
@@ -24329,8 +23047,6 @@ XS(_wrap_svn_wc_get_status_editor) {
-
-
SWIG_croak_null();
}
}
@@ -24355,6 +23071,7 @@ XS(_wrap_svn_wc_status_set_repos_locks) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_status_set_repos_locks(set_locks_baton,locks,repos_root,pool);");
@@ -24435,7 +23152,6 @@ XS(_wrap_svn_wc_copy3) {
int alloc3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -24443,8 +23159,9 @@ XS(_wrap_svn_wc_copy3) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_copy3(wc_ctx,src_abspath,dst_abspath,metadata_only,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -24468,26 +23185,20 @@ XS(_wrap_svn_wc_copy3) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy3" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_copy3" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy3" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_copy3" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -24519,8 +23230,6 @@ XS(_wrap_svn_wc_copy3) {
-
-
XSRETURN(argvi);
fail:
@@ -24530,8 +23239,6 @@ XS(_wrap_svn_wc_copy3) {
-
-
SWIG_croak_null();
}
}
@@ -24556,7 +23263,6 @@ XS(_wrap_svn_wc_copy2) {
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
- int res5 ;
int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -24564,8 +23270,9 @@ XS(_wrap_svn_wc_copy2) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_copy2(src,dst_parent,dst_basename,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -24584,26 +23291,20 @@ XS(_wrap_svn_wc_copy2) {
}
arg3 = (char *)(buf3);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy2" "', argument " "4"" of type '" "svn_cancel_func_t""'");
- }
- }
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_copy2" "', argument " "5"" of type '" "void *""'");
+ arg4 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg5 = ST(3);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy2" "', argument " "6"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
+ res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_copy2" "', argument " "7"" of type '" "void *""'");
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -24634,8 +23335,6 @@ XS(_wrap_svn_wc_copy2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -24644,8 +23343,6 @@ XS(_wrap_svn_wc_copy2) {
-
-
SWIG_croak_null();
}
}
@@ -24670,7 +23367,6 @@ XS(_wrap_svn_wc_copy) {
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
- int res5 ;
int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -24678,8 +23374,9 @@ XS(_wrap_svn_wc_copy) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_copy(src,dst_parent,dst_basename,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -24698,26 +23395,20 @@ XS(_wrap_svn_wc_copy) {
}
arg3 = (char *)(buf3);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy" "', argument " "4"" of type '" "svn_cancel_func_t""'");
- }
- }
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_copy" "', argument " "5"" of type '" "void *""'");
+ arg4 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg5 = ST(3);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_copy" "', argument " "6"" of type '" "svn_wc_notify_func_t""'");
}
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
+ res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_copy" "', argument " "7"" of type '" "void *""'");
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -24748,8 +23439,6 @@ XS(_wrap_svn_wc_copy) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -24758,8 +23447,6 @@ XS(_wrap_svn_wc_copy) {
-
-
SWIG_croak_null();
}
}
@@ -24787,7 +23474,6 @@ XS(_wrap_svn_wc_move) {
int alloc3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -24795,8 +23481,9 @@ XS(_wrap_svn_wc_move) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_move(wc_ctx,src_abspath,dst_abspath,metadata_only,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -24820,26 +23507,20 @@ XS(_wrap_svn_wc_move) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_move" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_move" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_move" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_move" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -24871,8 +23552,6 @@ XS(_wrap_svn_wc_move) {
-
-
XSRETURN(argvi);
fail:
@@ -24882,8 +23561,6 @@ XS(_wrap_svn_wc_move) {
-
-
SWIG_croak_null();
}
}
@@ -24910,7 +23587,6 @@ XS(_wrap_svn_wc_delete4) {
int ecode3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -24918,8 +23594,9 @@ XS(_wrap_svn_wc_delete4) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_delete4(wc_ctx,local_abspath,keep_local,delete_unversioned_target,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -24943,26 +23620,20 @@ XS(_wrap_svn_wc_delete4) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete4" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_delete4" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete4" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_delete4" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -24994,8 +23665,6 @@ XS(_wrap_svn_wc_delete4) {
-
-
XSRETURN(argvi);
fail:
@@ -25005,8 +23674,6 @@ XS(_wrap_svn_wc_delete4) {
-
-
SWIG_croak_null();
}
}
@@ -25028,7 +23695,6 @@ XS(_wrap_svn_wc_delete3) {
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
- int res4 ;
int res6 ;
int val7 ;
int ecode7 = 0 ;
@@ -25038,8 +23704,9 @@ XS(_wrap_svn_wc_delete3) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_delete3(path,adm_access,cancel_func,cancel_baton,notify_func,notify_baton,keep_local,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25053,31 +23720,25 @@ XS(_wrap_svn_wc_delete3) {
}
arg2 = (svn_wc_adm_access_t *)(argp2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete3" "', argument " "3"" of type '" "svn_cancel_func_t""'");
- }
- }
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_delete3" "', argument " "4"" of type '" "void *""'");
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete3" "', argument " "5"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
+ res6 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg6), 0, 0);
if (!SWIG_IsOK(res6)) {
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_delete3" "', argument " "6"" of type '" "void *""'");
}
- ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val7);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val7);
if (!SWIG_IsOK(ecode7)) {
SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_wc_delete3" "', argument " "7"" of type '" "svn_boolean_t""'");
}
arg7 = (svn_boolean_t)(val7);
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -25108,8 +23769,6 @@ XS(_wrap_svn_wc_delete3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -25118,8 +23777,6 @@ XS(_wrap_svn_wc_delete3) {
-
-
SWIG_croak_null();
}
}
@@ -25140,7 +23797,6 @@ XS(_wrap_svn_wc_delete2) {
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
- int res4 ;
int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25148,8 +23804,9 @@ XS(_wrap_svn_wc_delete2) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_delete2(path,adm_access,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25163,26 +23820,20 @@ XS(_wrap_svn_wc_delete2) {
}
arg2 = (svn_wc_adm_access_t *)(argp2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete2" "', argument " "3"" of type '" "svn_cancel_func_t""'");
- }
- }
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_delete2" "', argument " "4"" of type '" "void *""'");
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete2" "', argument " "5"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
+ res6 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg6), 0, 0);
if (!SWIG_IsOK(res6)) {
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_delete2" "', argument " "6"" of type '" "void *""'");
}
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -25212,8 +23863,6 @@ XS(_wrap_svn_wc_delete2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -25221,8 +23870,6 @@ XS(_wrap_svn_wc_delete2) {
-
-
SWIG_croak_null();
}
}
@@ -25243,7 +23890,6 @@ XS(_wrap_svn_wc_delete) {
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
- int res4 ;
int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25251,8 +23897,9 @@ XS(_wrap_svn_wc_delete) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_delete(path,adm_access,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25266,30 +23913,127 @@ XS(_wrap_svn_wc_delete) {
}
arg2 = (svn_wc_adm_access_t *)(argp2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete" "', argument " "3"" of type '" "svn_cancel_func_t""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete" "', argument " "5"" of type '" "svn_wc_notify_func_t""'");
}
}
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_delete" "', argument " "4"" of type '" "void *""'");
+ res6 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg6), 0, 0);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_delete" "', argument " "6"" of type '" "void *""'");
+ }
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_delete((char const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_add_from_disk3) {
+ {
+ svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ apr_hash_t *arg3 = (apr_hash_t *) 0 ;
+ svn_boolean_t arg4 ;
+ svn_wc_notify_func2_t arg5 = (svn_wc_notify_func2_t) 0 ;
+ void *arg6 = (void *) 0 ;
+ apr_pool_t *arg7 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int res6 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
+ }
+ if ((items < 6) || (items > 7)) {
+ SWIG_croak("Usage: svn_wc_add_from_disk3(wc_ctx,local_abspath,props,skip_checks,notify_func,notify_baton,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_add_from_disk3" "', argument " "1"" of type '" "svn_wc_context_t *""'");
+ }
+ arg1 = (svn_wc_context_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_add_from_disk3" "', argument " "2"" of type '" "char const *""'");
}
+ arg2 = (char *)(buf2);
+ {
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
+ arg3 = svn_swig_pl_hash_to_prophash(ST(2), _global_pool);
+ }
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_add_from_disk3" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_delete" "', argument " "5"" of type '" "svn_wc_notify_func_t""'");
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add_from_disk3" "', argument " "5"" of type '" "svn_wc_notify_func2_t""'");
}
}
res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_delete" "', argument " "6"" of type '" "void *""'");
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add_from_disk3" "', argument " "6"" of type '" "void *""'");
}
if (items > 6) {
}
{
- result = (svn_error_t *)svn_wc_delete((char const *)arg1,arg2,arg3,arg4,arg5,arg6,arg7);
+ result = (svn_error_t *)svn_wc_add_from_disk3(arg1,(char const *)arg2,(apr_hash_t const *)arg3,arg4,arg5,arg6,arg7);
@@ -25310,8 +24054,8 @@ XS(_wrap_svn_wc_delete) {
}
}
}
- if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -25319,8 +24063,8 @@ XS(_wrap_svn_wc_delete) {
XSRETURN(argvi);
fail:
- if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -25352,6 +24096,7 @@ XS(_wrap_svn_wc_add_from_disk2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_add_from_disk2(wc_ctx,local_abspath,props,notify_func,notify_baton,scratch_pool);");
@@ -25367,8 +24112,10 @@ XS(_wrap_svn_wc_add_from_disk2) {
}
arg2 = (char *)(buf2);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg3 = svn_swig_pl_hash_to_prophash(ST(2), _global_pool);
}
{
@@ -25445,6 +24192,7 @@ XS(_wrap_svn_wc_add_from_disk) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_add_from_disk(wc_ctx,local_abspath,notify_func,notify_baton,scratch_pool);");
@@ -25536,7 +24284,6 @@ XS(_wrap_svn_wc_add4) {
int alloc4 = 0 ;
long val5 ;
int ecode5 = 0 ;
- int res7 ;
int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25544,8 +24291,9 @@ XS(_wrap_svn_wc_add4) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_add4(wc_ctx,local_abspath,depth,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -25574,26 +24322,20 @@ XS(_wrap_svn_wc_add4) {
}
arg5 = (svn_revnum_t)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add4" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_add4" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add4" "', argument " "8"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
+ res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
if (!SWIG_IsOK(res9)) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_add4" "', argument " "9"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -25626,8 +24368,6 @@ XS(_wrap_svn_wc_add4) {
-
-
XSRETURN(argvi);
fail:
@@ -25638,8 +24378,6 @@ XS(_wrap_svn_wc_add4) {
-
-
SWIG_croak_null();
}
}
@@ -25670,7 +24408,6 @@ XS(_wrap_svn_wc_add3) {
int alloc4 = 0 ;
long val5 ;
int ecode5 = 0 ;
- int res7 ;
int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25678,8 +24415,9 @@ XS(_wrap_svn_wc_add3) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_add3(path,parent_access,depth,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25708,26 +24446,20 @@ XS(_wrap_svn_wc_add3) {
}
arg5 = (svn_revnum_t)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add3" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_add3" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add3" "', argument " "8"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
+ res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
if (!SWIG_IsOK(res9)) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_add3" "', argument " "9"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -25760,8 +24492,6 @@ XS(_wrap_svn_wc_add3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -25772,8 +24502,6 @@ XS(_wrap_svn_wc_add3) {
-
-
SWIG_croak_null();
}
}
@@ -25801,7 +24529,6 @@ XS(_wrap_svn_wc_add2) {
int alloc3 = 0 ;
long val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25809,8 +24536,9 @@ XS(_wrap_svn_wc_add2) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_add2(path,parent_access,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25834,26 +24562,20 @@ XS(_wrap_svn_wc_add2) {
}
arg4 = (svn_revnum_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add2" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add2" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add2" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_add2" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -25885,8 +24607,6 @@ XS(_wrap_svn_wc_add2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -25896,8 +24616,6 @@ XS(_wrap_svn_wc_add2) {
-
-
SWIG_croak_null();
}
}
@@ -25925,7 +24643,6 @@ XS(_wrap_svn_wc_add) {
int alloc3 = 0 ;
long val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -25933,8 +24650,9 @@ XS(_wrap_svn_wc_add) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_add(path,parent_access,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -25958,26 +24676,20 @@ XS(_wrap_svn_wc_add) {
}
arg4 = (svn_revnum_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add" "', argument " "7"" of type '" "svn_wc_notify_func_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_add" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -26009,8 +24721,6 @@ XS(_wrap_svn_wc_add) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -26020,8 +24730,6 @@ XS(_wrap_svn_wc_add) {
-
-
SWIG_croak_null();
}
}
@@ -26051,15 +24759,15 @@ XS(_wrap_svn_wc_add_repos_file4) {
int alloc7 = 0 ;
long val8 ;
int ecode8 = 0 ;
- int res10 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_add_repos_file4(wc_ctx,local_abspath,new_base_contents,new_contents,new_base_props,new_props,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -26074,18 +24782,24 @@ XS(_wrap_svn_wc_add_repos_file4) {
arg2 = (char *)(buf2);
{
svn_swig_pl_make_stream (&arg3, ST(2));
+ SPAGAIN;
}
{
svn_swig_pl_make_stream (&arg4, ST(3));
+ SPAGAIN;
}
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
@@ -26099,16 +24813,10 @@ XS(_wrap_svn_wc_add_repos_file4) {
}
arg8 = (svn_revnum_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add_repos_file4" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_add_repos_file4" "', argument " "10"" of type '" "void *""'");
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -26142,8 +24850,6 @@ XS(_wrap_svn_wc_add_repos_file4) {
if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
-
-
XSRETURN(argvi);
fail:
@@ -26155,8 +24861,6 @@ XS(_wrap_svn_wc_add_repos_file4) {
if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
-
-
SWIG_croak_null();
}
}
@@ -26188,7 +24892,6 @@ XS(_wrap_svn_wc_add_repos_file3) {
int alloc7 = 0 ;
long val8 ;
int ecode8 = 0 ;
- int res10 ;
int res12 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -26196,8 +24899,9 @@ XS(_wrap_svn_wc_add_repos_file3) {
{
_global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 12) || (items > 13)) {
+ if ((items < 11) || (items > 12)) {
SWIG_croak("Usage: svn_wc_add_repos_file3(dst_path,adm_access,new_base_contents,new_contents,new_base_props,new_props,copyfrom_url,copyfrom_rev,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -26212,18 +24916,24 @@ XS(_wrap_svn_wc_add_repos_file3) {
arg2 = (svn_wc_adm_access_t *)(argp2);
{
svn_swig_pl_make_stream (&arg3, ST(2));
+ SPAGAIN;
}
{
svn_swig_pl_make_stream (&arg4, ST(3));
+ SPAGAIN;
}
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
@@ -26237,26 +24947,20 @@ XS(_wrap_svn_wc_add_repos_file3) {
}
arg8 = (svn_revnum_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add_repos_file3" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_add_repos_file3" "', argument " "10"" of type '" "void *""'");
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg11), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg11), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add_repos_file3" "', argument " "11"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res12 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg12), 0, 0);
+ res12 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg12), 0, 0);
if (!SWIG_IsOK(res12)) {
SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_add_repos_file3" "', argument " "12"" of type '" "void *""'");
}
- if (items > 12) {
+ if (items > 11) {
}
{
@@ -26292,8 +24996,6 @@ XS(_wrap_svn_wc_add_repos_file3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -26307,8 +25009,6 @@ XS(_wrap_svn_wc_add_repos_file3) {
-
-
SWIG_croak_null();
}
}
@@ -26348,6 +25048,7 @@ XS(_wrap_svn_wc_add_repos_file2) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_add_repos_file2(dst_path,adm_access,new_text_base_path,new_text_path,new_base_props,new_props,copyfrom_url,copyfrom_rev,pool);");
@@ -26373,13 +25074,17 @@ XS(_wrap_svn_wc_add_repos_file2) {
}
arg4 = (char *)(buf4);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
@@ -26471,6 +25176,7 @@ XS(_wrap_svn_wc_add_repos_file) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_add_repos_file(dst_path,adm_access,new_text_path,new_props,copyfrom_url,copyfrom_rev,pool);");
@@ -26491,8 +25197,10 @@ XS(_wrap_svn_wc_add_repos_file) {
}
arg3 = (char *)(buf3);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg4 = svn_swig_pl_hash_to_prophash(ST(3), _global_pool);
}
res5 = SWIG_AsCharPtrAndSize(ST(4), &buf5, NULL, &alloc5);
@@ -26570,15 +25278,15 @@ XS(_wrap_svn_wc_remove_from_revision_control2) {
int ecode3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_remove_from_revision_control2(wc_ctx,local_abspath,destroy_wf,instant_error,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -26602,16 +25310,10 @@ XS(_wrap_svn_wc_remove_from_revision_control2) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_remove_from_revision_control2" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_remove_from_revision_control2" "', argument " "6"" of type '" "void *""'");
- }
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -26641,8 +25343,6 @@ XS(_wrap_svn_wc_remove_from_revision_control2) {
-
-
XSRETURN(argvi);
fail:
@@ -26650,8 +25350,6 @@ XS(_wrap_svn_wc_remove_from_revision_control2) {
-
-
SWIG_croak_null();
}
}
@@ -26676,15 +25374,15 @@ XS(_wrap_svn_wc_remove_from_revision_control) {
int ecode3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_remove_from_revision_control(adm_access,name,destroy_wf,instant_error,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -26708,16 +25406,10 @@ XS(_wrap_svn_wc_remove_from_revision_control) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_remove_from_revision_control" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_remove_from_revision_control" "', argument " "6"" of type '" "void *""'");
- }
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -26747,8 +25439,6 @@ XS(_wrap_svn_wc_remove_from_revision_control) {
-
-
XSRETURN(argvi);
fail:
@@ -26756,8 +25446,6 @@ XS(_wrap_svn_wc_remove_from_revision_control) {
-
-
SWIG_croak_null();
}
}
@@ -26794,7 +25482,6 @@ XS(_wrap_svn_wc_resolved_conflict5) {
int ecode6 = 0 ;
int val7 ;
int ecode7 = 0 ;
- int res9 ;
int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -26802,8 +25489,9 @@ XS(_wrap_svn_wc_resolved_conflict5) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_resolved_conflict5(wc_ctx,local_abspath,depth,resolve_text,resolve_prop,resolve_tree,conflict_choice,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -26842,26 +25530,20 @@ XS(_wrap_svn_wc_resolved_conflict5) {
}
arg7 = (svn_wc_conflict_choice_t)(val7);
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_resolved_conflict5" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
- }
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_resolved_conflict5" "', argument " "9"" of type '" "void *""'");
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(7);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_resolved_conflict5" "', argument " "10"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
+ res11 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg11), 0, 0);
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_resolved_conflict5" "', argument " "11"" of type '" "void *""'");
}
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -26896,8 +25578,6 @@ XS(_wrap_svn_wc_resolved_conflict5) {
-
-
XSRETURN(argvi);
fail:
@@ -26910,8 +25590,6 @@ XS(_wrap_svn_wc_resolved_conflict5) {
-
-
SWIG_croak_null();
}
}
@@ -26948,15 +25626,15 @@ XS(_wrap_svn_wc_resolved_conflict4) {
int val7 ;
int ecode7 = 0 ;
int res9 ;
- int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_resolved_conflict4(path,adm_access,resolve_text,resolve_props,resolve_tree,depth,conflict_choice,notify_func,notify_baton,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -27005,16 +25683,10 @@ XS(_wrap_svn_wc_resolved_conflict4) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_resolved_conflict4" "', argument " "9"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_resolved_conflict4" "', argument " "10"" of type '" "svn_cancel_func_t""'");
- }
- }
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
- if (!SWIG_IsOK(res11)) {
- SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_resolved_conflict4" "', argument " "11"" of type '" "void *""'");
+ arg10 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg11 = ST(9);
}
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -27049,8 +25721,6 @@ XS(_wrap_svn_wc_resolved_conflict4) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -27063,8 +25733,6 @@ XS(_wrap_svn_wc_resolved_conflict4) {
-
-
SWIG_croak_null();
}
}
@@ -27098,15 +25766,15 @@ XS(_wrap_svn_wc_resolved_conflict3) {
int val6 ;
int ecode6 = 0 ;
int res8 ;
- int res10 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_resolved_conflict3(path,adm_access,resolve_text,resolve_props,depth,conflict_choice,notify_func,notify_baton,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -27150,16 +25818,10 @@ XS(_wrap_svn_wc_resolved_conflict3) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_resolved_conflict3" "', argument " "8"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_resolved_conflict3" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_resolved_conflict3" "', argument " "10"" of type '" "void *""'");
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -27193,8 +25855,6 @@ XS(_wrap_svn_wc_resolved_conflict3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -27206,8 +25866,6 @@ XS(_wrap_svn_wc_resolved_conflict3) {
-
-
SWIG_croak_null();
}
}
@@ -27238,15 +25896,15 @@ XS(_wrap_svn_wc_resolved_conflict2) {
int val5 ;
int ecode5 = 0 ;
int res7 ;
- int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_resolved_conflict2(path,adm_access,resolve_text,resolve_props,recurse,notify_func,notify_baton,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -27285,16 +25943,10 @@ XS(_wrap_svn_wc_resolved_conflict2) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_resolved_conflict2" "', argument " "7"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_resolved_conflict2" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
- }
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_resolved_conflict2" "', argument " "9"" of type '" "void *""'");
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(7);
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -27327,8 +25979,6 @@ XS(_wrap_svn_wc_resolved_conflict2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -27339,8 +25989,6 @@ XS(_wrap_svn_wc_resolved_conflict2) {
-
-
SWIG_croak_null();
}
}
@@ -27375,6 +26023,7 @@ XS(_wrap_svn_wc_resolved_conflict) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_resolved_conflict(path,adm_access,resolve_text,resolve_props,recurse,notify_func,notify_baton,pool);");
@@ -27472,6 +26121,7 @@ XS(_wrap_svn_wc_committed_queue_create) {
{
_global_pool = arg1 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 0) || (items > 1)) {
SWIG_croak("Usage: svn_wc_committed_queue_create(pool);");
@@ -27495,6 +26145,146 @@ XS(_wrap_svn_wc_committed_queue_create) {
}
+XS(_wrap_svn_wc_queue_committed4) {
+ {
+ svn_wc_committed_queue_t *arg1 = (svn_wc_committed_queue_t *) 0 ;
+ svn_wc_context_t *arg2 = (svn_wc_context_t *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_boolean_t arg4 ;
+ svn_boolean_t arg5 ;
+ apr_array_header_t *arg6 = (apr_array_header_t *) 0 ;
+ svn_boolean_t arg7 ;
+ svn_boolean_t arg8 ;
+ svn_checksum_t *arg9 = (svn_checksum_t *) 0 ;
+ apr_pool_t *arg10 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ void *argp6 = 0 ;
+ int res6 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
+ void *argp9 = 0 ;
+ int res9 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
+ }
+ if ((items < 9) || (items > 10)) {
+ SWIG_croak("Usage: svn_wc_queue_committed4(queue,wc_ctx,local_abspath,recurse,is_committed,wcprop_changes,remove_lock,remove_changelist,sha1_checksum,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_committed_queue_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_queue_committed4" "', argument " "1"" of type '" "svn_wc_committed_queue_t *""'");
+ }
+ arg1 = (svn_wc_committed_queue_t *)(argp1);
+ res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_queue_committed4" "', argument " "2"" of type '" "svn_wc_context_t *""'");
+ }
+ arg2 = (svn_wc_context_t *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(ST(2), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_queue_committed4" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_queue_committed4" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_wc_queue_committed4" "', argument " "5"" of type '" "svn_boolean_t""'");
+ }
+ arg5 = (svn_boolean_t)(val5);
+ res6 = SWIG_ConvertPtr(ST(5), &argp6,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_queue_committed4" "', argument " "6"" of type '" "apr_array_header_t const *""'");
+ }
+ arg6 = (apr_array_header_t *)(argp6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_wc_queue_committed4" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(7), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_wc_queue_committed4" "', argument " "8"" of type '" "svn_boolean_t""'");
+ }
+ arg8 = (svn_boolean_t)(val8);
+ res9 = SWIG_ConvertPtr(ST(8), &argp9,SWIGTYPE_p_svn_checksum_t, 0 | 0 );
+ if (!SWIG_IsOK(res9)) {
+ SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_queue_committed4" "', argument " "9"" of type '" "svn_checksum_t const *""'");
+ }
+ arg9 = (svn_checksum_t *)(argp9);
+ if (items > 9) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_queue_committed4(arg1,arg2,(char const *)arg3,arg4,arg5,(apr_array_header_t const *)arg6,arg7,arg8,(struct svn_checksum_t const *)arg9,arg10);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_queue_committed3) {
{
svn_wc_committed_queue_t *arg1 = (svn_wc_committed_queue_t *) 0 ;
@@ -27530,6 +26320,7 @@ XS(_wrap_svn_wc_queue_committed3) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_queue_committed3(queue,wc_ctx,local_abspath,recurse,wcprop_changes,remove_lock,remove_changelist,sha1_checksum,scratch_pool);");
@@ -27659,6 +26450,7 @@ XS(_wrap_svn_wc_queue_committed2) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_queue_committed2(queue,path,adm_access,recurse,wcprop_changes,remove_lock,remove_changelist,md5_checksum,scratch_pool);");
@@ -27786,6 +26578,7 @@ XS(_wrap_svn_wc_queue_committed) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 7) || (items > 8)) {
@@ -27900,15 +26693,15 @@ XS(_wrap_svn_wc_process_committed_queue2) {
int res5 ;
char *buf5 = 0 ;
int alloc5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_process_committed_queue2(queue,wc_ctx,new_revnum,rev_date,rev_author,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_committed_queue_t, 0 | 0 );
@@ -27937,16 +26730,10 @@ XS(_wrap_svn_wc_process_committed_queue2) {
}
arg5 = (char *)(buf5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_process_committed_queue2" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_process_committed_queue2" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -27977,8 +26764,6 @@ XS(_wrap_svn_wc_process_committed_queue2) {
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
-
-
XSRETURN(argvi);
fail:
@@ -27987,8 +26772,6 @@ XS(_wrap_svn_wc_process_committed_queue2) {
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
-
-
SWIG_croak_null();
}
}
@@ -28021,6 +26804,7 @@ XS(_wrap_svn_wc_process_committed_queue) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_process_committed_queue(queue,adm_access,new_revnum,rev_date,rev_author,pool);");
@@ -28136,6 +26920,7 @@ XS(_wrap_svn_wc_process_committed4) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_process_committed4(path,adm_access,recurse,new_revnum,rev_date,rev_author,wcprop_changes,remove_lock,remove_changelist,digest,pool);");
@@ -28281,6 +27066,7 @@ XS(_wrap_svn_wc_process_committed3) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_process_committed3(path,adm_access,recurse,new_revnum,rev_date,rev_author,wcprop_changes,remove_lock,digest,pool);");
@@ -28417,6 +27203,7 @@ XS(_wrap_svn_wc_process_committed2) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_process_committed2(path,adm_access,recurse,new_revnum,rev_date,rev_author,wcprop_changes,remove_lock,pool);");
@@ -28545,6 +27332,7 @@ XS(_wrap_svn_wc_process_committed) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_process_committed(path,adm_access,recurse,new_revnum,rev_date,rev_author,wcprop_changes,pool);");
@@ -28667,7 +27455,6 @@ XS(_wrap_svn_wc_crawl_revisions5) {
int ecode8 = 0 ;
int val9 ;
int ecode9 = 0 ;
- int res11 ;
int res13 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -28675,8 +27462,9 @@ XS(_wrap_svn_wc_crawl_revisions5) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 13) || (items > 14)) {
+ if ((items < 12) || (items > 13)) {
SWIG_croak("Usage: svn_wc_crawl_revisions5(wc_ctx,local_abspath,reporter,report_baton,restore_files,depth,honor_depth_exclude,depth_compatibility_trick,use_commit_times,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -28724,26 +27512,20 @@ XS(_wrap_svn_wc_crawl_revisions5) {
}
arg9 = (svn_boolean_t)(val9);
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_crawl_revisions5" "', argument " "10"" of type '" "svn_cancel_func_t""'");
- }
- }
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
- if (!SWIG_IsOK(res11)) {
- SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_crawl_revisions5" "', argument " "11"" of type '" "void *""'");
+ arg10 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg11 = ST(9);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(11), (void**)(&arg12), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg12), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_crawl_revisions5" "', argument " "12"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res13 = SWIG_ConvertPtr(ST(12),SWIG_as_voidptrptr(&arg13), 0, 0);
+ res13 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg13), 0, 0);
if (!SWIG_IsOK(res13)) {
SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_crawl_revisions5" "', argument " "13"" of type '" "void *""'");
}
- if (items > 13) {
+ if (items > 12) {
}
{
@@ -28780,8 +27562,6 @@ XS(_wrap_svn_wc_crawl_revisions5) {
-
-
XSRETURN(argvi);
fail:
@@ -28796,8 +27576,6 @@ XS(_wrap_svn_wc_crawl_revisions5) {
-
-
SWIG_croak_null();
}
}
@@ -28846,6 +27624,7 @@ XS(_wrap_svn_wc_crawl_revisions4) {
{
_global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 12) || (items > 13)) {
SWIG_croak("Usage: svn_wc_crawl_revisions4(path,adm_access,reporter,report_baton,restore_files,depth,honor_depth_exclude,depth_compatibility_trick,use_commit_times,notify_func,notify_baton,traversal_info,pool);");
@@ -29007,6 +27786,7 @@ XS(_wrap_svn_wc_crawl_revisions3) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 11) || (items > 12)) {
SWIG_croak("Usage: svn_wc_crawl_revisions3(path,adm_access,reporter,report_baton,restore_files,depth,depth_compatibility_trick,use_commit_times,notify_func,notify_baton,traversal_info,pool);");
@@ -29158,6 +27938,7 @@ XS(_wrap_svn_wc_crawl_revisions2) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_crawl_revisions2(path,adm_access,reporter,report_baton,restore_files,recurse,use_commit_times,notify_func,notify_baton,traversal_info,pool);");
@@ -29302,6 +28083,7 @@ XS(_wrap_svn_wc_crawl_revisions) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_crawl_revisions(path,adm_access,reporter,report_baton,restore_files,recurse,use_commit_times,notify_func,notify_baton,traversal_info,pool);");
@@ -29435,6 +28217,7 @@ XS(_wrap_svn_wc_check_root) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -29534,6 +28317,7 @@ XS(_wrap_svn_wc_is_wc_root2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -29615,6 +28399,7 @@ XS(_wrap_svn_wc_is_wc_root) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -29698,9 +28483,11 @@ XS(_wrap_svn_wc_get_actual_target2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -29796,6 +28583,7 @@ XS(_wrap_svn_wc_get_actual_target) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
arg3 = &temp3;
@@ -29923,7 +28711,6 @@ XS(_wrap_svn_wc_get_update_editor4) {
int res17 ;
int res19 ;
int res21 ;
- int res23 ;
int res25 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -29931,14 +28718,16 @@ XS(_wrap_svn_wc_get_update_editor4) {
{
_global_pool = arg26 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg27 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 22) || (items > 24)) {
+ if ((items < 21) || (items > 23)) {
SWIG_croak("Usage: svn_wc_get_update_editor4(wc_ctx,anchor_abspath,target_basename,use_commit_times,depth,depth_is_sticky,allow_unver_obstructions,adds_as_modification,server_performs_filtering,clean_checkout,diff3_cmd,preserved_exts,fetch_dirents_func,fetch_dirents_baton,conflict_func,conflict_baton,external_func,external_baton,cancel_func,cancel_baton,notify_func,notify_baton,result_pool,scratch_pool);");
}
res4 = SWIG_ConvertPtr(ST(0), &argp4,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -29997,7 +28786,7 @@ XS(_wrap_svn_wc_get_update_editor4) {
}
arg14 = (char *)(buf14);
{
- arg15 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(11),
+ arg15 = svn_swig_pl_strings_to_array(ST(11),
_global_pool);
}
{
@@ -30031,29 +28820,23 @@ XS(_wrap_svn_wc_get_update_editor4) {
SWIG_exception_fail(SWIG_ArgError(res21), "in method '" "svn_wc_get_update_editor4" "', argument " "21"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(18), (void**)(&arg22), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor4" "', argument " "22"" of type '" "svn_cancel_func_t""'");
- }
- }
- res23 = SWIG_ConvertPtr(ST(19),SWIG_as_voidptrptr(&arg23), 0, 0);
- if (!SWIG_IsOK(res23)) {
- SWIG_exception_fail(SWIG_ArgError(res23), "in method '" "svn_wc_get_update_editor4" "', argument " "23"" of type '" "void *""'");
+ arg22 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg23 = ST(18);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(20), (void**)(&arg24), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(19), (void**)(&arg24), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor4" "', argument " "24"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res25 = SWIG_ConvertPtr(ST(21),SWIG_as_voidptrptr(&arg25), 0, 0);
+ res25 = SWIG_ConvertPtr(ST(20),SWIG_as_voidptrptr(&arg25), 0, 0);
if (!SWIG_IsOK(res25)) {
SWIG_exception_fail(SWIG_ArgError(res25), "in method '" "svn_wc_get_update_editor4" "', argument " "25"" of type '" "void *""'");
}
- if (items > 22) {
+ if (items > 21) {
}
- if (items > 23) {
+ if (items > 22) {
}
{
@@ -30115,8 +28898,6 @@ XS(_wrap_svn_wc_get_update_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -30144,8 +28925,6 @@ XS(_wrap_svn_wc_get_update_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -30191,7 +28970,6 @@ XS(_wrap_svn_wc_get_update_editor3) {
int val7 ;
int ecode7 = 0 ;
int res9 ;
- int res11 ;
int res13 ;
int res15 ;
int res16 ;
@@ -30207,11 +28985,12 @@ XS(_wrap_svn_wc_get_update_editor3) {
{
_global_pool = arg21 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg18 = &temp18;
arg19 = &temp19;
- if ((items < 17) || (items > 18)) {
+ if ((items < 16) || (items > 17)) {
SWIG_croak("Usage: svn_wc_get_update_editor3(anchor,target,use_commit_times,depth,depth_is_sticky,allow_unver_obstructions,notify_func,notify_baton,cancel_func,cancel_baton,conflict_func,conflict_baton,fetch_func,fetch_baton,diff3_cmd,preserved_exts,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -30255,50 +29034,44 @@ XS(_wrap_svn_wc_get_update_editor3) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_get_update_editor3" "', argument " "9"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg10), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor3" "', argument " "10"" of type '" "svn_cancel_func_t""'");
- }
- }
- res11 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg11), 0, 0);
- if (!SWIG_IsOK(res11)) {
- SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_get_update_editor3" "', argument " "11"" of type '" "void *""'");
+ arg10 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg11 = ST(8);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg12), SWIGTYPE_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg12), SWIGTYPE_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor3" "', argument " "12"" of type '" "svn_wc_conflict_resolver_func_t""'");
}
}
- res13 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg13), 0, 0);
+ res13 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg13), 0, 0);
if (!SWIG_IsOK(res13)) {
SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_get_update_editor3" "', argument " "13"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(12), (void**)(&arg14), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_stream_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(11), (void**)(&arg14), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_stream_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor3" "', argument " "14"" of type '" "svn_wc_get_file_t""'");
}
}
- res15 = SWIG_ConvertPtr(ST(13),SWIG_as_voidptrptr(&arg15), 0, 0);
+ res15 = SWIG_ConvertPtr(ST(12),SWIG_as_voidptrptr(&arg15), 0, 0);
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_update_editor3" "', argument " "15"" of type '" "void *""'");
}
- res16 = SWIG_AsCharPtrAndSize(ST(14), &buf16, NULL, &alloc16);
+ res16 = SWIG_AsCharPtrAndSize(ST(13), &buf16, NULL, &alloc16);
if (!SWIG_IsOK(res16)) {
SWIG_exception_fail(SWIG_ArgError(res16), "in method '" "svn_wc_get_update_editor3" "', argument " "16"" of type '" "char const *""'");
}
arg16 = (char *)(buf16);
{
- arg17 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(15),
+ arg17 = svn_swig_pl_strings_to_array(ST(14),
_global_pool);
}
- res20 = SWIG_ConvertPtr(ST(16), &argp20,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res20 = SWIG_ConvertPtr(ST(15), &argp20,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res20)) {
SWIG_exception_fail(SWIG_ArgError(res20), "in method '" "svn_wc_get_update_editor3" "', argument " "20"" of type '" "svn_wc_traversal_info_t *""'");
}
arg20 = (svn_wc_traversal_info_t *)(argp20);
- if (items > 17) {
+ if (items > 16) {
}
{
@@ -30348,8 +29121,6 @@ XS(_wrap_svn_wc_get_update_editor3) {
-
-
if (alloc16 == SWIG_NEWOBJ) free((char*)buf16);
@@ -30371,8 +29142,6 @@ XS(_wrap_svn_wc_get_update_editor3) {
-
-
if (alloc16 == SWIG_NEWOBJ) free((char*)buf16);
@@ -30413,7 +29182,6 @@ XS(_wrap_svn_wc_get_update_editor2) {
int val5 ;
int ecode5 = 0 ;
int res7 ;
- int res9 ;
int res10 ;
char *buf10 = 0 ;
int alloc10 = 0 ;
@@ -30427,11 +29195,12 @@ XS(_wrap_svn_wc_get_update_editor2) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg11 = &temp11;
arg12 = &temp12;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_update_editor2(anchor,target,use_commit_times,recurse,notify_func,notify_baton,cancel_func,cancel_baton,diff3_cmd,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -30465,26 +29234,20 @@ XS(_wrap_svn_wc_get_update_editor2) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_get_update_editor2" "', argument " "7"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor2" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(6);
}
- res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_get_update_editor2" "', argument " "9"" of type '" "void *""'");
- }
- res10 = SWIG_AsCharPtrAndSize(ST(8), &buf10, NULL, &alloc10);
+ res10 = SWIG_AsCharPtrAndSize(ST(7), &buf10, NULL, &alloc10);
if (!SWIG_IsOK(res10)) {
SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_update_editor2" "', argument " "10"" of type '" "char const *""'");
}
arg10 = (char *)(buf10);
- res13 = SWIG_ConvertPtr(ST(9), &argp13,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res13 = SWIG_ConvertPtr(ST(8), &argp13,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res13)) {
SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_get_update_editor2" "', argument " "13"" of type '" "svn_wc_traversal_info_t *""'");
}
arg13 = (svn_wc_traversal_info_t *)(argp13);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -30528,8 +29291,6 @@ XS(_wrap_svn_wc_get_update_editor2) {
-
-
if (alloc10 == SWIG_NEWOBJ) free((char*)buf10);
@@ -30544,8 +29305,6 @@ XS(_wrap_svn_wc_get_update_editor2) {
-
-
if (alloc10 == SWIG_NEWOBJ) free((char*)buf10);
@@ -30585,7 +29344,6 @@ XS(_wrap_svn_wc_get_update_editor) {
int val5 ;
int ecode5 = 0 ;
int res7 ;
- int res9 ;
int res10 ;
char *buf10 = 0 ;
int alloc10 = 0 ;
@@ -30599,11 +29357,12 @@ XS(_wrap_svn_wc_get_update_editor) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg11 = &temp11;
arg12 = &temp12;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_update_editor(anchor,target,use_commit_times,recurse,notify_func,notify_baton,cancel_func,cancel_baton,diff3_cmd,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -30637,26 +29396,20 @@ XS(_wrap_svn_wc_get_update_editor) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_get_update_editor" "', argument " "7"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_update_editor" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(6);
}
- res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_get_update_editor" "', argument " "9"" of type '" "void *""'");
- }
- res10 = SWIG_AsCharPtrAndSize(ST(8), &buf10, NULL, &alloc10);
+ res10 = SWIG_AsCharPtrAndSize(ST(7), &buf10, NULL, &alloc10);
if (!SWIG_IsOK(res10)) {
SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_update_editor" "', argument " "10"" of type '" "char const *""'");
}
arg10 = (char *)(buf10);
- res13 = SWIG_ConvertPtr(ST(9), &argp13,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res13 = SWIG_ConvertPtr(ST(8), &argp13,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res13)) {
SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_get_update_editor" "', argument " "13"" of type '" "svn_wc_traversal_info_t *""'");
}
arg13 = (svn_wc_traversal_info_t *)(argp13);
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -30700,8 +29453,6 @@ XS(_wrap_svn_wc_get_update_editor) {
-
-
if (alloc10 == SWIG_NEWOBJ) free((char*)buf10);
@@ -30716,8 +29467,6 @@ XS(_wrap_svn_wc_get_update_editor) {
-
-
if (alloc10 == SWIG_NEWOBJ) free((char*)buf10);
@@ -30788,7 +29537,6 @@ XS(_wrap_svn_wc_get_switch_editor4) {
int res16 ;
int res18 ;
int res20 ;
- int res22 ;
int res24 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -30796,14 +29544,16 @@ XS(_wrap_svn_wc_get_switch_editor4) {
{
_global_pool = arg25 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg26 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 21) || (items > 23)) {
+ if ((items < 20) || (items > 22)) {
SWIG_croak("Usage: svn_wc_get_switch_editor4(wc_ctx,anchor_abspath,target_basename,switch_url,use_commit_times,depth,depth_is_sticky,allow_unver_obstructions,server_performs_filtering,diff3_cmd,preserved_exts,fetch_dirents_func,fetch_dirents_baton,conflict_func,conflict_baton,external_func,external_baton,cancel_func,cancel_baton,notify_func,notify_baton,result_pool,scratch_pool);");
}
res4 = SWIG_ConvertPtr(ST(0), &argp4,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -30857,7 +29607,7 @@ XS(_wrap_svn_wc_get_switch_editor4) {
}
arg13 = (char *)(buf13);
{
- arg14 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(10),
+ arg14 = svn_swig_pl_strings_to_array(ST(10),
_global_pool);
}
{
@@ -30891,29 +29641,23 @@ XS(_wrap_svn_wc_get_switch_editor4) {
SWIG_exception_fail(SWIG_ArgError(res20), "in method '" "svn_wc_get_switch_editor4" "', argument " "20"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(17), (void**)(&arg21), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor4" "', argument " "21"" of type '" "svn_cancel_func_t""'");
- }
- }
- res22 = SWIG_ConvertPtr(ST(18),SWIG_as_voidptrptr(&arg22), 0, 0);
- if (!SWIG_IsOK(res22)) {
- SWIG_exception_fail(SWIG_ArgError(res22), "in method '" "svn_wc_get_switch_editor4" "', argument " "22"" of type '" "void *""'");
+ arg21 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg22 = ST(17);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(19), (void**)(&arg23), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(18), (void**)(&arg23), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor4" "', argument " "23"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res24 = SWIG_ConvertPtr(ST(20),SWIG_as_voidptrptr(&arg24), 0, 0);
+ res24 = SWIG_ConvertPtr(ST(19),SWIG_as_voidptrptr(&arg24), 0, 0);
if (!SWIG_IsOK(res24)) {
SWIG_exception_fail(SWIG_ArgError(res24), "in method '" "svn_wc_get_switch_editor4" "', argument " "24"" of type '" "void *""'");
}
- if (items > 21) {
+ if (items > 20) {
}
- if (items > 22) {
+ if (items > 21) {
}
{
@@ -30974,8 +29718,6 @@ XS(_wrap_svn_wc_get_switch_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -31002,8 +29744,6 @@ XS(_wrap_svn_wc_get_switch_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -31051,7 +29791,6 @@ XS(_wrap_svn_wc_get_switch_editor3) {
int val8 ;
int ecode8 = 0 ;
int res10 ;
- int res12 ;
int res14 ;
int res15 ;
char *buf15 = 0 ;
@@ -31066,11 +29805,12 @@ XS(_wrap_svn_wc_get_switch_editor3) {
{
_global_pool = arg20 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg17 = &temp17;
arg18 = &temp18;
- if ((items < 16) || (items > 17)) {
+ if ((items < 15) || (items > 16)) {
SWIG_croak("Usage: svn_wc_get_switch_editor3(anchor,target,switch_url,use_commit_times,depth,depth_is_sticky,allow_unver_obstructions,notify_func,notify_baton,cancel_func,cancel_baton,conflict_func,conflict_baton,diff3_cmd,preserved_exts,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -31119,40 +29859,34 @@ XS(_wrap_svn_wc_get_switch_editor3) {
SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_switch_editor3" "', argument " "10"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg11), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor3" "', argument " "11"" of type '" "svn_cancel_func_t""'");
- }
- }
- res12 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg12), 0, 0);
- if (!SWIG_IsOK(res12)) {
- SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_get_switch_editor3" "', argument " "12"" of type '" "void *""'");
+ arg11 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg12 = ST(9);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(11), (void**)(&arg13), SWIGTYPE_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg13), SWIGTYPE_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor3" "', argument " "13"" of type '" "svn_wc_conflict_resolver_func_t""'");
}
}
- res14 = SWIG_ConvertPtr(ST(12),SWIG_as_voidptrptr(&arg14), 0, 0);
+ res14 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg14), 0, 0);
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_switch_editor3" "', argument " "14"" of type '" "void *""'");
}
- res15 = SWIG_AsCharPtrAndSize(ST(13), &buf15, NULL, &alloc15);
+ res15 = SWIG_AsCharPtrAndSize(ST(12), &buf15, NULL, &alloc15);
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_switch_editor3" "', argument " "15"" of type '" "char const *""'");
}
arg15 = (char *)(buf15);
{
- arg16 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(14),
+ arg16 = svn_swig_pl_strings_to_array(ST(13),
_global_pool);
}
- res19 = SWIG_ConvertPtr(ST(15), &argp19,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res19 = SWIG_ConvertPtr(ST(14), &argp19,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res19)) {
SWIG_exception_fail(SWIG_ArgError(res19), "in method '" "svn_wc_get_switch_editor3" "', argument " "19"" of type '" "svn_wc_traversal_info_t *""'");
}
arg19 = (svn_wc_traversal_info_t *)(argp19);
- if (items > 16) {
+ if (items > 15) {
}
{
@@ -31201,8 +29935,6 @@ XS(_wrap_svn_wc_get_switch_editor3) {
-
-
if (alloc15 == SWIG_NEWOBJ) free((char*)buf15);
@@ -31223,8 +29955,6 @@ XS(_wrap_svn_wc_get_switch_editor3) {
-
-
if (alloc15 == SWIG_NEWOBJ) free((char*)buf15);
@@ -31269,7 +29999,6 @@ XS(_wrap_svn_wc_get_switch_editor2) {
int val6 ;
int ecode6 = 0 ;
int res8 ;
- int res10 ;
int res11 ;
char *buf11 = 0 ;
int alloc11 = 0 ;
@@ -31283,11 +30012,12 @@ XS(_wrap_svn_wc_get_switch_editor2) {
{
_global_pool = arg15 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg12 = &temp12;
arg13 = &temp13;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_switch_editor2(anchor,target,switch_url,use_commit_times,recurse,notify_func,notify_baton,cancel_func,cancel_baton,diff3_cmd,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -31326,26 +30056,20 @@ XS(_wrap_svn_wc_get_switch_editor2) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_get_switch_editor2" "', argument " "8"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor2" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(7);
}
- res10 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_switch_editor2" "', argument " "10"" of type '" "void *""'");
- }
- res11 = SWIG_AsCharPtrAndSize(ST(9), &buf11, NULL, &alloc11);
+ res11 = SWIG_AsCharPtrAndSize(ST(8), &buf11, NULL, &alloc11);
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_get_switch_editor2" "', argument " "11"" of type '" "char const *""'");
}
arg11 = (char *)(buf11);
- res14 = SWIG_ConvertPtr(ST(10), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res14 = SWIG_ConvertPtr(ST(9), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_switch_editor2" "', argument " "14"" of type '" "svn_wc_traversal_info_t *""'");
}
arg14 = (svn_wc_traversal_info_t *)(argp14);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -31390,8 +30114,6 @@ XS(_wrap_svn_wc_get_switch_editor2) {
-
-
if (alloc11 == SWIG_NEWOBJ) free((char*)buf11);
@@ -31407,8 +30129,6 @@ XS(_wrap_svn_wc_get_switch_editor2) {
-
-
if (alloc11 == SWIG_NEWOBJ) free((char*)buf11);
@@ -31452,7 +30172,6 @@ XS(_wrap_svn_wc_get_switch_editor) {
int val6 ;
int ecode6 = 0 ;
int res8 ;
- int res10 ;
int res11 ;
char *buf11 = 0 ;
int alloc11 = 0 ;
@@ -31466,11 +30185,12 @@ XS(_wrap_svn_wc_get_switch_editor) {
{
_global_pool = arg15 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg12 = &temp12;
arg13 = &temp13;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_switch_editor(anchor,target,switch_url,use_commit_times,recurse,notify_func,notify_baton,cancel_func,cancel_baton,diff3_cmd,ti,pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -31509,26 +30229,20 @@ XS(_wrap_svn_wc_get_switch_editor) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_get_switch_editor" "', argument " "8"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_switch_editor" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(7);
}
- res10 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_switch_editor" "', argument " "10"" of type '" "void *""'");
- }
- res11 = SWIG_AsCharPtrAndSize(ST(9), &buf11, NULL, &alloc11);
+ res11 = SWIG_AsCharPtrAndSize(ST(8), &buf11, NULL, &alloc11);
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_get_switch_editor" "', argument " "11"" of type '" "char const *""'");
}
arg11 = (char *)(buf11);
- res14 = SWIG_ConvertPtr(ST(10), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res14 = SWIG_ConvertPtr(ST(9), &argp14,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_switch_editor" "', argument " "14"" of type '" "svn_wc_traversal_info_t *""'");
}
arg14 = (svn_wc_traversal_info_t *)(argp14);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -31573,8 +30287,6 @@ XS(_wrap_svn_wc_get_switch_editor) {
-
-
if (alloc11 == SWIG_NEWOBJ) free((char*)buf11);
@@ -31590,8 +30302,6 @@ XS(_wrap_svn_wc_get_switch_editor) {
-
-
if (alloc11 == SWIG_NEWOBJ) free((char*)buf11);
@@ -31622,9 +30332,11 @@ XS(_wrap_svn_wc_prop_list2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 4)) {
@@ -31707,6 +30419,7 @@ XS(_wrap_svn_wc_prop_list) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -31785,9 +30498,11 @@ XS(_wrap_svn_wc_get_pristine_props) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 4)) {
@@ -31875,9 +30590,11 @@ XS(_wrap_svn_wc_prop_get2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 5)) {
@@ -31975,6 +30692,7 @@ XS(_wrap_svn_wc_prop_get) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -32074,7 +30792,6 @@ XS(_wrap_svn_wc_prop_set4) {
int ecode6 = 0 ;
void *argp7 = 0 ;
int res7 = 0 ;
- int res9 ;
int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -32082,8 +30799,9 @@ XS(_wrap_svn_wc_prop_set4) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_prop_set4(wc_ctx,local_abspath,name,value,depth,skip_checks,changelist_filter,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -32126,26 +30844,20 @@ XS(_wrap_svn_wc_prop_set4) {
}
arg7 = (apr_array_header_t *)(argp7);
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_prop_set4" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
- }
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_prop_set4" "', argument " "9"" of type '" "void *""'");
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(7);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_prop_set4" "', argument " "10"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
+ res11 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg11), 0, 0);
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_prop_set4" "', argument " "11"" of type '" "void *""'");
}
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -32180,8 +30892,6 @@ XS(_wrap_svn_wc_prop_set4) {
-
-
XSRETURN(argvi);
fail:
@@ -32194,8 +30904,6 @@ XS(_wrap_svn_wc_prop_set4) {
-
-
SWIG_croak_null();
}
}
@@ -32230,6 +30938,7 @@ XS(_wrap_svn_wc_prop_set3) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_prop_set3(name,value,path,adm_access,skip_checks,notify_func,notify_baton,pool);");
@@ -32347,6 +31056,7 @@ XS(_wrap_svn_wc_prop_set2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_prop_set2(name,value,path,adm_access,skip_checks,pool);");
@@ -32447,6 +31157,7 @@ XS(_wrap_svn_wc_prop_set) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_prop_set(name,value,path,adm_access,pool);");
@@ -32650,6 +31361,7 @@ XS(_wrap_svn_wc_canonicalize_svn_prop) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 7) || (items > 8)) {
@@ -32802,20 +31514,21 @@ XS(_wrap_svn_wc_get_diff_editor6) {
void *argp14 = 0 ;
int res14 = 0 ;
int res15 ;
- int res17 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg18 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg19 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
- if ((items < 15) || (items > 17)) {
+ if ((items < 14) || (items > 16)) {
SWIG_croak("Usage: svn_wc_get_diff_editor6(wc_ctx,anchor_abspath,target,depth,ignore_ancestry,show_copies_as_adds,use_git_diff_format,use_text_base,reverse_order,server_performs_filtering,changelist_filter,callbacks,callback_baton,cancel_func,cancel_baton,result_pool,scratch_pool);");
}
res3 = SWIG_ConvertPtr(ST(0), &argp3,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -32883,19 +31596,13 @@ XS(_wrap_svn_wc_get_diff_editor6) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_diff_editor6" "', argument " "15"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(13), (void**)(&arg16), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor6" "', argument " "16"" of type '" "svn_cancel_func_t""'");
- }
+ arg16 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg17 = ST(13);
}
- res17 = SWIG_ConvertPtr(ST(14),SWIG_as_voidptrptr(&arg17), 0, 0);
- if (!SWIG_IsOK(res17)) {
- SWIG_exception_fail(SWIG_ArgError(res17), "in method '" "svn_wc_get_diff_editor6" "', argument " "17"" of type '" "void *""'");
- }
- if (items > 15) {
+ if (items > 14) {
}
- if (items > 16) {
+ if (items > 15) {
}
{
@@ -32943,8 +31650,6 @@ XS(_wrap_svn_wc_get_diff_editor6) {
-
-
XSRETURN(argvi);
fail:
@@ -32964,8 +31669,6 @@ XS(_wrap_svn_wc_get_diff_editor6) {
-
-
SWIG_croak_null();
}
}
@@ -33004,7 +31707,6 @@ XS(_wrap_svn_wc_get_diff_editor5) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res10 ;
void *argp11 = 0 ;
int res11 = 0 ;
svn_delta_editor_t *temp12 ;
@@ -33015,10 +31717,11 @@ XS(_wrap_svn_wc_get_diff_editor5) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg12 = &temp12;
arg13 = &temp13;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_diff_editor5(anchor,target,callbacks,callback_baton,depth,ignore_ancestry,use_text_base,reverse_order,cancel_func,cancel_baton,changelist_filter,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -33061,21 +31764,15 @@ XS(_wrap_svn_wc_get_diff_editor5) {
}
arg8 = (svn_boolean_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor5" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_diff_editor5" "', argument " "10"" of type '" "void *""'");
- }
- res11 = SWIG_ConvertPtr(ST(10), &argp11,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ res11 = SWIG_ConvertPtr(ST(9), &argp11,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_get_diff_editor5" "', argument " "11"" of type '" "apr_array_header_t const *""'");
}
arg11 = (apr_array_header_t *)(argp11);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -33118,8 +31815,6 @@ XS(_wrap_svn_wc_get_diff_editor5) {
-
-
XSRETURN(argvi);
fail:
@@ -33134,8 +31829,6 @@ XS(_wrap_svn_wc_get_diff_editor5) {
-
-
SWIG_croak_null();
}
}
@@ -33174,7 +31867,6 @@ XS(_wrap_svn_wc_get_diff_editor4) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res10 ;
void *argp11 = 0 ;
int res11 = 0 ;
svn_delta_editor_t *temp12 ;
@@ -33185,10 +31877,11 @@ XS(_wrap_svn_wc_get_diff_editor4) {
{
_global_pool = arg14 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg12 = &temp12;
arg13 = &temp13;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_diff_editor4(anchor,target,callbacks,callback_baton,depth,ignore_ancestry,use_text_base,reverse_order,cancel_func,cancel_baton,changelist_filter,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -33231,21 +31924,15 @@ XS(_wrap_svn_wc_get_diff_editor4) {
}
arg8 = (svn_boolean_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor4" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_diff_editor4" "', argument " "10"" of type '" "void *""'");
- }
- res11 = SWIG_ConvertPtr(ST(10), &argp11,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ res11 = SWIG_ConvertPtr(ST(9), &argp11,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
if (!SWIG_IsOK(res11)) {
SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_get_diff_editor4" "', argument " "11"" of type '" "apr_array_header_t const *""'");
}
arg11 = (apr_array_header_t *)(argp11);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -33288,8 +31975,6 @@ XS(_wrap_svn_wc_get_diff_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -33304,8 +31989,6 @@ XS(_wrap_svn_wc_get_diff_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -33343,7 +32026,6 @@ XS(_wrap_svn_wc_get_diff_editor3) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res10 ;
svn_delta_editor_t *temp11 ;
void *temp12 ;
int argvi = 0;
@@ -33352,10 +32034,11 @@ XS(_wrap_svn_wc_get_diff_editor3) {
{
_global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg11 = &temp11;
arg12 = &temp12;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_diff_editor3(anchor,target,callbacks,callback_baton,recurse,ignore_ancestry,use_text_base,reverse_order,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -33398,16 +32081,10 @@ XS(_wrap_svn_wc_get_diff_editor3) {
}
arg8 = (svn_boolean_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor3" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_diff_editor3" "', argument " "10"" of type '" "void *""'");
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -33449,8 +32126,6 @@ XS(_wrap_svn_wc_get_diff_editor3) {
-
-
XSRETURN(argvi);
fail:
@@ -33464,8 +32139,6 @@ XS(_wrap_svn_wc_get_diff_editor3) {
-
-
SWIG_croak_null();
}
}
@@ -33503,7 +32176,6 @@ XS(_wrap_svn_wc_get_diff_editor2) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res10 ;
svn_delta_editor_t *temp11 ;
void *temp12 ;
int argvi = 0;
@@ -33512,10 +32184,11 @@ XS(_wrap_svn_wc_get_diff_editor2) {
{
_global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg11 = &temp11;
arg12 = &temp12;
- if ((items < 10) || (items > 11)) {
+ if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_get_diff_editor2(anchor,target,callbacks,callback_baton,recurse,ignore_ancestry,use_text_base,reverse_order,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -33558,16 +32231,10 @@ XS(_wrap_svn_wc_get_diff_editor2) {
}
arg8 = (svn_boolean_t)(val8);
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg9), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor2" "', argument " "9"" of type '" "svn_cancel_func_t""'");
- }
- }
- res10 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg10), 0, 0);
- if (!SWIG_IsOK(res10)) {
- SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_get_diff_editor2" "', argument " "10"" of type '" "void *""'");
+ arg9 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg10 = ST(8);
}
- if (items > 10) {
+ if (items > 9) {
}
{
@@ -33609,8 +32276,6 @@ XS(_wrap_svn_wc_get_diff_editor2) {
-
-
XSRETURN(argvi);
fail:
@@ -33624,8 +32289,6 @@ XS(_wrap_svn_wc_get_diff_editor2) {
-
-
SWIG_croak_null();
}
}
@@ -33660,7 +32323,6 @@ XS(_wrap_svn_wc_get_diff_editor) {
int ecode6 = 0 ;
int val7 ;
int ecode7 = 0 ;
- int res9 ;
svn_delta_editor_t *temp10 ;
void *temp11 ;
int argvi = 0;
@@ -33669,10 +32331,11 @@ XS(_wrap_svn_wc_get_diff_editor) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg10 = &temp10;
arg11 = &temp11;
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_get_diff_editor(anchor,target,callbacks,callback_baton,recurse,use_text_base,reverse_order,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -33710,16 +32373,10 @@ XS(_wrap_svn_wc_get_diff_editor) {
}
arg7 = (svn_boolean_t)(val7);
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_diff_editor" "', argument " "8"" of type '" "svn_cancel_func_t""'");
- }
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(7);
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
- if (!SWIG_IsOK(res9)) {
- SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_get_diff_editor" "', argument " "9"" of type '" "void *""'");
- }
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -33760,8 +32417,6 @@ XS(_wrap_svn_wc_get_diff_editor) {
-
-
XSRETURN(argvi);
fail:
@@ -33774,8 +32429,6 @@ XS(_wrap_svn_wc_get_diff_editor) {
-
-
SWIG_croak_null();
}
}
@@ -33814,15 +32467,15 @@ XS(_wrap_svn_wc_diff6) {
int ecode8 = 0 ;
void *argp9 = 0 ;
int res9 = 0 ;
- int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_diff6(wc_ctx,target_abspath,callbacks,callback_baton,depth,ignore_ancestry,show_copies_as_adds,use_git_diff_format,changelist_filter,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -33870,16 +32523,10 @@ XS(_wrap_svn_wc_diff6) {
}
arg9 = (apr_array_header_t *)(argp9);
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_diff6" "', argument " "10"" of type '" "svn_cancel_func_t""'");
- }
- }
- res11 = SWIG_ConvertPtr(ST(10),SWIG_as_voidptrptr(&arg11), 0, 0);
- if (!SWIG_IsOK(res11)) {
- SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_diff6" "', argument " "11"" of type '" "void *""'");
+ arg10 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg11 = ST(9);
}
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -33914,8 +32561,6 @@ XS(_wrap_svn_wc_diff6) {
-
-
XSRETURN(argvi);
fail:
@@ -33928,8 +32573,6 @@ XS(_wrap_svn_wc_diff6) {
-
-
SWIG_croak_null();
}
}
@@ -33966,6 +32609,7 @@ XS(_wrap_svn_wc_diff5) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_diff5(anchor,target,callbacks,callback_baton,depth,ignore_ancestry,changelist_filter,pool);");
@@ -34083,6 +32727,7 @@ XS(_wrap_svn_wc_diff4) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_diff4(anchor,target,callbacks,callback_baton,depth,ignore_ancestry,changelist_filter,pool);");
@@ -34197,6 +32842,7 @@ XS(_wrap_svn_wc_diff3) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_diff3(anchor,target,callbacks,callback_baton,recurse,ignore_ancestry,pool);");
@@ -34304,6 +32950,7 @@ XS(_wrap_svn_wc_diff2) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_diff2(anchor,target,callbacks,callback_baton,recurse,ignore_ancestry,pool);");
@@ -34408,6 +33055,7 @@ XS(_wrap_svn_wc_diff) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_diff(anchor,target,callbacks,callback_baton,recurse,pool);");
@@ -34502,9 +33150,11 @@ XS(_wrap_svn_wc_get_prop_diffs2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -34601,6 +33251,7 @@ XS(_wrap_svn_wc_get_prop_diffs) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -34735,16 +33386,16 @@ XS(_wrap_svn_wc_merge5) {
void *argp16 = 0 ;
int res16 = 0 ;
int res18 ;
- int res20 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg21 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 19) || (items > 20)) {
+ if ((items < 18) || (items > 19)) {
SWIG_croak("Usage: svn_wc_merge5(merge_props_state,wc_ctx,left_abspath,right_abspath,target_abspath,left_label,right_label,target_label,left_version,right_version,dry_run,diff3_cmd,merge_options,original_props,prop_diff,conflict_func,conflict_baton,cancel_func,cancel_baton,scratch_pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_notify_state_t, 0 | 0 );
@@ -34833,16 +33484,10 @@ XS(_wrap_svn_wc_merge5) {
SWIG_exception_fail(SWIG_ArgError(res18), "in method '" "svn_wc_merge5" "', argument " "18"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(17), (void**)(&arg19), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_merge5" "', argument " "19"" of type '" "svn_cancel_func_t""'");
- }
+ arg19 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg20 = ST(17);
}
- res20 = SWIG_ConvertPtr(ST(18),SWIG_as_voidptrptr(&arg20), 0, 0);
- if (!SWIG_IsOK(res20)) {
- SWIG_exception_fail(SWIG_ArgError(res20), "in method '" "svn_wc_merge5" "', argument " "20"" of type '" "void *""'");
- }
- if (items > 19) {
+ if (items > 18) {
}
{
@@ -34892,8 +33537,6 @@ XS(_wrap_svn_wc_merge5) {
-
-
XSRETURN(argvi);
fail:
@@ -34915,8 +33558,6 @@ XS(_wrap_svn_wc_merge5) {
-
-
SWIG_croak_null();
}
}
@@ -34980,16 +33621,16 @@ XS(_wrap_svn_wc_merge4) {
void *argp14 = 0 ;
int res14 = 0 ;
int res16 ;
- int res18 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg19 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 17) || (items > 18)) {
+ if ((items < 16) || (items > 17)) {
SWIG_croak("Usage: svn_wc_merge4(wc_ctx,left_abspath,right_abspath,target_abspath,left_label,right_label,target_label,left_version,right_version,dry_run,diff3_cmd,merge_options,prop_diff,conflict_func,conflict_baton,cancel_func,cancel_baton,scratch_pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -35068,16 +33709,10 @@ XS(_wrap_svn_wc_merge4) {
SWIG_exception_fail(SWIG_ArgError(res16), "in method '" "svn_wc_merge4" "', argument " "16"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(15), (void**)(&arg17), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_merge4" "', argument " "17"" of type '" "svn_cancel_func_t""'");
- }
- }
- res18 = SWIG_ConvertPtr(ST(16),SWIG_as_voidptrptr(&arg18), 0, 0);
- if (!SWIG_IsOK(res18)) {
- SWIG_exception_fail(SWIG_ArgError(res18), "in method '" "svn_wc_merge4" "', argument " "18"" of type '" "void *""'");
+ arg17 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg18 = ST(15);
}
- if (items > 17) {
+ if (items > 16) {
}
{
@@ -35125,8 +33760,6 @@ XS(_wrap_svn_wc_merge4) {
-
-
XSRETURN(argvi);
fail:
@@ -35146,8 +33779,6 @@ XS(_wrap_svn_wc_merge4) {
-
-
SWIG_croak_null();
}
}
@@ -35209,6 +33840,7 @@ XS(_wrap_svn_wc_merge3) {
{
_global_pool = arg15 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 13) || (items > 14)) {
@@ -35397,6 +34029,7 @@ XS(_wrap_svn_wc_merge2) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 10) || (items > 11)) {
@@ -35561,6 +34194,7 @@ XS(_wrap_svn_wc_merge) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg9 = &temp9;
if ((items < 9) || (items > 10)) {
@@ -35703,15 +34337,15 @@ XS(_wrap_svn_wc_merge_props3) {
int val8 ;
int ecode8 = 0 ;
int res10 ;
- int res12 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 12) || (items > 13)) {
+ if ((items < 11) || (items > 12)) {
SWIG_croak("Usage: svn_wc_merge_props3(state,wc_ctx,local_abspath,left_version,right_version,baseprops,propchanges,dry_run,conflict_func,conflict_baton,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_state_t, 0 | 0 );
@@ -35740,8 +34374,10 @@ XS(_wrap_svn_wc_merge_props3) {
}
arg5 = (svn_wc_conflict_version_t *)(argp5);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
res7 = SWIG_ConvertPtr(ST(6), &argp7,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
@@ -35765,16 +34401,10 @@ XS(_wrap_svn_wc_merge_props3) {
SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_merge_props3" "', argument " "10"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(10), (void**)(&arg11), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_merge_props3" "', argument " "11"" of type '" "svn_cancel_func_t""'");
- }
+ arg11 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg12 = ST(10);
}
- res12 = SWIG_ConvertPtr(ST(11),SWIG_as_voidptrptr(&arg12), 0, 0);
- if (!SWIG_IsOK(res12)) {
- SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_merge_props3" "', argument " "12"" of type '" "void *""'");
- }
- if (items > 12) {
+ if (items > 11) {
}
{
@@ -35810,8 +34440,6 @@ XS(_wrap_svn_wc_merge_props3) {
-
-
XSRETURN(argvi);
fail:
@@ -35825,8 +34453,6 @@ XS(_wrap_svn_wc_merge_props3) {
-
-
SWIG_croak_null();
}
}
@@ -35865,6 +34491,7 @@ XS(_wrap_svn_wc_merge_props2) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 9) || (items > 10)) {
SWIG_croak("Usage: svn_wc_merge_props2(state,path,adm_access,baseprops,propchanges,base_merge,dry_run,conflict_func,conflict_baton,pool);");
@@ -35885,8 +34512,10 @@ XS(_wrap_svn_wc_merge_props2) {
}
arg3 = (svn_wc_adm_access_t *)(argp3);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg4 = svn_swig_pl_hash_to_prophash(ST(3), _global_pool);
}
res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
@@ -35996,6 +34625,7 @@ XS(_wrap_svn_wc_merge_props) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_merge_props(state,path,adm_access,baseprops,propchanges,base_merge,dry_run,pool);");
@@ -36016,8 +34646,10 @@ XS(_wrap_svn_wc_merge_props) {
}
arg3 = (svn_wc_adm_access_t *)(argp3);
{
- if (_global_pool == NULL)
- _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ if (_global_pool == NULL) {
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ SPAGAIN;
+ }
arg4 = svn_swig_pl_hash_to_prophash(ST(3), _global_pool);
}
res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
@@ -36112,6 +34744,7 @@ XS(_wrap_svn_wc_merge_prop_diffs) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_merge_prop_diffs(state,path,adm_access,propchanges,base_merge,dry_run,pool);");
@@ -36212,9 +34845,11 @@ XS(_wrap_svn_wc_get_pristine_contents2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 4)) {
@@ -36259,7 +34894,11 @@ XS(_wrap_svn_wc_get_pristine_contents2) {
}
}
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_from_stream(*arg1); argvi++ ;
+ SV *tmp;
+ PUTBACK;
+ tmp = svn_swig_pl_from_stream(*arg1);
+ SPAGAIN;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = tmp; argvi++ ;
}
@@ -36295,9 +34934,11 @@ XS(_wrap_svn_wc_get_pristine_contents) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 1) || (items > 3)) {
@@ -36337,7 +34978,11 @@ XS(_wrap_svn_wc_get_pristine_contents) {
}
}
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_from_stream(*arg1); argvi++ ;
+ SV *tmp;
+ PUTBACK;
+ tmp = svn_swig_pl_from_stream(*arg1);
+ SPAGAIN;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = tmp; argvi++ ;
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -36370,6 +35015,7 @@ XS(_wrap_svn_wc_get_pristine_copy_path) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
if ((items < 1) || (items > 2)) {
@@ -36425,6 +35071,139 @@ XS(_wrap_svn_wc_get_pristine_copy_path) {
}
+XS(_wrap_svn_wc_cleanup4) {
+ {
+ svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ svn_boolean_t arg3 ;
+ svn_boolean_t arg4 ;
+ svn_boolean_t arg5 ;
+ svn_boolean_t arg6 ;
+ svn_cancel_func_t arg7 = (svn_cancel_func_t) 0 ;
+ void *arg8 = (void *) 0 ;
+ svn_wc_notify_func2_t arg9 = (svn_wc_notify_func2_t) 0 ;
+ void *arg10 = (void *) 0 ;
+ apr_pool_t *arg11 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int val6 ;
+ int ecode6 = 0 ;
+ int res10 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
+ }
+ if ((items < 9) || (items > 10)) {
+ SWIG_croak("Usage: svn_wc_cleanup4(wc_ctx,local_abspath,break_locks,fix_recorded_timestamps,clear_dav_cache,vacuum_pristines,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_cleanup4" "', argument " "1"" of type '" "svn_wc_context_t *""'");
+ }
+ arg1 = (svn_wc_context_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_cleanup4" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "svn_wc_cleanup4" "', argument " "3"" of type '" "svn_boolean_t""'");
+ }
+ arg3 = (svn_boolean_t)(val3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_cleanup4" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_wc_cleanup4" "', argument " "5"" of type '" "svn_boolean_t""'");
+ }
+ arg5 = (svn_boolean_t)(val5);
+ ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val6);
+ if (!SWIG_IsOK(ecode6)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_wc_cleanup4" "', argument " "6"" of type '" "svn_boolean_t""'");
+ }
+ arg6 = (svn_boolean_t)(val6);
+ {
+ arg7 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg8 = ST(6);
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg9), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_cleanup4" "', argument " "9"" of type '" "svn_wc_notify_func2_t""'");
+ }
+ }
+ res10 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg10), 0, 0);
+ if (!SWIG_IsOK(res10)) {
+ SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_cleanup4" "', argument " "10"" of type '" "void *""'");
+ }
+ if (items > 9) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_cleanup4(arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,arg11);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_cleanup3) {
{
svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
@@ -36438,15 +35217,15 @@ XS(_wrap_svn_wc_cleanup3) {
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
- int res4 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 4) || (items > 5)) {
+ if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_cleanup3(wc_ctx,local_abspath,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -36460,16 +35239,10 @@ XS(_wrap_svn_wc_cleanup3) {
}
arg2 = (char *)(buf2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_cleanup3" "', argument " "3"" of type '" "svn_cancel_func_t""'");
- }
- }
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_cleanup3" "', argument " "4"" of type '" "void *""'");
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
}
- if (items > 4) {
+ if (items > 3) {
}
{
@@ -36497,15 +35270,11 @@ XS(_wrap_svn_wc_cleanup3) {
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
-
-
XSRETURN(argvi);
fail:
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
-
-
SWIG_croak_null();
}
}
@@ -36525,15 +35294,15 @@ XS(_wrap_svn_wc_cleanup2) {
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
- int res4 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 4) || (items > 5)) {
+ if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_cleanup2(path,diff3_cmd,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -36547,16 +35316,10 @@ XS(_wrap_svn_wc_cleanup2) {
}
arg2 = (char *)(buf2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_cleanup2" "', argument " "3"" of type '" "svn_cancel_func_t""'");
- }
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
}
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_cleanup2" "', argument " "4"" of type '" "void *""'");
- }
- if (items > 4) {
+ if (items > 3) {
}
{
@@ -36584,15 +35347,11 @@ XS(_wrap_svn_wc_cleanup2) {
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
-
-
SWIG_croak_null();
}
}
@@ -36615,15 +35374,15 @@ XS(_wrap_svn_wc_cleanup) {
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
- int res5 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 5) || (items > 6)) {
+ if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_cleanup(path,optional_adm_access,diff3_cmd,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -36642,16 +35401,10 @@ XS(_wrap_svn_wc_cleanup) {
}
arg3 = (char *)(buf3);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_cleanup" "', argument " "4"" of type '" "svn_cancel_func_t""'");
- }
+ arg4 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg5 = ST(3);
}
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_cleanup" "', argument " "5"" of type '" "void *""'");
- }
- if (items > 5) {
+ if (items > 4) {
}
{
@@ -36680,16 +35433,12 @@ XS(_wrap_svn_wc_cleanup) {
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
-
-
SWIG_croak_null();
}
}
@@ -36713,7 +35462,6 @@ XS(_wrap_svn_wc_upgrade) {
char *buf2 = 0 ;
int alloc2 = 0 ;
int res4 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -36721,8 +35469,9 @@ XS(_wrap_svn_wc_upgrade) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_upgrade(wc_ctx,local_abspath,repos_info_func,repos_info_baton,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -36746,26 +35495,20 @@ XS(_wrap_svn_wc_upgrade) {
SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_upgrade" "', argument " "4"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_upgrade" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_upgrade" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_upgrade" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_upgrade" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -36797,8 +35540,6 @@ XS(_wrap_svn_wc_upgrade) {
-
-
XSRETURN(argvi);
fail:
@@ -36808,8 +35549,6 @@ XS(_wrap_svn_wc_upgrade) {
-
-
SWIG_croak_null();
}
}
@@ -36843,6 +35582,7 @@ XS(_wrap_svn_wc_relocate4) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_relocate4(wc_ctx,wcroot_abspath,from,to,validator,validator_baton,scratch_pool);");
@@ -36954,6 +35694,7 @@ XS(_wrap_svn_wc_relocate3) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_relocate3(path,adm_access,from,to,recurse,validator,validator_baton,pool);");
@@ -37072,6 +35813,7 @@ XS(_wrap_svn_wc_relocate2) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_relocate2(path,adm_access,from,to,recurse,validator,validator_baton,pool);");
@@ -37190,6 +35932,7 @@ XS(_wrap_svn_wc_relocate) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_relocate(path,adm_access,from,to,recurse,validator,validator_baton,pool);");
@@ -37277,6 +36020,149 @@ XS(_wrap_svn_wc_relocate) {
}
+XS(_wrap_svn_wc_revert5) {
+ {
+ svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ svn_depth_t arg3 ;
+ svn_boolean_t arg4 ;
+ apr_array_header_t *arg5 = (apr_array_header_t *) 0 ;
+ svn_boolean_t arg6 ;
+ svn_boolean_t arg7 ;
+ svn_cancel_func_t arg8 = (svn_cancel_func_t) 0 ;
+ void *arg9 = (void *) 0 ;
+ svn_wc_notify_func2_t arg10 = (svn_wc_notify_func2_t) 0 ;
+ void *arg11 = (void *) 0 ;
+ apr_pool_t *arg12 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int val3 ;
+ int ecode3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ void *argp5 = 0 ;
+ int res5 = 0 ;
+ int val6 ;
+ int ecode6 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int res11 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
+ }
+ if ((items < 10) || (items > 11)) {
+ SWIG_croak("Usage: svn_wc_revert5(wc_ctx,local_abspath,depth,use_commit_times,changelist_filter,clear_changelists,metadata_only,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revert5" "', argument " "1"" of type '" "svn_wc_context_t *""'");
+ }
+ arg1 = (svn_wc_context_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_revert5" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ ecode3 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val3);
+ if (!SWIG_IsOK(ecode3)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "svn_wc_revert5" "', argument " "3"" of type '" "svn_depth_t""'");
+ }
+ arg3 = (svn_depth_t)(val3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_revert5" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_revert5" "', argument " "5"" of type '" "apr_array_header_t const *""'");
+ }
+ arg5 = (apr_array_header_t *)(argp5);
+ ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val6);
+ if (!SWIG_IsOK(ecode6)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_wc_revert5" "', argument " "6"" of type '" "svn_boolean_t""'");
+ }
+ arg6 = (svn_boolean_t)(val6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_wc_revert5" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ {
+ arg8 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg9 = ST(7);
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert5" "', argument " "10"" of type '" "svn_wc_notify_func2_t""'");
+ }
+ }
+ res11 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg11), 0, 0);
+ if (!SWIG_IsOK(res11)) {
+ SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_revert5" "', argument " "11"" of type '" "void *""'");
+ }
+ if (items > 10) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_revert5(arg1,(char const *)arg2,arg3,arg4,(apr_array_header_t const *)arg5,arg6,arg7,arg8,arg9,arg10,arg11,arg12);
+
+
+
+ }
+ {
+ if (result) {
+ SV *exception_handler = perl_get_sv ("SVN::Error::handler", FALSE);
+
+ if (SvOK(exception_handler)) {
+ SV *callback_result;
+
+ svn_swig_pl_callback_thunk (CALL_SV, exception_handler,
+ &callback_result, "S", result,
+ SWIGTYPE_p_svn_error_t);
+ } else {
+ ST(argvi) = SWIG_NewPointerObj(result, SWIGTYPE_p_svn_error_t, 0);
+ argvi++;
+ }
+ }
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_revert4) {
{
svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
@@ -37301,7 +36187,6 @@ XS(_wrap_svn_wc_revert4) {
int ecode4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
- int res7 ;
int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -37309,8 +36194,9 @@ XS(_wrap_svn_wc_revert4) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_revert4(wc_ctx,local_abspath,depth,use_commit_times,changelist_filter,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -37339,26 +36225,20 @@ XS(_wrap_svn_wc_revert4) {
}
arg5 = (apr_array_header_t *)(argp5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert4" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_revert4" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert4" "', argument " "8"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
+ res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
if (!SWIG_IsOK(res9)) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_revert4" "', argument " "9"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -37391,8 +36271,6 @@ XS(_wrap_svn_wc_revert4) {
-
-
XSRETURN(argvi);
fail:
@@ -37403,8 +36281,6 @@ XS(_wrap_svn_wc_revert4) {
-
-
SWIG_croak_null();
}
}
@@ -37434,7 +36310,6 @@ XS(_wrap_svn_wc_revert3) {
int ecode4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
- int res7 ;
int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -37442,8 +36317,9 @@ XS(_wrap_svn_wc_revert3) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_revert3(path,parent_access,depth,use_commit_times,changelist_filter,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -37472,26 +36348,20 @@ XS(_wrap_svn_wc_revert3) {
}
arg5 = (apr_array_header_t *)(argp5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert3" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_revert3" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert3" "', argument " "8"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
+ res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
if (!SWIG_IsOK(res9)) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_revert3" "', argument " "9"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -37524,8 +36394,6 @@ XS(_wrap_svn_wc_revert3) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -37536,8 +36404,6 @@ XS(_wrap_svn_wc_revert3) {
-
-
SWIG_croak_null();
}
}
@@ -37564,7 +36430,6 @@ XS(_wrap_svn_wc_revert2) {
int ecode3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -37572,8 +36437,9 @@ XS(_wrap_svn_wc_revert2) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_revert2(path,parent_access,recursive,use_commit_times,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -37597,26 +36463,20 @@ XS(_wrap_svn_wc_revert2) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert2" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_revert2" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert2" "', argument " "7"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_revert2" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -37648,8 +36508,6 @@ XS(_wrap_svn_wc_revert2) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -37659,8 +36517,6 @@ XS(_wrap_svn_wc_revert2) {
-
-
SWIG_croak_null();
}
}
@@ -37687,7 +36543,6 @@ XS(_wrap_svn_wc_revert) {
int ecode3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -37695,8 +36550,9 @@ XS(_wrap_svn_wc_revert) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_revert(path,parent_access,recursive,use_commit_times,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -37720,26 +36576,20 @@ XS(_wrap_svn_wc_revert) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_revert" "', argument " "6"" of type '" "void *""'");
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(4);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
+ int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg7), SWIGTYPE_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revert" "', argument " "7"" of type '" "svn_wc_notify_func_t""'");
}
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
+ res8 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg8), 0, 0);
if (!SWIG_IsOK(res8)) {
SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_revert" "', argument " "8"" of type '" "void *""'");
}
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -37771,8 +36621,6 @@ XS(_wrap_svn_wc_revert) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -37782,8 +36630,6 @@ XS(_wrap_svn_wc_revert) {
-
-
SWIG_croak_null();
}
}
@@ -37809,6 +36655,7 @@ XS(_wrap_svn_wc_restore) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_restore(wc_ctx,local_abspath,use_commit_times,scratch_pool);");
@@ -37889,6 +36736,7 @@ XS(_wrap_svn_wc_create_tmp_file2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -37976,6 +36824,7 @@ XS(_wrap_svn_wc_create_tmp_file) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -38060,6 +36909,7 @@ XS(_wrap_svn_wc_translated_file2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -38158,6 +37008,7 @@ XS(_wrap_svn_wc_translated_file) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -38253,6 +37104,7 @@ XS(_wrap_svn_wc_translated_stream) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -38304,7 +37156,11 @@ XS(_wrap_svn_wc_translated_stream) {
}
}
{
- if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_from_stream(*arg1); argvi++ ;
+ SV *tmp;
+ PUTBACK;
+ tmp = svn_swig_pl_from_stream(*arg1);
+ SPAGAIN;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = tmp; argvi++ ;
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -38352,9 +37208,11 @@ XS(_wrap_svn_wc_transmit_text_deltas3) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = &temp2;
@@ -38377,7 +37235,7 @@ XS(_wrap_svn_wc_transmit_text_deltas3) {
}
arg5 = (svn_boolean_t)(val5);
{
- svn_delta_make_editor(&arg6, &arg7, ST(3), _global_pool);
+ svn_swig_pl_make_editor(&arg6, &arg7, ST(3), _global_pool);
}
if (items > 4) {
@@ -38472,6 +37330,7 @@ XS(_wrap_svn_wc_transmit_text_deltas2) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
arg2 = temp2;
@@ -38494,7 +37353,7 @@ XS(_wrap_svn_wc_transmit_text_deltas2) {
}
arg5 = (svn_boolean_t)(val5);
{
- svn_delta_make_editor(&arg6, &arg7, ST(3), _global_pool);
+ svn_swig_pl_make_editor(&arg6, &arg7, ST(3), _global_pool);
}
if (items > 4) {
@@ -38529,7 +37388,7 @@ XS(_wrap_svn_wc_transmit_text_deltas2) {
}
}
{
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,59,%append_output@*/ if (argvi >= items) EXTEND(sp,1); /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,56,%set_output@*/ ST(argvi) = sv_2mortal(newSVpv(svn_md5_digest_to_cstring(arg2,
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,59,%append_output@*/ if (argvi >= items) EXTEND(sp,1); /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,56,%set_output@*/ ST(argvi) = sv_2mortal(newSVpv(svn_md5_digest_to_cstring(arg2,
_global_pool),
0)); argvi++ /*@SWIG@*/
@@ -38580,6 +37439,7 @@ XS(_wrap_svn_wc_transmit_text_deltas) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg6 = &temp6;
if ((items < 4) || (items > 5)) {
@@ -38601,7 +37461,7 @@ XS(_wrap_svn_wc_transmit_text_deltas) {
}
arg3 = (svn_boolean_t)(val3);
{
- svn_delta_make_editor(&arg4, &arg5, ST(3), _global_pool);
+ svn_swig_pl_make_editor(&arg4, &arg5, ST(3), _global_pool);
}
if (items > 4) {
@@ -38671,6 +37531,7 @@ XS(_wrap_svn_wc_transmit_prop_deltas2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_transmit_prop_deltas2(wc_ctx,local_abspath,editor,baton,scratch_pool);");
@@ -38686,7 +37547,7 @@ XS(_wrap_svn_wc_transmit_prop_deltas2) {
}
arg2 = (char *)(buf2);
{
- svn_delta_make_editor(&arg3, &arg4, ST(2), _global_pool);
+ svn_swig_pl_make_editor(&arg3, &arg4, ST(2), _global_pool);
}
if (items > 3) {
@@ -38750,6 +37611,7 @@ XS(_wrap_svn_wc_transmit_prop_deltas) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg6 = &temp6;
if ((items < 4) || (items > 5)) {
@@ -38771,7 +37633,7 @@ XS(_wrap_svn_wc_transmit_prop_deltas) {
}
arg3 = (svn_wc_entry_t *)(argp3);
{
- svn_delta_make_editor(&arg4, &arg5, ST(3), _global_pool);
+ svn_swig_pl_make_editor(&arg4, &arg5, ST(3), _global_pool);
}
if (items > 4) {
@@ -38835,6 +37697,7 @@ XS(_wrap_svn_wc_get_default_ignores) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 1) || (items > 2)) {
@@ -38906,9 +37769,11 @@ XS(_wrap_svn_wc_get_ignores2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 5)) {
@@ -38994,6 +37859,7 @@ XS(_wrap_svn_wc_get_ignores) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 2) || (items > 3)) {
@@ -39066,6 +37932,7 @@ XS(_wrap_svn_wc_match_ignore_list) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_match_ignore_list(str,list,pool);");
@@ -39076,7 +37943,7 @@ XS(_wrap_svn_wc_match_ignore_list) {
}
arg1 = (char *)(buf1);
{
- arg2 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(1),
+ arg2 = svn_swig_pl_strings_to_array(ST(1),
_global_pool);
}
if (items > 2) {
@@ -39122,6 +37989,7 @@ XS(_wrap_svn_wc_add_lock2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_add_lock2(wc_ctx,abspath,lock,scratch_pool);");
@@ -39201,6 +38069,7 @@ XS(_wrap_svn_wc_add_lock) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_add_lock(path,lock,adm_access,pool);");
@@ -39277,6 +38146,7 @@ XS(_wrap_svn_wc_remove_lock2) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_remove_lock2(wc_ctx,local_abspath,scratch_pool);");
@@ -39346,6 +38216,7 @@ XS(_wrap_svn_wc_remove_lock) {
{
_global_pool = arg3 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 2) || (items > 3)) {
SWIG_croak("Usage: svn_wc_remove_lock(path,adm_access,pool);");
@@ -39801,19 +38672,20 @@ XS(_wrap_svn_wc_revision_status2) {
int alloc4 = 0 ;
int val5 ;
int ecode5 = 0 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 6) || (items > 8)) {
+ if ((items < 5) || (items > 7)) {
SWIG_croak("Usage: svn_wc_revision_status2(wc_ctx,local_abspath,trail_url,committed,cancel_func,cancel_baton,result_pool,scratch_pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -39837,19 +38709,13 @@ XS(_wrap_svn_wc_revision_status2) {
}
arg5 = (svn_boolean_t)(val5);
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revision_status2" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_revision_status2" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(4);
}
- if (items > 6) {
+ if (items > 5) {
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -39884,8 +38750,6 @@ XS(_wrap_svn_wc_revision_status2) {
-
-
XSRETURN(argvi);
fail:
@@ -39895,8 +38759,6 @@ XS(_wrap_svn_wc_revision_status2) {
-
-
SWIG_croak_null();
}
}
@@ -39921,16 +38783,16 @@ XS(_wrap_svn_wc_revision_status) {
int alloc3 = 0 ;
int val4 ;
int ecode4 = 0 ;
- int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
- if ((items < 5) || (items > 6)) {
+ if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_revision_status(wc_path,trail_url,committed,cancel_func,cancel_baton,pool);");
}
res2 = SWIG_AsCharPtrAndSize(ST(0), &buf2, NULL, &alloc2);
@@ -39949,16 +38811,10 @@ XS(_wrap_svn_wc_revision_status) {
}
arg4 = (svn_boolean_t)(val4);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg5), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_revision_status" "', argument " "5"" of type '" "svn_cancel_func_t""'");
- }
+ arg5 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg6 = ST(3);
}
- res6 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_revision_status" "', argument " "6"" of type '" "void *""'");
- }
- if (items > 5) {
+ if (items > 4) {
}
{
@@ -39991,8 +38847,6 @@ XS(_wrap_svn_wc_revision_status) {
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
-
-
XSRETURN(argvi);
fail:
@@ -40000,8 +38854,6 @@ XS(_wrap_svn_wc_revision_status) {
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
-
-
SWIG_croak_null();
}
}
@@ -40032,7 +38884,6 @@ XS(_wrap_svn_wc_set_changelist2) {
int ecode4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
- int res7 ;
int res9 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -40040,8 +38891,9 @@ XS(_wrap_svn_wc_set_changelist2) {
{
_global_pool = arg10 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 9) || (items > 10)) {
+ if ((items < 8) || (items > 9)) {
SWIG_croak("Usage: svn_wc_set_changelist2(wc_ctx,local_abspath,changelist,depth,changelist_filter,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -40070,26 +38922,20 @@ XS(_wrap_svn_wc_set_changelist2) {
}
arg5 = (apr_array_header_t *)(argp5);
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_set_changelist2" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
- }
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_set_changelist2" "', argument " "7"" of type '" "void *""'");
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg8), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_set_changelist2" "', argument " "8"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res9 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg9), 0, 0);
+ res9 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg9), 0, 0);
if (!SWIG_IsOK(res9)) {
SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_set_changelist2" "', argument " "9"" of type '" "void *""'");
}
- if (items > 9) {
+ if (items > 8) {
}
{
@@ -40122,8 +38968,6 @@ XS(_wrap_svn_wc_set_changelist2) {
-
-
XSRETURN(argvi);
fail:
@@ -40134,8 +38978,6 @@ XS(_wrap_svn_wc_set_changelist2) {
-
-
SWIG_croak_null();
}
}
@@ -40160,7 +39002,6 @@ XS(_wrap_svn_wc_set_changelist) {
int alloc2 = 0 ;
void *argp3 = 0 ;
int res3 = 0 ;
- int res5 ;
int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -40168,8 +39009,9 @@ XS(_wrap_svn_wc_set_changelist) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_set_changelist(path,changelist,adm_access,cancel_func,cancel_baton,notify_func,notify_baton,pool);");
}
res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
@@ -40188,26 +39030,20 @@ XS(_wrap_svn_wc_set_changelist) {
}
arg3 = (svn_wc_adm_access_t *)(argp3);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_set_changelist" "', argument " "4"" of type '" "svn_cancel_func_t""'");
- }
- }
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_set_changelist" "', argument " "5"" of type '" "void *""'");
+ arg4 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg5 = ST(3);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_set_changelist" "', argument " "6"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
+ res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_set_changelist" "', argument " "7"" of type '" "void *""'");
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -40238,8 +39074,6 @@ XS(_wrap_svn_wc_set_changelist) {
-
-
XSRETURN(argvi);
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
@@ -40248,8 +39082,6 @@ XS(_wrap_svn_wc_set_changelist) {
-
-
SWIG_croak_null();
}
}
@@ -40277,15 +39109,15 @@ XS(_wrap_svn_wc_get_changelists) {
void *argp4 = 0 ;
int res4 = 0 ;
int res6 ;
- int res8 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 8) || (items > 9)) {
+ if ((items < 7) || (items > 8)) {
SWIG_croak("Usage: svn_wc_get_changelists(wc_ctx,local_abspath,depth,changelist_filter,callback_func,callback_baton,cancel_func,cancel_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -40319,16 +39151,10 @@ XS(_wrap_svn_wc_get_changelists) {
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_get_changelists" "', argument " "6"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg7), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_changelists" "', argument " "7"" of type '" "svn_cancel_func_t""'");
- }
+ arg7 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg8 = ST(6);
}
- res8 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg8), 0, 0);
- if (!SWIG_IsOK(res8)) {
- SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_get_changelists" "', argument " "8"" of type '" "void *""'");
- }
- if (items > 8) {
+ if (items > 7) {
}
{
@@ -40360,8 +39186,6 @@ XS(_wrap_svn_wc_get_changelists) {
-
-
XSRETURN(argvi);
fail:
@@ -40371,8 +39195,6 @@ XS(_wrap_svn_wc_get_changelists) {
-
-
SWIG_croak_null();
}
}
@@ -40396,7 +39218,6 @@ XS(_wrap_svn_wc_crop_tree2) {
int alloc2 = 0 ;
int val3 ;
int ecode3 = 0 ;
- int res5 ;
int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -40404,8 +39225,9 @@ XS(_wrap_svn_wc_crop_tree2) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_crop_tree2(wc_ctx,local_abspath,depth,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -40424,26 +39246,20 @@ XS(_wrap_svn_wc_crop_tree2) {
}
arg3 = (svn_depth_t)(val3);
{
- int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_crop_tree2" "', argument " "4"" of type '" "svn_cancel_func_t""'");
- }
- }
- res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_crop_tree2" "', argument " "5"" of type '" "void *""'");
+ arg4 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg5 = ST(3);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_crop_tree2" "', argument " "6"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
+ res7 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_crop_tree2" "', argument " "7"" of type '" "void *""'");
}
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -40474,8 +39290,6 @@ XS(_wrap_svn_wc_crop_tree2) {
-
-
XSRETURN(argvi);
fail:
@@ -40484,8 +39298,6 @@ XS(_wrap_svn_wc_crop_tree2) {
-
-
SWIG_croak_null();
}
}
@@ -40510,15 +39322,15 @@ XS(_wrap_svn_wc_crop_tree) {
int val3 ;
int ecode3 = 0 ;
int res5 ;
- int res7 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 7) || (items > 8)) {
+ if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_crop_tree(anchor,target,depth,notify_func,notify_baton,cancel_func,cancel_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -40547,16 +39359,10 @@ XS(_wrap_svn_wc_crop_tree) {
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_crop_tree" "', argument " "5"" of type '" "void *""'");
}
{
- int res = SWIG_ConvertFunctionPtr(ST(5), (void**)(&arg6), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_crop_tree" "', argument " "6"" of type '" "svn_cancel_func_t""'");
- }
+ arg6 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg7 = ST(5);
}
- res7 = SWIG_ConvertPtr(ST(6),SWIG_as_voidptrptr(&arg7), 0, 0);
- if (!SWIG_IsOK(res7)) {
- SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_crop_tree" "', argument " "7"" of type '" "void *""'");
- }
- if (items > 7) {
+ if (items > 6) {
}
{
@@ -40587,8 +39393,6 @@ XS(_wrap_svn_wc_crop_tree) {
-
-
XSRETURN(argvi);
fail:
@@ -40597,8 +39401,6 @@ XS(_wrap_svn_wc_crop_tree) {
-
-
SWIG_croak_null();
}
}
@@ -40619,7 +39421,6 @@ XS(_wrap_svn_wc_exclude) {
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
- int res4 ;
int res6 ;
int argvi = 0;
svn_error_t *result = 0 ;
@@ -40627,8 +39428,9 @@ XS(_wrap_svn_wc_exclude) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
- if ((items < 6) || (items > 7)) {
+ if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_exclude(wc_ctx,local_abspath,cancel_func,cancel_baton,notify_func,notify_baton,scratch_pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
@@ -40642,26 +39444,20 @@ XS(_wrap_svn_wc_exclude) {
}
arg2 = (char *)(buf2);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg3), SWIGTYPE_p_f_p_void__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_exclude" "', argument " "3"" of type '" "svn_cancel_func_t""'");
- }
- }
- res4 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg4), 0, 0);
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_exclude" "', argument " "4"" of type '" "void *""'");
+ arg3 = (svn_cancel_func_t) svn_swig_pl_cancel_func;
+ arg4 = ST(2);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(4), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg5), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_exclude" "', argument " "5"" of type '" "svn_wc_notify_func2_t""'");
}
}
- res6 = SWIG_ConvertPtr(ST(5),SWIG_as_voidptrptr(&arg6), 0, 0);
+ res6 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg6), 0, 0);
if (!SWIG_IsOK(res6)) {
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_exclude" "', argument " "6"" of type '" "void *""'");
}
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -40691,8 +39487,6 @@ XS(_wrap_svn_wc_exclude) {
-
-
XSRETURN(argvi);
fail:
@@ -40700,8 +39494,6 @@ XS(_wrap_svn_wc_exclude) {
-
-
SWIG_croak_null();
}
}
@@ -40733,6 +39525,7 @@ XS(_wrap_svn_wc_read_kind2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 4) || (items > 5)) {
@@ -40831,6 +39624,7 @@ XS(_wrap_svn_wc_read_kind) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
@@ -40927,6 +39721,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_file_opened) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
arg3 = &temp3;
@@ -41066,6 +39861,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_file_changed) {
{
_global_pool = arg15 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg4 = &temp4;
if ((items < 13) || (items > 14)) {
@@ -41266,6 +40062,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_file_added) {
{
_global_pool = arg17 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg4 = &temp4;
if ((items < 15) || (items > 16)) {
@@ -41461,6 +40258,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_file_deleted) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg3 = &temp3;
if ((items < 9) || (items > 10)) {
@@ -41595,6 +40393,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_dir_deleted) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg3 = &temp3;
if ((items < 4) || (items > 5)) {
@@ -41700,6 +40499,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_dir_opened) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
arg3 = &temp3;
@@ -41833,6 +40633,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_dir_added) {
{
_global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg3 = &temp3;
arg4 = &temp4;
@@ -41980,6 +40781,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_dir_props_changed) {
{
_global_pool = arg9 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg3 = &temp3;
if ((items < 7) || (items > 8)) {
@@ -42106,6 +40908,7 @@ XS(_wrap_svn_wc_diff_callbacks4_invoke_dir_closed) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg4 = &temp4;
if ((items < 6) || (items > 7)) {
@@ -44808,6 +43611,7 @@ XS(_wrap_svn_wc_entry_callbacks2_invoke_found_entry) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_entry_callbacks2_invoke_found_entry(_obj,path,entry,walk_baton,pool);");
@@ -44895,6 +43699,7 @@ XS(_wrap_svn_wc_entry_callbacks2_invoke_handle_error) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_entry_callbacks2_invoke_handle_error(_obj,path,err,walk_baton,pool);");
@@ -44982,6 +43787,7 @@ XS(_wrap_svn_wc_entry_callbacks_invoke_found_entry) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_entry_callbacks_invoke_found_entry(_obj,path,entry,walk_baton,pool);");
@@ -45071,6 +43877,7 @@ XS(_wrap_svn_wc_invoke_external_update) {
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 6) || (items > 7)) {
SWIG_croak("Usage: svn_wc_invoke_external_update(_obj,baton,local_abspath,old_val,new_val,depth,scratch_pool);");
@@ -45174,6 +43981,7 @@ XS(_wrap_svn_wc_invoke_notify_func2) {
{
_global_pool = arg4 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 3) || (items > 4)) {
SWIG_croak("Usage: svn_wc_invoke_notify_func2(_obj,baton,notify,pool);");
@@ -45348,9 +44156,11 @@ XS(_wrap_svn_wc_invoke_conflict_resolver_func2) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
if ((items < 3) || (items > 5)) {
@@ -45445,6 +44255,7 @@ XS(_wrap_svn_wc_invoke_conflict_resolver_func) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
if ((items < 3) || (items > 4)) {
@@ -45536,6 +44347,7 @@ XS(_wrap_svn_wc_invoke_status_func4) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_invoke_status_func4(_obj,baton,local_abspath,status,scratch_pool);");
@@ -45622,6 +44434,7 @@ XS(_wrap_svn_wc_invoke_status_func3) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_wc_invoke_status_func3(_obj,baton,path,status,pool);");
@@ -45834,6 +44647,7 @@ XS(_wrap_svn_wc_invoke_get_file) {
{
_global_pool = arg8 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg6 = &temp6;
arg7 = &temp7;
@@ -45862,6 +44676,7 @@ XS(_wrap_svn_wc_invoke_get_file) {
arg4 = (svn_revnum_t)(val4);
{
svn_swig_pl_make_stream (&arg5, ST(4));
+ SPAGAIN;
}
if (items > 5) {
@@ -45944,9 +44759,11 @@ XS(_wrap_svn_wc_invoke_dirents_func) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg3 = &temp3;
if ((items < 4) || (items > 6)) {
@@ -46040,6 +44857,7 @@ XS(_wrap_svn_wc_invoke_canonicalize_svn_prop_get_file) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
if ((items < 3) || (items > 4)) {
@@ -46053,6 +44871,7 @@ XS(_wrap_svn_wc_invoke_canonicalize_svn_prop_get_file) {
}
{
svn_swig_pl_make_stream (&arg3, ST(1));
+ SPAGAIN;
}
res4 = SWIG_ConvertPtr(ST(2),SWIG_as_voidptrptr(&arg4), 0, 0);
if (!SWIG_IsOK(res4)) {
@@ -46129,9 +44948,11 @@ XS(_wrap_svn_wc_invoke_upgrade_get_repos_info) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
{
_global_pool = arg7 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
arg2 = &temp2;
arg3 = &temp3;
@@ -46241,6 +45062,7 @@ XS(_wrap_svn_wc_invoke_relocation_validator3) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_invoke_relocation_validator3(_obj,baton,uuid,url,root_url,pool);");
@@ -46338,6 +45160,7 @@ XS(_wrap_svn_wc_invoke_relocation_validator2) {
{
_global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 5) || (items > 6)) {
SWIG_croak("Usage: svn_wc_invoke_relocation_validator2(_obj,baton,uuid,url,root,pool);");
@@ -46509,6 +45332,7 @@ XS(_wrap_svn_changelist_invoke_receiver) {
{
_global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 4) || (items > 5)) {
SWIG_croak("Usage: svn_changelist_invoke_receiver(_obj,baton,path,changelist,pool);");
@@ -46585,6 +45409,7 @@ XS(_wrap_svn_wc_swig_init_asp_dot_net_hack) {
{
_global_pool = arg1 = svn_swig_pl_make_pool (ST(items-1));
+ SPAGAIN;
}
if ((items < 0) || (items > 1)) {
SWIG_croak("Usage: svn_wc_swig_init_asp_dot_net_hack(pool);");
@@ -47482,38 +46307,6 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_conflict_version_create2", _wrap_svn_wc_conflict_version_create2},
{"SVN::_Wc::svn_wc_conflict_version_create", _wrap_svn_wc_conflict_version_create},
{"SVN::_Wc::svn_wc_conflict_version_dup", _wrap_svn_wc_conflict_version_dup},
-{"SVN::_Wc::svn_wc_conflict_description2_t_local_abspath_set", _wrap_svn_wc_conflict_description2_t_local_abspath_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_local_abspath_get", _wrap_svn_wc_conflict_description2_t_local_abspath_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_node_kind_set", _wrap_svn_wc_conflict_description2_t_node_kind_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_node_kind_get", _wrap_svn_wc_conflict_description2_t_node_kind_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_kind_set", _wrap_svn_wc_conflict_description2_t_kind_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_kind_get", _wrap_svn_wc_conflict_description2_t_kind_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_property_name_set", _wrap_svn_wc_conflict_description2_t_property_name_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_property_name_get", _wrap_svn_wc_conflict_description2_t_property_name_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_is_binary_set", _wrap_svn_wc_conflict_description2_t_is_binary_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_is_binary_get", _wrap_svn_wc_conflict_description2_t_is_binary_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_mime_type_set", _wrap_svn_wc_conflict_description2_t_mime_type_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_mime_type_get", _wrap_svn_wc_conflict_description2_t_mime_type_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_action_set", _wrap_svn_wc_conflict_description2_t_action_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_action_get", _wrap_svn_wc_conflict_description2_t_action_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_reason_set", _wrap_svn_wc_conflict_description2_t_reason_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_reason_get", _wrap_svn_wc_conflict_description2_t_reason_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_base_abspath_set", _wrap_svn_wc_conflict_description2_t_base_abspath_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_base_abspath_get", _wrap_svn_wc_conflict_description2_t_base_abspath_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_their_abspath_set", _wrap_svn_wc_conflict_description2_t_their_abspath_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_their_abspath_get", _wrap_svn_wc_conflict_description2_t_their_abspath_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_my_abspath_set", _wrap_svn_wc_conflict_description2_t_my_abspath_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_my_abspath_get", _wrap_svn_wc_conflict_description2_t_my_abspath_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_merged_file_set", _wrap_svn_wc_conflict_description2_t_merged_file_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_merged_file_get", _wrap_svn_wc_conflict_description2_t_merged_file_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_operation_set", _wrap_svn_wc_conflict_description2_t_operation_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_operation_get", _wrap_svn_wc_conflict_description2_t_operation_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_src_left_version_set", _wrap_svn_wc_conflict_description2_t_src_left_version_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_src_left_version_get", _wrap_svn_wc_conflict_description2_t_src_left_version_get},
-{"SVN::_Wc::svn_wc_conflict_description2_t_src_right_version_set", _wrap_svn_wc_conflict_description2_t_src_right_version_set},
-{"SVN::_Wc::svn_wc_conflict_description2_t_src_right_version_get", _wrap_svn_wc_conflict_description2_t_src_right_version_get},
-{"SVN::_Wc::new_svn_wc_conflict_description2_t", _wrap_new_svn_wc_conflict_description2_t},
-{"SVN::_Wc::delete_svn_wc_conflict_description2_t", _wrap_delete_svn_wc_conflict_description2_t},
{"SVN::_Wc::svn_wc_conflict_description_t_path_set", _wrap_svn_wc_conflict_description_t_path_set},
{"SVN::_Wc::svn_wc_conflict_description_t_path_get", _wrap_svn_wc_conflict_description_t_path_get},
{"SVN::_Wc::svn_wc_conflict_description_t_node_kind_set", _wrap_svn_wc_conflict_description_t_node_kind_set},
@@ -47554,15 +46347,8 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_conflict_description_create_prop", _wrap_svn_wc_conflict_description_create_prop},
{"SVN::_Wc::svn_wc_conflict_description_create_tree2", _wrap_svn_wc_conflict_description_create_tree2},
{"SVN::_Wc::svn_wc_conflict_description_create_tree", _wrap_svn_wc_conflict_description_create_tree},
+{"SVN::_Wc::svn_wc_conflict_description2_dup", _wrap_svn_wc_conflict_description2_dup},
{"SVN::_Wc::svn_wc__conflict_description2_dup", _wrap_svn_wc__conflict_description2_dup},
-{"SVN::_Wc::svn_wc_conflict_result_t_choice_set", _wrap_svn_wc_conflict_result_t_choice_set},
-{"SVN::_Wc::svn_wc_conflict_result_t_choice_get", _wrap_svn_wc_conflict_result_t_choice_get},
-{"SVN::_Wc::svn_wc_conflict_result_t_merged_file_set", _wrap_svn_wc_conflict_result_t_merged_file_set},
-{"SVN::_Wc::svn_wc_conflict_result_t_merged_file_get", _wrap_svn_wc_conflict_result_t_merged_file_get},
-{"SVN::_Wc::svn_wc_conflict_result_t_save_merged_set", _wrap_svn_wc_conflict_result_t_save_merged_set},
-{"SVN::_Wc::svn_wc_conflict_result_t_save_merged_get", _wrap_svn_wc_conflict_result_t_save_merged_get},
-{"SVN::_Wc::new_svn_wc_conflict_result_t", _wrap_new_svn_wc_conflict_result_t},
-{"SVN::_Wc::delete_svn_wc_conflict_result_t", _wrap_delete_svn_wc_conflict_result_t},
{"SVN::_Wc::svn_wc_create_conflict_result", _wrap_svn_wc_create_conflict_result},
{"SVN::_Wc::svn_wc_diff_callbacks4_t_file_opened_set", _wrap_svn_wc_diff_callbacks4_t_file_opened_set},
{"SVN::_Wc::svn_wc_diff_callbacks4_t_file_opened_get", _wrap_svn_wc_diff_callbacks4_t_file_opened_get},
@@ -47832,6 +46618,8 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_status3_t_moved_to_abspath_get", _wrap_svn_wc_status3_t_moved_to_abspath_get},
{"SVN::_Wc::svn_wc_status3_t_file_external_set", _wrap_svn_wc_status3_t_file_external_set},
{"SVN::_Wc::svn_wc_status3_t_file_external_get", _wrap_svn_wc_status3_t_file_external_get},
+{"SVN::_Wc::svn_wc_status3_t_actual_kind_set", _wrap_svn_wc_status3_t_actual_kind_set},
+{"SVN::_Wc::svn_wc_status3_t_actual_kind_get", _wrap_svn_wc_status3_t_actual_kind_get},
{"SVN::_Wc::new_svn_wc_status3_t", _wrap_new_svn_wc_status3_t},
{"SVN::_Wc::delete_svn_wc_status3_t", _wrap_delete_svn_wc_status3_t},
{"SVN::_Wc::svn_wc_status2_t_entry_set", _wrap_svn_wc_status2_t_entry_set},
@@ -47911,6 +46699,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_delete3", _wrap_svn_wc_delete3},
{"SVN::_Wc::svn_wc_delete2", _wrap_svn_wc_delete2},
{"SVN::_Wc::svn_wc_delete", _wrap_svn_wc_delete},
+{"SVN::_Wc::svn_wc_add_from_disk3", _wrap_svn_wc_add_from_disk3},
{"SVN::_Wc::svn_wc_add_from_disk2", _wrap_svn_wc_add_from_disk2},
{"SVN::_Wc::svn_wc_add_from_disk", _wrap_svn_wc_add_from_disk},
{"SVN::_Wc::svn_wc_add4", _wrap_svn_wc_add4},
@@ -47929,6 +46718,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_resolved_conflict2", _wrap_svn_wc_resolved_conflict2},
{"SVN::_Wc::svn_wc_resolved_conflict", _wrap_svn_wc_resolved_conflict},
{"SVN::_Wc::svn_wc_committed_queue_create", _wrap_svn_wc_committed_queue_create},
+{"SVN::_Wc::svn_wc_queue_committed4", _wrap_svn_wc_queue_committed4},
{"SVN::_Wc::svn_wc_queue_committed3", _wrap_svn_wc_queue_committed3},
{"SVN::_Wc::svn_wc_queue_committed2", _wrap_svn_wc_queue_committed2},
{"SVN::_Wc::svn_wc_queue_committed", _wrap_svn_wc_queue_committed},
@@ -47995,6 +46785,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_get_pristine_contents2", _wrap_svn_wc_get_pristine_contents2},
{"SVN::_Wc::svn_wc_get_pristine_contents", _wrap_svn_wc_get_pristine_contents},
{"SVN::_Wc::svn_wc_get_pristine_copy_path", _wrap_svn_wc_get_pristine_copy_path},
+{"SVN::_Wc::svn_wc_cleanup4", _wrap_svn_wc_cleanup4},
{"SVN::_Wc::svn_wc_cleanup3", _wrap_svn_wc_cleanup3},
{"SVN::_Wc::svn_wc_cleanup2", _wrap_svn_wc_cleanup2},
{"SVN::_Wc::svn_wc_cleanup", _wrap_svn_wc_cleanup},
@@ -48003,6 +46794,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_relocate3", _wrap_svn_wc_relocate3},
{"SVN::_Wc::svn_wc_relocate2", _wrap_svn_wc_relocate2},
{"SVN::_Wc::svn_wc_relocate", _wrap_svn_wc_relocate},
+{"SVN::_Wc::svn_wc_revert5", _wrap_svn_wc_revert5},
{"SVN::_Wc::svn_wc_revert4", _wrap_svn_wc_revert4},
{"SVN::_Wc::svn_wc_revert3", _wrap_svn_wc_revert3},
{"SVN::_Wc::svn_wc_revert2", _wrap_svn_wc_revert2},
@@ -48102,18 +46894,18 @@ static swig_command_info swig_commands[] = {
};
/* -----------------------------------------------------------------------------
* Type initialization:
- * This problem is tough by the requirement that no dynamic
- * memory is used. Also, since swig_type_info structures store pointers to
+ * This problem is tough by the requirement that no dynamic
+ * memory is used. Also, since swig_type_info structures store pointers to
* swig_cast_info structures and swig_cast_info structures store pointers back
- * to swig_type_info structures, we need some lookup code at initialization.
- * The idea is that swig generates all the structures that are needed.
- * The runtime then collects these partially filled structures.
- * The SWIG_InitializeModule function takes these initial arrays out of
+ * to swig_type_info structures, we need some lookup code at initialization.
+ * The idea is that swig generates all the structures that are needed.
+ * The runtime then collects these partially filled structures.
+ * The SWIG_InitializeModule function takes these initial arrays out of
* swig_module, and does all the lookup, filling in the swig_module.types
* array with the correct data and linking the correct swig_cast_info
* structures together.
*
- * The generated swig_type_info structures are assigned staticly to an initial
+ * The generated swig_type_info structures are assigned staticly to an initial
* array. We just loop through that array, and handle each type individually.
* First we lookup if this type has been already loaded, and if so, use the
* loaded structure instead of the generated one. Then we have to fill in the
@@ -48123,17 +46915,17 @@ static swig_command_info swig_commands[] = {
* a column is one of the swig_cast_info structures for that type.
* The cast_initial array is actually an array of arrays, because each row has
* a variable number of columns. So to actually build the cast linked list,
- * we find the array of casts associated with the type, and loop through it
+ * we find the array of casts associated with the type, and loop through it
* adding the casts to the list. The one last trick we need to do is making
* sure the type pointer in the swig_cast_info struct is correct.
*
- * First off, we lookup the cast->type name to see if it is already loaded.
+ * First off, we lookup the cast->type name to see if it is already loaded.
* There are three cases to handle:
* 1) If the cast->type has already been loaded AND the type we are adding
* casting info to has not been loaded (it is in this module), THEN we
* replace the cast->type pointer with the type pointer that has already
* been loaded.
- * 2) If BOTH types (the one we are adding casting info to, and the
+ * 2) If BOTH types (the one we are adding casting info to, and the
* cast->type) are loaded, THEN the cast info has already been loaded by
* the previous module so we just ignore it.
* 3) Finally, if cast->type has not already been loaded, then we add that
@@ -48196,7 +46988,7 @@ SWIG_InitializeModule(void *clientdata) {
module_head->next = &swig_module;
}
- /* When multiple interpeters are used, a module could have already been initialized in
+ /* When multiple interpreters are used, a module could have already been initialized in
a different interpreter, but not yet have a pointer in this interpreter.
In this case, we do not want to continue adding types... everything should be
set up already */
@@ -48395,747 +47187,772 @@ XS(SWIG_init) {
SvREADONLY_on(sv);
}
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_FROM_NF", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000000)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_TO_NF", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000001)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_FORCE_EOL_REPAIR", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000002)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_NO_OUTPUT_CLEANUP", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000004)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_FORCE_COPY", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000008)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_TRANSLATE_USE_GLOBAL_TMP", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000010)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_ADM_DIR_NAME", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr(".svn"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_copy", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_copy)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_restore", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_restore)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_revert", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revert)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_revert", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_revert)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_resolved", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_resolved)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_skip", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_skip)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_status_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_status_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_status_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_status_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_postfix_txdelta", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_postfix_txdelta)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_blame_revision", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_blame_revision)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_unlocked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_unlocked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_lock", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_lock)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_unlock", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_unlock)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_exists", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_exists)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_changelist_set", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_set)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_changelist_clear", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_clear)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_changelist_moved", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_moved)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_merge_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_foreign_merge_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_foreign_merge_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_property_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_property_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_property_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_property_deleted_nonexistent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_deleted_nonexistent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_revprop_set", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revprop_set)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_revprop_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revprop_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_merge_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_tree_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_tree_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_started", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_started)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_skip_obstruction", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_obstruction)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_skip_working_only", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_working_only)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_skip_access_denied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_access_denied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_external_removed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_external_removed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_shadowed_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_shadowed_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_shadowed_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_merge_record_info", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_record_info)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_upgraded_path", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_upgraded_path)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_merge_record_info_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_record_info_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_merge_elide_info", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_elide_info)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_patch", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_patch_applied_hunk", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_applied_hunk)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_patch_rejected_hunk", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_rejected_hunk)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_patch_hunk_already_applied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_hunk_already_applied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_copied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_copied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_copied_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_copied_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_url_redirect", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_url_redirect)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_path_nonexistent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_path_nonexistent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_exclude", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_exclude)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_out_of_date", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_out_of_date)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_no_parent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_no_parent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_forbidden_by_server", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_forbidden_by_server)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_skip_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_skip_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_update_broken_lock", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_broken_lock)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_obstruction", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_obstruction)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_conflict_resolver_starting", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_conflict_resolver_starting)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_conflict_resolver_done", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_conflict_resolver_done)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_left_local_modifications", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_left_local_modifications)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_foreign_copy_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_foreign_copy_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_move_broken", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_move_broken)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_cleanup_external", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_cleanup_external)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_requires_target", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_requires_target)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_info_external", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_info_external)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_commit_finalizing", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_finalizing)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_inapplicable", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_inapplicable)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_unknown", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_unknown)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_changed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_changed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_source_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_source_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_lock_state_inapplicable", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_inapplicable)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_lock_state_unknown", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unknown)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_lock_state_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_lock_state_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_lock_state_unlocked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unlocked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_action_edit", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_edit)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_action_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_action_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_action_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_edited", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_edited)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_unversioned", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_unversioned)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_moved_away", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_moved_away)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_moved_here", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_moved_here)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_kind_text", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_text)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_kind_property", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_property)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_kind_tree", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_tree)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_operation_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_operation_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_operation_switch", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_switch)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_operation_merge", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_merge)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_undefined", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_undefined)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_postpone", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_postpone)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_base", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_base)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_theirs_full", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_theirs_full)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_mine_full", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_mine_full)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_theirs_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_theirs_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_mine_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_mine_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_choose_unspecified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_unspecified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_schedule_normal", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_normal)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_schedule_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_schedule_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_schedule_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_ENTRY_WORKING_SIZE_UNKNOWN", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)((-1))));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_WC_ENTRY_THIS_DIR", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr(""));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_unversioned", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_unversioned)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_normal", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_normal)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_ignored", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_ignored)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_status_incomplete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_incomplete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_merge_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_merge_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_merge_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.12/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_merge_no_merge", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_no_merge)));
SvREADONLY_on(sv);