summaryrefslogtreecommitdiff
path: root/subversion/bindings/swig/perl/native/svn_ra.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/bindings/swig/perl/native/svn_ra.c')
-rw-r--r--subversion/bindings/swig/perl/native/svn_ra.c1837
1 files changed, 1221 insertions, 616 deletions
diff --git a/subversion/bindings/swig/perl/native/svn_ra.c b/subversion/bindings/swig/perl/native/svn_ra.c
index 9431590..3dd93ea 100644
--- a/subversion/bindings/swig/perl/native/svn_ra.c
+++ b/subversion/bindings/swig/perl/native/svn_ra.c
@@ -1,6 +1,6 @@
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
- * Version 2.0.4
+ * Version 2.0.9
*
* 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
@@ -830,50 +830,35 @@ extern "C" {
SWIGINTERN const char*
SWIG_Perl_ErrorType(int code) {
- const char* type = 0;
switch(code) {
case SWIG_MemoryError:
- type = "MemoryError";
- break;
+ return "MemoryError";
case SWIG_IOError:
- type = "IOError";
- break;
+ return "IOError";
case SWIG_RuntimeError:
- type = "RuntimeError";
- break;
+ return "RuntimeError";
case SWIG_IndexError:
- type = "IndexError";
- break;
+ return "IndexError";
case SWIG_TypeError:
- type = "TypeError";
- break;
+ return "TypeError";
case SWIG_DivisionByZero:
- type = "ZeroDivisionError";
- break;
+ return "ZeroDivisionError";
case SWIG_OverflowError:
- type = "OverflowError";
- break;
+ return "OverflowError";
case SWIG_SyntaxError:
- type = "SyntaxError";
- break;
+ return "SyntaxError";
case SWIG_ValueError:
- type = "ValueError";
- break;
+ return "ValueError";
case SWIG_SystemError:
- type = "SystemError";
- break;
+ return "SystemError";
case SWIG_AttributeError:
- type = "AttributeError";
- break;
+ return "AttributeError";
default:
- type = "RuntimeError";
+ return "RuntimeError";
}
- return type;
}
-
-
/* -----------------------------------------------------------------------------
* perlrun.swg
*
@@ -916,14 +901,14 @@ SWIG_Perl_ErrorType(int code) {
/* Runtime API */
-#define SWIG_GetModule(clientdata) SWIG_Perl_GetModule()
+#define SWIG_GetModule(clientdata) SWIG_Perl_GetModule(clientdata)
#define SWIG_SetModule(clientdata, pointer) SWIG_Perl_SetModule(pointer)
/* Error manipulation */
#define SWIG_ErrorType(code) SWIG_Perl_ErrorType(code)
-#define SWIG_Error(code, msg) sv_setpvf(GvSV(PL_errgv),"%s %s\n", SWIG_ErrorType(code), msg)
+#define SWIG_Error(code, msg) sv_setpvf(get_sv("@", GV_ADD), "%s %s", SWIG_ErrorType(code), msg)
#define SWIG_fail goto fail
/* Perl-specific SWIG API */
@@ -1017,8 +1002,6 @@ typedef int (*SwigMagicFunc)(struct interpreter *, SV *, MAGIC *);
#endif /* MULTIPLICITY */
#endif /* PERL_OBJECT */
-/* Workaround for bug in perl 5.6.x croak and earlier */
-#if (PERL_VERSION < 8)
# ifdef PERL_OBJECT
# define SWIG_croak_null() SWIG_Perl_croak_null(pPerl)
static void SWIG_Perl_croak_null(CPerlObj *pPerl)
@@ -1026,17 +1009,16 @@ static void SWIG_Perl_croak_null(CPerlObj *pPerl)
static void SWIG_croak_null()
# endif
{
- SV *err=ERRSV;
+ SV *err = get_sv("@", GV_ADD);
# if (PERL_VERSION < 6)
croak("%_", err);
# else
- if (SvOK(err) && !SvROK(err)) croak("%_", err);
- croak(Nullch);
+ if (sv_isobject(err))
+ croak(0);
+ else
+ croak("%s", SvPV_nolen(err));
# endif
}
-#else
-# define SWIG_croak_null() croak(Nullch)
-#endif
/*
@@ -1088,8 +1070,7 @@ SWIG_TypeProxyCheck(const char *c, swig_type_info *ty) {
if (ty) {
swig_cast_info *iter = ty->cast;
while (iter) {
- if ( (!iter->type->clientdata && (strcmp(iter->type->name, c) == 0)) ||
- (iter->type->clientdata && (strcmp((char*)iter->type->clientdata, c) == 0)) ) {
+ if (strcmp(SWIG_Perl_TypeProxyName(iter->type), c) == 0) {
if (iter == ty->cast)
return iter;
/* Move iter to the top of the linked list */
@@ -1220,7 +1201,7 @@ SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, i
SV *obj=newSV(0);
HV *hash=newHV();
HV *stash;
- sv_setref_pv(obj, (char *) SWIG_Perl_TypeProxyName(t), ptr);
+ sv_setref_pv(obj, SWIG_Perl_TypeProxyName(t), ptr);
stash=SvSTASH(SvRV(obj));
if (flags & SWIG_POINTER_OWN) {
HV *hv;
@@ -1238,7 +1219,7 @@ SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, i
sv_bless(sv, stash);
}
else {
- sv_setref_pv(sv, (char *) SWIG_Perl_TypeProxyName(t), ptr);
+ sv_setref_pv(sv, SWIG_Perl_TypeProxyName(t), ptr);
}
}
@@ -1329,19 +1310,23 @@ typedef struct {
/* Magic variable code */
#ifndef PERL_OBJECT
-#define swig_create_magic(s,a,b,c) _swig_create_magic(s,a,b,c)
- #ifndef MULTIPLICITY
- SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *))
- #else
- SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *))
- #endif
+# ifdef __cplusplus
+# define swig_create_magic(s,a,b,c) _swig_create_magic(s,const_cast<char*>(a),b,c)
+# else
+# define swig_create_magic(s,a,b,c) _swig_create_magic(s,(char*)(a),b,c)
+# endif
+# ifndef MULTIPLICITY
+SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *))
+# else
+SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *))
+# endif
#else
# define swig_create_magic(s,a,b,c) _swig_create_magic(pPerl,s,a,b,c)
SWIGRUNTIME void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, int (CPerlObj::*set)(SV *, MAGIC *), int (CPerlObj::*get)(SV *, MAGIC *))
#endif
{
MAGIC *mg;
- sv_magic(sv,sv,'U',(char *) name,strlen(name));
+ sv_magic(sv,sv,'U',name,strlen(name));
mg = mg_find(sv,'U');
mg->mg_virtual = (MGVTBL *) malloc(sizeof(MGVTBL));
mg->mg_virtual->svt_get = (SwigMagicFunc) get;
@@ -1353,7 +1338,7 @@ SWIGRUNTIME void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, i
SWIGRUNTIME swig_module_info *
-SWIG_Perl_GetModule(void) {
+SWIG_Perl_GetModule(void *SWIGUNUSEDPARM(clientdata)) {
static void *type_pointer = (void *)0;
SV *pointer;
@@ -1447,9 +1432,6 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#ifdef eof
#undef eof
#endif
-#ifdef bool
- #undef bool
-#endif
#ifdef close
#undef close
#endif
@@ -1490,6 +1472,14 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#undef stat
#endif
+#ifdef bool
+ /* Leave if macro is from C99 stdbool.h */
+ #ifndef __bool_true_false_are_defined
+ #undef bool
+ #endif
+#endif
+
+
#define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
@@ -1528,121 +1518,132 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#define SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[22]
#define SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[23]
#define SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[24]
-#define SWIGTYPE_p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[25]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[26]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[27]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[28]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[29]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[30]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[31]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[32]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_boolean_t_p_q_const__svn_lock_t_p_svn_error_t_p_apr_pool_t__p_svn_error_t swig_types[33]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[34]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_svn_boolean_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[35]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_p_apr_hash_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[36]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_node_kind_t_p_apr_pool_t__p_svn_error_t swig_types[37]
-#define 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 swig_types[38]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[39]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[40]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[41]
-#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_revnum_t_svn_ra_file_rev_handler_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[42]
-#define SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t swig_types[43]
-#define SWIGTYPE_p_f_p_void_p_svn_revnum_t__p_svn_error_t swig_types[44]
-#define SWIGTYPE_p_f_p_void_p_svn_revnum_t_apr_time_t_p_apr_pool_t__p_svn_error_t swig_types[45]
-#define SWIGTYPE_p_f_p_void_p_svn_revnum_t_p_apr_pool_t__p_svn_error_t swig_types[46]
-#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[47]
-#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_p_svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[48]
-#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[49]
-#define SWIGTYPE_p_f_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t swig_types[50]
-#define SWIGTYPE_p_f_svn_revnum_t_p_void_p_p_q_const__svn_delta_editor_t_p_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[51]
-#define SWIGTYPE_p_f_svn_revnum_t_p_void_p_q_const__svn_delta_editor_t_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[52]
-#define SWIGTYPE_p_f_void__p_svn_version_t swig_types[53]
-#define SWIGTYPE_p_int swig_types[54]
-#define SWIGTYPE_p_long swig_types[55]
-#define SWIGTYPE_p_p_apr_file_t swig_types[56]
-#define SWIGTYPE_p_p_apr_hash_t swig_types[57]
-#define SWIGTYPE_p_p_char swig_types[58]
-#define SWIGTYPE_p_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[59]
-#define SWIGTYPE_p_p_svn_delta_editor_t swig_types[60]
-#define SWIGTYPE_p_p_svn_dirent_t swig_types[61]
-#define SWIGTYPE_p_p_svn_lock_t swig_types[62]
-#define SWIGTYPE_p_p_svn_ra_callbacks2_t swig_types[63]
-#define SWIGTYPE_p_p_svn_ra_plugin_t swig_types[64]
-#define SWIGTYPE_p_p_svn_ra_reporter2_t swig_types[65]
-#define SWIGTYPE_p_p_svn_ra_reporter3_t swig_types[66]
-#define SWIGTYPE_p_p_svn_ra_reporter_t swig_types[67]
-#define SWIGTYPE_p_p_svn_ra_session_t swig_types[68]
-#define SWIGTYPE_p_p_svn_string_t swig_types[69]
-#define SWIGTYPE_p_p_svn_stringbuf_t swig_types[70]
-#define SWIGTYPE_p_p_void swig_types[71]
-#define SWIGTYPE_p_svn_auth_baton_t swig_types[72]
-#define SWIGTYPE_p_svn_auth_cred_simple_t swig_types[73]
-#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_pw_t swig_types[74]
-#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_t swig_types[75]
-#define SWIGTYPE_p_svn_auth_cred_ssl_server_trust_t swig_types[76]
-#define SWIGTYPE_p_svn_auth_cred_username_t swig_types[77]
-#define SWIGTYPE_p_svn_auth_iterstate_t swig_types[78]
-#define SWIGTYPE_p_svn_auth_provider_object_t swig_types[79]
-#define SWIGTYPE_p_svn_auth_provider_t swig_types[80]
-#define SWIGTYPE_p_svn_auth_ssl_server_cert_info_t swig_types[81]
-#define SWIGTYPE_p_svn_commit_info_t swig_types[82]
-#define SWIGTYPE_p_svn_config_t swig_types[83]
-#define SWIGTYPE_p_svn_delta_editor_t swig_types[84]
-#define SWIGTYPE_p_svn_depth_t swig_types[85]
-#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[86]
-#define SWIGTYPE_p_svn_diff_datasource_e swig_types[87]
-#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[88]
-#define SWIGTYPE_p_svn_diff_file_options_t swig_types[89]
-#define SWIGTYPE_p_svn_diff_fns2_t swig_types[90]
-#define SWIGTYPE_p_svn_diff_fns_t swig_types[91]
-#define SWIGTYPE_p_svn_diff_hunk_t swig_types[92]
-#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[93]
-#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[94]
-#define SWIGTYPE_p_svn_diff_t swig_types[95]
-#define SWIGTYPE_p_svn_dirent_t swig_types[96]
-#define SWIGTYPE_p_svn_errno_t swig_types[97]
-#define SWIGTYPE_p_svn_error_t swig_types[98]
-#define SWIGTYPE_p_svn_io_dirent2_t swig_types[99]
-#define SWIGTYPE_p_svn_io_dirent_t swig_types[100]
-#define SWIGTYPE_p_svn_io_file_del_t swig_types[101]
-#define SWIGTYPE_p_svn_location_segment_t swig_types[102]
-#define SWIGTYPE_p_svn_lock_t swig_types[103]
-#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[104]
-#define SWIGTYPE_p_svn_log_changed_path_t swig_types[105]
-#define SWIGTYPE_p_svn_log_entry_t swig_types[106]
-#define SWIGTYPE_p_svn_merge_range_t swig_types[107]
-#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[108]
-#define SWIGTYPE_p_svn_node_kind_t swig_types[109]
-#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[110]
-#define SWIGTYPE_p_svn_opt_revision_t swig_types[111]
-#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[112]
-#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[113]
-#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[114]
-#define SWIGTYPE_p_svn_patch_file_t swig_types[115]
-#define SWIGTYPE_p_svn_patch_t swig_types[116]
-#define SWIGTYPE_p_svn_prop_kind swig_types[117]
-#define SWIGTYPE_p_svn_prop_patch_t swig_types[118]
-#define SWIGTYPE_p_svn_ra_callbacks2_t swig_types[119]
-#define SWIGTYPE_p_svn_ra_callbacks_t swig_types[120]
-#define SWIGTYPE_p_svn_ra_plugin_t swig_types[121]
-#define SWIGTYPE_p_svn_ra_reporter2_t swig_types[122]
-#define SWIGTYPE_p_svn_ra_reporter3_t swig_types[123]
-#define SWIGTYPE_p_svn_ra_reporter_t swig_types[124]
-#define SWIGTYPE_p_svn_ra_session_t swig_types[125]
-#define SWIGTYPE_p_svn_stream_mark_t swig_types[126]
-#define SWIGTYPE_p_svn_stream_t swig_types[127]
-#define SWIGTYPE_p_svn_string_t swig_types[128]
-#define SWIGTYPE_p_svn_stringbuf_t swig_types[129]
-#define SWIGTYPE_p_svn_tristate_t swig_types[130]
-#define SWIGTYPE_p_svn_txdelta_op_t swig_types[131]
-#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[132]
-#define SWIGTYPE_p_svn_txdelta_window_t swig_types[133]
-#define SWIGTYPE_p_svn_version_checklist_t swig_types[134]
-#define SWIGTYPE_p_svn_version_t swig_types[135]
-#define SWIGTYPE_p_unsigned_long swig_types[136]
-#define SWIGTYPE_p_void swig_types[137]
-static swig_type_info *swig_types[139];
-static swig_module_info swig_module = {swig_types, 138, 0, 0, 0, 0};
+#define SWIGTYPE_p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t swig_types[25]
+#define SWIGTYPE_p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[26]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[27]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[28]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[29]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[30]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[31]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[32]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[33]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_boolean_t_p_q_const__svn_lock_t_p_svn_error_t_p_apr_pool_t__p_svn_error_t swig_types[34]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[35]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_apr_hash_t_svn_boolean_t_p_svn_txdelta_window_handler_t_p_p_void_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t swig_types[36]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_p_apr_hash_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[37]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_node_kind_t_p_apr_pool_t__p_svn_error_t swig_types[38]
+#define 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 swig_types[39]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t swig_types[40]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[41]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t swig_types[42]
+#define SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_revnum_t_svn_ra_file_rev_handler_t_p_void_p_apr_pool_t__p_svn_error_t swig_types[43]
+#define SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t swig_types[44]
+#define SWIGTYPE_p_f_p_void_p_svn_revnum_t__p_svn_error_t swig_types[45]
+#define SWIGTYPE_p_f_p_void_p_svn_revnum_t_apr_time_t_p_apr_pool_t__p_svn_error_t swig_types[46]
+#define SWIGTYPE_p_f_p_void_p_svn_revnum_t_p_apr_pool_t__p_svn_error_t swig_types[47]
+#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[48]
+#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_p_svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[49]
+#define SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t swig_types[50]
+#define SWIGTYPE_p_f_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t swig_types[51]
+#define SWIGTYPE_p_f_svn_revnum_t_p_void_p_p_q_const__svn_delta_editor_t_p_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[52]
+#define SWIGTYPE_p_f_svn_revnum_t_p_void_p_q_const__svn_delta_editor_t_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t swig_types[53]
+#define SWIGTYPE_p_f_void__p_svn_version_t swig_types[54]
+#define SWIGTYPE_p_int swig_types[55]
+#define SWIGTYPE_p_long swig_types[56]
+#define SWIGTYPE_p_p_apr_array_header_t swig_types[57]
+#define SWIGTYPE_p_p_apr_file_t swig_types[58]
+#define SWIGTYPE_p_p_apr_hash_t swig_types[59]
+#define SWIGTYPE_p_p_char swig_types[60]
+#define SWIGTYPE_p_p_f_p_svn_txdelta_window_t_p_void__p_svn_error_t swig_types[61]
+#define SWIGTYPE_p_p_svn_delta_editor_t swig_types[62]
+#define SWIGTYPE_p_p_svn_dirent_t swig_types[63]
+#define SWIGTYPE_p_p_svn_lock_t swig_types[64]
+#define SWIGTYPE_p_p_svn_ra_callbacks2_t swig_types[65]
+#define SWIGTYPE_p_p_svn_ra_plugin_t swig_types[66]
+#define SWIGTYPE_p_p_svn_ra_reporter2_t swig_types[67]
+#define SWIGTYPE_p_p_svn_ra_reporter3_t swig_types[68]
+#define SWIGTYPE_p_p_svn_ra_reporter_t swig_types[69]
+#define SWIGTYPE_p_p_svn_ra_session_t swig_types[70]
+#define SWIGTYPE_p_p_svn_stream_t swig_types[71]
+#define SWIGTYPE_p_p_svn_string_t swig_types[72]
+#define SWIGTYPE_p_p_svn_stringbuf_t swig_types[73]
+#define SWIGTYPE_p_p_void swig_types[74]
+#define SWIGTYPE_p_svn_auth_baton_t swig_types[75]
+#define SWIGTYPE_p_svn_auth_cred_simple_t swig_types[76]
+#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_pw_t swig_types[77]
+#define SWIGTYPE_p_svn_auth_cred_ssl_client_cert_t swig_types[78]
+#define SWIGTYPE_p_svn_auth_cred_ssl_server_trust_t swig_types[79]
+#define SWIGTYPE_p_svn_auth_cred_username_t swig_types[80]
+#define SWIGTYPE_p_svn_auth_iterstate_t swig_types[81]
+#define SWIGTYPE_p_svn_auth_provider_object_t swig_types[82]
+#define SWIGTYPE_p_svn_auth_provider_t swig_types[83]
+#define SWIGTYPE_p_svn_auth_ssl_server_cert_info_t swig_types[84]
+#define SWIGTYPE_p_svn_checksum_ctx_t swig_types[85]
+#define SWIGTYPE_p_svn_checksum_kind_t swig_types[86]
+#define SWIGTYPE_p_svn_checksum_t swig_types[87]
+#define SWIGTYPE_p_svn_commit_info_t swig_types[88]
+#define SWIGTYPE_p_svn_config_t swig_types[89]
+#define SWIGTYPE_p_svn_delta_editor_t swig_types[90]
+#define SWIGTYPE_p_svn_depth_t swig_types[91]
+#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[92]
+#define SWIGTYPE_p_svn_diff_datasource_e swig_types[93]
+#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[94]
+#define SWIGTYPE_p_svn_diff_file_options_t swig_types[95]
+#define SWIGTYPE_p_svn_diff_fns2_t swig_types[96]
+#define SWIGTYPE_p_svn_diff_fns_t swig_types[97]
+#define SWIGTYPE_p_svn_diff_hunk_t swig_types[98]
+#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[99]
+#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[100]
+#define SWIGTYPE_p_svn_diff_t swig_types[101]
+#define SWIGTYPE_p_svn_dirent_t swig_types[102]
+#define SWIGTYPE_p_svn_errno_t swig_types[103]
+#define SWIGTYPE_p_svn_error_t swig_types[104]
+#define SWIGTYPE_p_svn_io_dirent2_t swig_types[105]
+#define SWIGTYPE_p_svn_io_dirent_t swig_types[106]
+#define SWIGTYPE_p_svn_io_file_del_t swig_types[107]
+#define SWIGTYPE_p_svn_location_segment_t swig_types[108]
+#define SWIGTYPE_p_svn_lock_t swig_types[109]
+#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[110]
+#define SWIGTYPE_p_svn_log_changed_path_t swig_types[111]
+#define SWIGTYPE_p_svn_log_entry_t swig_types[112]
+#define SWIGTYPE_p_svn_merge_range_t swig_types[113]
+#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[114]
+#define SWIGTYPE_p_svn_node_kind_t swig_types[115]
+#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[116]
+#define SWIGTYPE_p_svn_opt_revision_t swig_types[117]
+#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[118]
+#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[119]
+#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[120]
+#define SWIGTYPE_p_svn_patch_file_t swig_types[121]
+#define SWIGTYPE_p_svn_patch_t swig_types[122]
+#define SWIGTYPE_p_svn_prop_inherited_item_t swig_types[123]
+#define SWIGTYPE_p_svn_prop_kind swig_types[124]
+#define SWIGTYPE_p_svn_prop_patch_t swig_types[125]
+#define SWIGTYPE_p_svn_ra_callbacks2_t swig_types[126]
+#define SWIGTYPE_p_svn_ra_callbacks_t swig_types[127]
+#define SWIGTYPE_p_svn_ra_plugin_t swig_types[128]
+#define SWIGTYPE_p_svn_ra_reporter2_t swig_types[129]
+#define SWIGTYPE_p_svn_ra_reporter3_t swig_types[130]
+#define SWIGTYPE_p_svn_ra_reporter_t swig_types[131]
+#define SWIGTYPE_p_svn_ra_session_t swig_types[132]
+#define SWIGTYPE_p_svn_stream_mark_t swig_types[133]
+#define SWIGTYPE_p_svn_stream_t swig_types[134]
+#define SWIGTYPE_p_svn_string_t swig_types[135]
+#define SWIGTYPE_p_svn_stringbuf_t swig_types[136]
+#define SWIGTYPE_p_svn_tristate_t swig_types[137]
+#define SWIGTYPE_p_svn_txdelta_op_t swig_types[138]
+#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[139]
+#define SWIGTYPE_p_svn_txdelta_window_t swig_types[140]
+#define SWIGTYPE_p_svn_version_checklist_t swig_types[141]
+#define SWIGTYPE_p_svn_version_ext_linked_lib_t swig_types[142]
+#define SWIGTYPE_p_svn_version_ext_loaded_lib_t swig_types[143]
+#define SWIGTYPE_p_svn_version_extended_t swig_types[144]
+#define SWIGTYPE_p_svn_version_t swig_types[145]
+#define SWIGTYPE_p_svn_wc_external_item2_t swig_types[146]
+#define SWIGTYPE_p_unsigned_long swig_types[147]
+#define SWIGTYPE_p_void swig_types[148]
+static swig_type_info *swig_types[150];
+static swig_module_info swig_module = {swig_types, 149, 0, 0, 0, 0};
#define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
#define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
@@ -1653,7 +1654,7 @@ static swig_module_info swig_module = {swig_types, 138, 0, 0, 0, 0};
#define SWIG_name "SVN::_Ra::boot_SVN___Ra"
#define SWIG_prefix "SVN::_Ra::"
-#define SWIGVERSION 0x020004
+#define SWIGVERSION 0x020009
#define SWIG_VERSION SWIGVERSION
@@ -1743,10 +1744,13 @@ SWIG_AsCharPtrAndSize(SV *obj, char** cptr, size_t* psize, int *alloc)
SWIGINTERNINLINE SV *
SWIG_From_long SWIG_PERL_DECL_ARGS_1(long value)
-{
- SV *obj = sv_newmortal();
- sv_setiv(obj, (IV) value);
- return obj;
+{
+ SV *sv;
+ if (value >= IV_MIN && value <= IV_MAX)
+ sv = newSViv(value);
+ else
+ sv = newSVpvf("%ld", value);
+ return sv_2mortal(sv);
}
@@ -1842,9 +1846,20 @@ SWIG_CanCastAsInteger(double *d, double min, double max) {
SWIGINTERN int
SWIG_AsVal_long_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, long long *val)
{
- if (SvIOK(obj)) {
- if (val) *val = SvIV(obj);
- return SWIG_OK;
+ if (SvUOK(obj)) {
+ UV v = SvUV(obj);
+ if (v < LLONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= LLONG_MIN && v <= LLONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
} else {
int dispatch = 0;
const char *nptr = SvPV_nolen(obj);
@@ -1881,9 +1896,20 @@ SWIG_AsVal_long_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, long long *val)
SWIGINTERN int
SWIG_AsVal_long SWIG_PERL_DECL_ARGS_2(SV *obj, long* val)
{
- if (SvIOK(obj)) {
- if (val) *val = SvIV(obj);
- return SWIG_OK;
+ if (SvUOK(obj)) {
+ UV v = SvUV(obj);
+ if (v <= LONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= LONG_MIN && v <= LONG_MAX) {
+ if(val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
} else {
int dispatch = 0;
const char *nptr = SvPV_nolen(obj);
@@ -1935,16 +1961,19 @@ SWIGINTERN int
SWIG_AsVal_unsigned_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, unsigned long *val)
{
if (SvUOK(obj)) {
- if (val) *val = SvUV(obj);
- return SWIG_OK;
- } else if (SvIOK(obj)) {
- long v = SvIV(obj);
- if (v >= 0) {
+ UV v = SvUV(obj);
+ if (v <= ULONG_MAX) {
+ if (val) *val = v;
+ return SWIG_OK;
+ }
+ return SWIG_OverflowError;
+ } else if (SvIOK(obj)) {
+ IV v = SvIV(obj);
+ if (v >= 0 && v <= ULONG_MAX) {
if (val) *val = v;
return SWIG_OK;
- } else {
- return SWIG_OverflowError;
}
+ return SWIG_OverflowError;
} else {
int dispatch = 0;
const char *nptr = SvPV_nolen(obj);
@@ -2208,6 +2237,11 @@ static svn_error_t * svn_ra_invoke_invalidate_wc_props_func(
return _obj(baton, path, name, pool);
}
+static svn_error_t * svn_ra_invoke_get_wc_contents_func(
+ svn_ra_get_wc_contents_func_t _obj, void *baton, svn_stream_t **contents, const svn_checksum_t *checksum, apr_pool_t *pool) {
+ return _obj(baton, contents, checksum, pool);
+}
+
static svn_error_t * svn_ra_invoke_get_latest_revnum_func(
svn_ra_get_latest_revnum_func_t _obj, void *session_baton, svn_revnum_t *latest_revnum) {
return _obj(session_baton, latest_revnum);
@@ -2303,7 +2337,7 @@ XS(_wrap_svn_ra_version) {
XS(_wrap_svn_ra_reporter3_t_set_path_set) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2315,9 +2349,9 @@ XS(_wrap_svn_ra_reporter3_t_set_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_set_path_set" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_set_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2339,7 +2373,7 @@ XS(_wrap_svn_ra_reporter3_t_set_path_set) {
XS(_wrap_svn_ra_reporter3_t_set_path_get) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2351,9 +2385,9 @@ XS(_wrap_svn_ra_reporter3_t_set_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_set_path_get" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_set_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *)) ((arg1)->set_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2367,7 +2401,7 @@ XS(_wrap_svn_ra_reporter3_t_set_path_get) {
XS(_wrap_svn_ra_reporter3_t_delete_path_set) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2379,9 +2413,9 @@ XS(_wrap_svn_ra_reporter3_t_delete_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_delete_path_set" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_delete_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2403,7 +2437,7 @@ XS(_wrap_svn_ra_reporter3_t_delete_path_set) {
XS(_wrap_svn_ra_reporter3_t_delete_path_get) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2415,9 +2449,9 @@ XS(_wrap_svn_ra_reporter3_t_delete_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_delete_path_get" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_delete_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) ((arg1)->delete_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2431,7 +2465,7 @@ XS(_wrap_svn_ra_reporter3_t_delete_path_get) {
XS(_wrap_svn_ra_reporter3_t_link_path_set) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2443,9 +2477,9 @@ XS(_wrap_svn_ra_reporter3_t_link_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_link_path_set" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_link_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2467,7 +2501,7 @@ XS(_wrap_svn_ra_reporter3_t_link_path_set) {
XS(_wrap_svn_ra_reporter3_t_link_path_get) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2479,9 +2513,9 @@ XS(_wrap_svn_ra_reporter3_t_link_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_link_path_get" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_link_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_depth_t,svn_boolean_t,char const *,apr_pool_t *)) ((arg1)->link_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_depth_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2495,7 +2529,7 @@ XS(_wrap_svn_ra_reporter3_t_link_path_get) {
XS(_wrap_svn_ra_reporter3_t_finish_report_set) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2507,9 +2541,9 @@ XS(_wrap_svn_ra_reporter3_t_finish_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_finish_report_set" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_finish_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2531,7 +2565,7 @@ XS(_wrap_svn_ra_reporter3_t_finish_report_set) {
XS(_wrap_svn_ra_reporter3_t_finish_report_get) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2543,9 +2577,9 @@ XS(_wrap_svn_ra_reporter3_t_finish_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_finish_report_get" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_finish_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->finish_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2559,7 +2593,7 @@ XS(_wrap_svn_ra_reporter3_t_finish_report_get) {
XS(_wrap_svn_ra_reporter3_t_abort_report_set) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2571,9 +2605,9 @@ XS(_wrap_svn_ra_reporter3_t_abort_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_abort_report_set" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_abort_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2595,7 +2629,7 @@ XS(_wrap_svn_ra_reporter3_t_abort_report_set) {
XS(_wrap_svn_ra_reporter3_t_abort_report_get) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2607,9 +2641,9 @@ XS(_wrap_svn_ra_reporter3_t_abort_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_abort_report_get" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter3_t_abort_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->abort_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2624,14 +2658,14 @@ XS(_wrap_svn_ra_reporter3_t_abort_report_get) {
XS(_wrap_new_svn_ra_reporter3_t) {
{
int argvi = 0;
- svn_ra_reporter3_t *result = 0 ;
+ struct svn_ra_reporter3_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_reporter3_t();");
}
{
- result = (svn_ra_reporter3_t *)calloc(1, sizeof(svn_ra_reporter3_t));
+ result = (struct svn_ra_reporter3_t *)calloc(1, sizeof(struct svn_ra_reporter3_t));
@@ -2646,7 +2680,7 @@ XS(_wrap_new_svn_ra_reporter3_t) {
XS(_wrap_delete_svn_ra_reporter3_t) {
{
- svn_ra_reporter3_t *arg1 = (svn_ra_reporter3_t *) 0 ;
+ struct svn_ra_reporter3_t *arg1 = (struct svn_ra_reporter3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2657,9 +2691,9 @@ XS(_wrap_delete_svn_ra_reporter3_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter3_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter3_t" "', argument " "1"" of type '" "svn_ra_reporter3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter3_t" "', argument " "1"" of type '" "struct svn_ra_reporter3_t *""'");
}
- arg1 = (svn_ra_reporter3_t *)(argp1);
+ arg1 = (struct svn_ra_reporter3_t *)(argp1);
{
free((char *) arg1);
@@ -2678,7 +2712,7 @@ XS(_wrap_delete_svn_ra_reporter3_t) {
XS(_wrap_svn_ra_reporter2_t_set_path_set) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2690,9 +2724,9 @@ XS(_wrap_svn_ra_reporter2_t_set_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_set_path_set" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_set_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2714,7 +2748,7 @@ XS(_wrap_svn_ra_reporter2_t_set_path_set) {
XS(_wrap_svn_ra_reporter2_t_set_path_get) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2726,9 +2760,9 @@ XS(_wrap_svn_ra_reporter2_t_set_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_set_path_get" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_set_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *)) ((arg1)->set_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2742,7 +2776,7 @@ XS(_wrap_svn_ra_reporter2_t_set_path_get) {
XS(_wrap_svn_ra_reporter2_t_delete_path_set) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2754,9 +2788,9 @@ XS(_wrap_svn_ra_reporter2_t_delete_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_delete_path_set" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_delete_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2778,7 +2812,7 @@ XS(_wrap_svn_ra_reporter2_t_delete_path_set) {
XS(_wrap_svn_ra_reporter2_t_delete_path_get) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2790,9 +2824,9 @@ XS(_wrap_svn_ra_reporter2_t_delete_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_delete_path_get" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_delete_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) ((arg1)->delete_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2806,7 +2840,7 @@ XS(_wrap_svn_ra_reporter2_t_delete_path_get) {
XS(_wrap_svn_ra_reporter2_t_link_path_set) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2818,9 +2852,9 @@ XS(_wrap_svn_ra_reporter2_t_link_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_link_path_set" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_link_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2842,7 +2876,7 @@ XS(_wrap_svn_ra_reporter2_t_link_path_set) {
XS(_wrap_svn_ra_reporter2_t_link_path_get) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2854,9 +2888,9 @@ XS(_wrap_svn_ra_reporter2_t_link_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_link_path_get" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_link_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,char const *,apr_pool_t *)) ((arg1)->link_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2870,7 +2904,7 @@ XS(_wrap_svn_ra_reporter2_t_link_path_get) {
XS(_wrap_svn_ra_reporter2_t_finish_report_set) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2882,9 +2916,9 @@ XS(_wrap_svn_ra_reporter2_t_finish_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_finish_report_set" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_finish_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2906,7 +2940,7 @@ XS(_wrap_svn_ra_reporter2_t_finish_report_set) {
XS(_wrap_svn_ra_reporter2_t_finish_report_get) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2918,9 +2952,9 @@ XS(_wrap_svn_ra_reporter2_t_finish_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_finish_report_get" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_finish_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->finish_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2934,7 +2968,7 @@ XS(_wrap_svn_ra_reporter2_t_finish_report_get) {
XS(_wrap_svn_ra_reporter2_t_abort_report_set) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -2946,9 +2980,9 @@ XS(_wrap_svn_ra_reporter2_t_abort_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_abort_report_set" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_abort_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -2970,7 +3004,7 @@ XS(_wrap_svn_ra_reporter2_t_abort_report_set) {
XS(_wrap_svn_ra_reporter2_t_abort_report_get) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -2982,9 +3016,9 @@ XS(_wrap_svn_ra_reporter2_t_abort_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_abort_report_get" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter2_t_abort_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->abort_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -2999,14 +3033,14 @@ XS(_wrap_svn_ra_reporter2_t_abort_report_get) {
XS(_wrap_new_svn_ra_reporter2_t) {
{
int argvi = 0;
- svn_ra_reporter2_t *result = 0 ;
+ struct svn_ra_reporter2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_reporter2_t();");
}
{
- result = (svn_ra_reporter2_t *)calloc(1, sizeof(svn_ra_reporter2_t));
+ result = (struct svn_ra_reporter2_t *)calloc(1, sizeof(struct svn_ra_reporter2_t));
@@ -3021,7 +3055,7 @@ XS(_wrap_new_svn_ra_reporter2_t) {
XS(_wrap_delete_svn_ra_reporter2_t) {
{
- svn_ra_reporter2_t *arg1 = (svn_ra_reporter2_t *) 0 ;
+ struct svn_ra_reporter2_t *arg1 = (struct svn_ra_reporter2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3032,9 +3066,9 @@ XS(_wrap_delete_svn_ra_reporter2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter2_t" "', argument " "1"" of type '" "svn_ra_reporter2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter2_t" "', argument " "1"" of type '" "struct svn_ra_reporter2_t *""'");
}
- arg1 = (svn_ra_reporter2_t *)(argp1);
+ arg1 = (struct svn_ra_reporter2_t *)(argp1);
{
free((char *) arg1);
@@ -3053,7 +3087,7 @@ XS(_wrap_delete_svn_ra_reporter2_t) {
XS(_wrap_svn_ra_reporter_t_set_path_set) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3065,9 +3099,9 @@ XS(_wrap_svn_ra_reporter_t_set_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_set_path_set" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_set_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3089,7 +3123,7 @@ XS(_wrap_svn_ra_reporter_t_set_path_set) {
XS(_wrap_svn_ra_reporter_t_set_path_get) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3101,9 +3135,9 @@ XS(_wrap_svn_ra_reporter_t_set_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_set_path_get" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_set_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *)) ((arg1)->set_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3117,7 +3151,7 @@ XS(_wrap_svn_ra_reporter_t_set_path_get) {
XS(_wrap_svn_ra_reporter_t_delete_path_set) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3129,9 +3163,9 @@ XS(_wrap_svn_ra_reporter_t_delete_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_delete_path_set" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_delete_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3153,7 +3187,7 @@ XS(_wrap_svn_ra_reporter_t_delete_path_set) {
XS(_wrap_svn_ra_reporter_t_delete_path_get) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3165,9 +3199,9 @@ XS(_wrap_svn_ra_reporter_t_delete_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_delete_path_get" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_delete_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,apr_pool_t *)) ((arg1)->delete_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3181,7 +3215,7 @@ XS(_wrap_svn_ra_reporter_t_delete_path_get) {
XS(_wrap_svn_ra_reporter_t_link_path_set) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3193,9 +3227,9 @@ XS(_wrap_svn_ra_reporter_t_link_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_link_path_set" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_link_path_set" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3217,7 +3251,7 @@ XS(_wrap_svn_ra_reporter_t_link_path_set) {
XS(_wrap_svn_ra_reporter_t_link_path_get) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3229,9 +3263,9 @@ XS(_wrap_svn_ra_reporter_t_link_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_link_path_get" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_link_path_get" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,char const *,svn_revnum_t,svn_boolean_t,apr_pool_t *)) ((arg1)->link_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_revnum_t_svn_boolean_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3245,7 +3279,7 @@ XS(_wrap_svn_ra_reporter_t_link_path_get) {
XS(_wrap_svn_ra_reporter_t_finish_report_set) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3257,9 +3291,9 @@ XS(_wrap_svn_ra_reporter_t_finish_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_finish_report_set" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_finish_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3281,7 +3315,7 @@ XS(_wrap_svn_ra_reporter_t_finish_report_set) {
XS(_wrap_svn_ra_reporter_t_finish_report_get) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3293,9 +3327,9 @@ XS(_wrap_svn_ra_reporter_t_finish_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_finish_report_get" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_finish_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->finish_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3309,7 +3343,7 @@ XS(_wrap_svn_ra_reporter_t_finish_report_get) {
XS(_wrap_svn_ra_reporter_t_abort_report_set) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3321,9 +3355,9 @@ XS(_wrap_svn_ra_reporter_t_abort_report_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_abort_report_set" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_abort_report_set" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3345,7 +3379,7 @@ XS(_wrap_svn_ra_reporter_t_abort_report_set) {
XS(_wrap_svn_ra_reporter_t_abort_report_get) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3357,9 +3391,9 @@ XS(_wrap_svn_ra_reporter_t_abort_report_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_abort_report_get" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_reporter_t_abort_report_get" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_pool_t *)) ((arg1)->abort_report);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3374,14 +3408,14 @@ XS(_wrap_svn_ra_reporter_t_abort_report_get) {
XS(_wrap_new_svn_ra_reporter_t) {
{
int argvi = 0;
- svn_ra_reporter_t *result = 0 ;
+ struct svn_ra_reporter_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_reporter_t();");
}
{
- result = (svn_ra_reporter_t *)calloc(1, sizeof(svn_ra_reporter_t));
+ result = (struct svn_ra_reporter_t *)calloc(1, sizeof(struct svn_ra_reporter_t));
@@ -3396,7 +3430,7 @@ XS(_wrap_new_svn_ra_reporter_t) {
XS(_wrap_delete_svn_ra_reporter_t) {
{
- svn_ra_reporter_t *arg1 = (svn_ra_reporter_t *) 0 ;
+ struct svn_ra_reporter_t *arg1 = (struct svn_ra_reporter_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3407,9 +3441,9 @@ XS(_wrap_delete_svn_ra_reporter_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_reporter_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter_t" "', argument " "1"" of type '" "svn_ra_reporter_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_reporter_t" "', argument " "1"" of type '" "struct svn_ra_reporter_t *""'");
}
- arg1 = (svn_ra_reporter_t *)(argp1);
+ arg1 = (struct svn_ra_reporter_t *)(argp1);
{
free((char *) arg1);
@@ -3428,7 +3462,7 @@ XS(_wrap_delete_svn_ra_reporter_t) {
XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(apr_file_t **,void *,apr_pool_t *) = (svn_error_t *(*)(apr_file_t **,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3440,9 +3474,9 @@ XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_open_tmp_file_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_open_tmp_file_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_apr_file_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3464,7 +3498,7 @@ XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_set) {
XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3476,9 +3510,9 @@ XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_open_tmp_file_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_open_tmp_file_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(apr_file_t **,void *,apr_pool_t *)) ((arg1)->open_tmp_file);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_apr_file_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3492,7 +3526,7 @@ XS(_wrap_svn_ra_callbacks2_t_open_tmp_file_get) {
XS(_wrap_svn_ra_callbacks2_t_auth_baton_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_auth_baton_t *arg2 = (svn_auth_baton_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3506,9 +3540,9 @@ XS(_wrap_svn_ra_callbacks2_t_auth_baton_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_auth_baton_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_auth_baton_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_auth_baton_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_callbacks2_t_auth_baton_set" "', argument " "2"" of type '" "svn_auth_baton_t *""'");
@@ -3529,7 +3563,7 @@ XS(_wrap_svn_ra_callbacks2_t_auth_baton_set) {
XS(_wrap_svn_ra_callbacks2_t_auth_baton_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3541,9 +3575,9 @@ XS(_wrap_svn_ra_callbacks2_t_auth_baton_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_auth_baton_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_auth_baton_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_auth_baton_t *) ((arg1)->auth_baton);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_auth_baton_t, 0 | 0); argvi++ ;
@@ -3557,7 +3591,7 @@ XS(_wrap_svn_ra_callbacks2_t_auth_baton_get) {
XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_get_wc_prop_func_t arg2 = (svn_ra_get_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3569,9 +3603,9 @@ XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3593,7 +3627,7 @@ XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_set) {
XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3605,9 +3639,9 @@ XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_get_wc_prop_func_t) ((arg1)->get_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3621,7 +3655,7 @@ XS(_wrap_svn_ra_callbacks2_t_get_wc_prop_get) {
XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_set_wc_prop_func_t arg2 = (svn_ra_set_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3633,9 +3667,9 @@ XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_set_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_set_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3657,7 +3691,7 @@ XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_set) {
XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3669,9 +3703,9 @@ XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_set_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_set_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_set_wc_prop_func_t) ((arg1)->set_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3685,7 +3719,7 @@ XS(_wrap_svn_ra_callbacks2_t_set_wc_prop_get) {
XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_push_wc_prop_func_t arg2 = (svn_ra_push_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3697,9 +3731,9 @@ XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_push_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_push_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3721,7 +3755,7 @@ XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_set) {
XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3733,9 +3767,9 @@ XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_push_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_push_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_push_wc_prop_func_t) ((arg1)->push_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3749,7 +3783,7 @@ XS(_wrap_svn_ra_callbacks2_t_push_wc_prop_get) {
XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_invalidate_wc_props_func_t arg2 = (svn_ra_invalidate_wc_props_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3761,9 +3795,9 @@ XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_invalidate_wc_props_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_invalidate_wc_props_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3785,7 +3819,7 @@ XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_set) {
XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3797,9 +3831,9 @@ XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_invalidate_wc_props_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_invalidate_wc_props_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_invalidate_wc_props_func_t) ((arg1)->invalidate_wc_props);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -3813,7 +3847,7 @@ XS(_wrap_svn_ra_callbacks2_t_invalidate_wc_props_get) {
XS(_wrap_svn_ra_callbacks2_t_progress_func_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_progress_notify_func_t arg2 = (svn_ra_progress_notify_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3825,9 +3859,9 @@ XS(_wrap_svn_ra_callbacks2_t_progress_func_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_func_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_func_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void);
if (!SWIG_IsOK(res)) {
@@ -3849,7 +3883,7 @@ XS(_wrap_svn_ra_callbacks2_t_progress_func_set) {
XS(_wrap_svn_ra_callbacks2_t_progress_func_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3861,9 +3895,9 @@ XS(_wrap_svn_ra_callbacks2_t_progress_func_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_func_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_func_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_progress_notify_func_t) ((arg1)->progress_func);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_apr_off_t_apr_off_t_p_void_p_apr_pool_t__void); argvi++ ;
@@ -3877,7 +3911,7 @@ XS(_wrap_svn_ra_callbacks2_t_progress_func_get) {
XS(_wrap_svn_ra_callbacks2_t_progress_baton_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *arg2 = (void *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3890,9 +3924,9 @@ XS(_wrap_svn_ra_callbacks2_t_progress_baton_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_baton_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_baton_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, SWIG_POINTER_DISOWN);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_callbacks2_t_progress_baton_set" "', argument " "2"" of type '" "void *""'");
@@ -3912,7 +3946,7 @@ XS(_wrap_svn_ra_callbacks2_t_progress_baton_set) {
XS(_wrap_svn_ra_callbacks2_t_progress_baton_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3924,9 +3958,9 @@ XS(_wrap_svn_ra_callbacks2_t_progress_baton_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_baton_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_progress_baton_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (void *) ((arg1)->progress_baton);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_void, 0 | 0); argvi++ ;
@@ -3940,7 +3974,7 @@ XS(_wrap_svn_ra_callbacks2_t_progress_baton_get) {
XS(_wrap_svn_ra_callbacks2_t_cancel_func_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_cancel_func_t arg2 = (svn_cancel_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -3952,9 +3986,9 @@ XS(_wrap_svn_ra_callbacks2_t_cancel_func_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_cancel_func_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_cancel_func_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -3976,7 +4010,7 @@ XS(_wrap_svn_ra_callbacks2_t_cancel_func_set) {
XS(_wrap_svn_ra_callbacks2_t_cancel_func_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -3988,9 +4022,9 @@ XS(_wrap_svn_ra_callbacks2_t_cancel_func_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_cancel_func_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_cancel_func_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_cancel_func_t) ((arg1)->cancel_func);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void__p_svn_error_t); argvi++ ;
@@ -4004,7 +4038,7 @@ XS(_wrap_svn_ra_callbacks2_t_cancel_func_get) {
XS(_wrap_svn_ra_callbacks2_t_get_client_string_set) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
svn_ra_get_client_string_func_t arg2 = (svn_ra_get_client_string_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4016,9 +4050,9 @@ XS(_wrap_svn_ra_callbacks2_t_get_client_string_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_client_string_set" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_client_string_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4040,7 +4074,7 @@ XS(_wrap_svn_ra_callbacks2_t_get_client_string_set) {
XS(_wrap_svn_ra_callbacks2_t_get_client_string_get) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4052,9 +4086,9 @@ XS(_wrap_svn_ra_callbacks2_t_get_client_string_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_client_string_get" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_client_string_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
result = (svn_ra_get_client_string_func_t) ((arg1)->get_client_string);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4066,17 +4100,81 @@ XS(_wrap_svn_ra_callbacks2_t_get_client_string_get) {
}
+XS(_wrap_svn_ra_callbacks2_t_get_wc_contents_set) {
+ {
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
+ svn_ra_get_wc_contents_func_t arg2 = (svn_ra_get_wc_contents_func_t) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_ra_callbacks2_t_get_wc_contents_set(self,get_wc_contents);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_contents_set" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
+ }
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_ra_callbacks2_t_get_wc_contents_set" "', argument " "2"" of type '" "svn_ra_get_wc_contents_func_t""'");
+ }
+ }
+ if (arg1) (arg1)->get_wc_contents = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_ra_callbacks2_t_get_wc_contents_get) {
+ {
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_ra_get_wc_contents_func_t result;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_ra_callbacks2_t_get_wc_contents_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks2_t_get_wc_contents_get" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
+ }
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
+ result = (svn_ra_get_wc_contents_func_t) ((arg1)->get_wc_contents);
+ ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_new_svn_ra_callbacks2_t) {
{
int argvi = 0;
- svn_ra_callbacks2_t *result = 0 ;
+ struct svn_ra_callbacks2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_callbacks2_t();");
}
{
- result = (svn_ra_callbacks2_t *)calloc(1, sizeof(svn_ra_callbacks2_t));
+ result = (struct svn_ra_callbacks2_t *)calloc(1, sizeof(struct svn_ra_callbacks2_t));
@@ -4091,7 +4189,7 @@ XS(_wrap_new_svn_ra_callbacks2_t) {
XS(_wrap_delete_svn_ra_callbacks2_t) {
{
- svn_ra_callbacks2_t *arg1 = (svn_ra_callbacks2_t *) 0 ;
+ struct svn_ra_callbacks2_t *arg1 = (struct svn_ra_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4102,9 +4200,9 @@ XS(_wrap_delete_svn_ra_callbacks2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_callbacks2_t" "', argument " "1"" of type '" "svn_ra_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_callbacks2_t" "', argument " "1"" of type '" "struct svn_ra_callbacks2_t *""'");
}
- arg1 = (svn_ra_callbacks2_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks2_t *)(argp1);
{
free((char *) arg1);
@@ -4123,7 +4221,7 @@ XS(_wrap_delete_svn_ra_callbacks2_t) {
XS(_wrap_svn_ra_callbacks_t_open_tmp_file_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_error_t *(*arg2)(apr_file_t **,void *,apr_pool_t *) = (svn_error_t *(*)(apr_file_t **,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4135,9 +4233,9 @@ XS(_wrap_svn_ra_callbacks_t_open_tmp_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_open_tmp_file_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_open_tmp_file_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_apr_file_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4159,7 +4257,7 @@ XS(_wrap_svn_ra_callbacks_t_open_tmp_file_set) {
XS(_wrap_svn_ra_callbacks_t_open_tmp_file_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4171,9 +4269,9 @@ XS(_wrap_svn_ra_callbacks_t_open_tmp_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_open_tmp_file_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_open_tmp_file_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_error_t *(*)(apr_file_t **,void *,apr_pool_t *)) ((arg1)->open_tmp_file);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_apr_file_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4187,7 +4285,7 @@ XS(_wrap_svn_ra_callbacks_t_open_tmp_file_get) {
XS(_wrap_svn_ra_callbacks_t_auth_baton_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_auth_baton_t *arg2 = (svn_auth_baton_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4201,9 +4299,9 @@ XS(_wrap_svn_ra_callbacks_t_auth_baton_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_auth_baton_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_auth_baton_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_auth_baton_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_callbacks_t_auth_baton_set" "', argument " "2"" of type '" "svn_auth_baton_t *""'");
@@ -4224,7 +4322,7 @@ XS(_wrap_svn_ra_callbacks_t_auth_baton_set) {
XS(_wrap_svn_ra_callbacks_t_auth_baton_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4236,9 +4334,9 @@ XS(_wrap_svn_ra_callbacks_t_auth_baton_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_auth_baton_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_auth_baton_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_auth_baton_t *) ((arg1)->auth_baton);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_auth_baton_t, 0 | 0); argvi++ ;
@@ -4252,7 +4350,7 @@ XS(_wrap_svn_ra_callbacks_t_auth_baton_get) {
XS(_wrap_svn_ra_callbacks_t_get_wc_prop_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_ra_get_wc_prop_func_t arg2 = (svn_ra_get_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4264,9 +4362,9 @@ XS(_wrap_svn_ra_callbacks_t_get_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_get_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_get_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4288,7 +4386,7 @@ XS(_wrap_svn_ra_callbacks_t_get_wc_prop_set) {
XS(_wrap_svn_ra_callbacks_t_get_wc_prop_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4300,9 +4398,9 @@ XS(_wrap_svn_ra_callbacks_t_get_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_get_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_get_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_ra_get_wc_prop_func_t) ((arg1)->get_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4316,7 +4414,7 @@ XS(_wrap_svn_ra_callbacks_t_get_wc_prop_get) {
XS(_wrap_svn_ra_callbacks_t_set_wc_prop_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_ra_set_wc_prop_func_t arg2 = (svn_ra_set_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4328,9 +4426,9 @@ XS(_wrap_svn_ra_callbacks_t_set_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_set_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_set_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4352,7 +4450,7 @@ XS(_wrap_svn_ra_callbacks_t_set_wc_prop_set) {
XS(_wrap_svn_ra_callbacks_t_set_wc_prop_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4364,9 +4462,9 @@ XS(_wrap_svn_ra_callbacks_t_set_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_set_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_set_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_ra_set_wc_prop_func_t) ((arg1)->set_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4380,7 +4478,7 @@ XS(_wrap_svn_ra_callbacks_t_set_wc_prop_get) {
XS(_wrap_svn_ra_callbacks_t_push_wc_prop_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_ra_push_wc_prop_func_t arg2 = (svn_ra_push_wc_prop_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4392,9 +4490,9 @@ XS(_wrap_svn_ra_callbacks_t_push_wc_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_push_wc_prop_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_push_wc_prop_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4416,7 +4514,7 @@ XS(_wrap_svn_ra_callbacks_t_push_wc_prop_set) {
XS(_wrap_svn_ra_callbacks_t_push_wc_prop_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4428,9 +4526,9 @@ XS(_wrap_svn_ra_callbacks_t_push_wc_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_push_wc_prop_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_push_wc_prop_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_ra_push_wc_prop_func_t) ((arg1)->push_wc_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4444,7 +4542,7 @@ XS(_wrap_svn_ra_callbacks_t_push_wc_prop_get) {
XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_set) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
svn_ra_invalidate_wc_props_func_t arg2 = (svn_ra_invalidate_wc_props_func_t) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4456,9 +4554,9 @@ XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_invalidate_wc_props_set" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_invalidate_wc_props_set" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -4480,7 +4578,7 @@ XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_set) {
XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_get) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4492,9 +4590,9 @@ XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_invalidate_wc_props_get" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_callbacks_t_invalidate_wc_props_get" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
result = (svn_ra_invalidate_wc_props_func_t) ((arg1)->invalidate_wc_props);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -4509,14 +4607,14 @@ XS(_wrap_svn_ra_callbacks_t_invalidate_wc_props_get) {
XS(_wrap_new_svn_ra_callbacks_t) {
{
int argvi = 0;
- svn_ra_callbacks_t *result = 0 ;
+ struct svn_ra_callbacks_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_callbacks_t();");
}
{
- result = (svn_ra_callbacks_t *)calloc(1, sizeof(svn_ra_callbacks_t));
+ result = (struct svn_ra_callbacks_t *)calloc(1, sizeof(struct svn_ra_callbacks_t));
@@ -4531,7 +4629,7 @@ XS(_wrap_new_svn_ra_callbacks_t) {
XS(_wrap_delete_svn_ra_callbacks_t) {
{
- svn_ra_callbacks_t *arg1 = (svn_ra_callbacks_t *) 0 ;
+ struct svn_ra_callbacks_t *arg1 = (struct svn_ra_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4542,9 +4640,9 @@ XS(_wrap_delete_svn_ra_callbacks_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_callbacks_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_callbacks_t" "', argument " "1"" of type '" "svn_ra_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_callbacks_t" "', argument " "1"" of type '" "struct svn_ra_callbacks_t *""'");
}
- arg1 = (svn_ra_callbacks_t *)(argp1);
+ arg1 = (struct svn_ra_callbacks_t *)(argp1);
{
free((char *) arg1);
@@ -5906,9 +6004,6 @@ XS(_wrap_svn_ra_get_commit_editor3) {
int res1 = 0 ;
svn_delta_editor_t *temp2 ;
void *temp3 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
- int res6 ;
int val8 ;
int ecode8 = 0 ;
int argvi = 0;
@@ -5920,39 +6015,34 @@ XS(_wrap_svn_ra_get_commit_editor3) {
}
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 6) || (items > 7)) {
- SWIG_croak("Usage: svn_ra_get_commit_editor3(session,revprop_table,callback,callback_baton,lock_tokens,keep_locks,pool);");
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_ra_get_commit_editor3(session,revprop_table,commit_callback,commit_baton,lock_tokens,keep_locks,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_get_commit_editor3" "', argument " "1"" of type '" "svn_ra_session_t *""'");
}
arg1 = (svn_ra_session_t *)(argp1);
- res4 = SWIG_ConvertPtr(ST(1), &argp4,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_ra_get_commit_editor3" "', argument " "4"" of type '" "apr_hash_t *""'");
- }
- arg4 = (apr_hash_t *)(argp4);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg5), SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_ra_get_commit_editor3" "', argument " "5"" of type '" "svn_commit_callback2_t""'");
- }
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg4 = svn_swig_pl_hash_to_prophash(ST(1), _global_pool);
}
- res6 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_ra_get_commit_editor3" "', argument " "6"" of type '" "void *""'");
+ {
+ arg5 = svn_swig_pl_thunk_commit_callback2;
+ arg6 = (void *)ST(2);
+ svn_swig_pl_hold_ref_in_pool (_global_pool, ST(2));
}
{
/* PERL-FIXME: Handle undef -> NULL. */
- arg7 = svn_swig_pl_strings_to_hash(ST(4), _global_pool);
+ arg7 = svn_swig_pl_strings_to_hash(ST(3), _global_pool);
}
- ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val8);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val8);
if (!SWIG_IsOK(ecode8)) {
SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_ra_get_commit_editor3" "', argument " "8"" of type '" "svn_boolean_t""'");
}
arg8 = (svn_boolean_t)(val8);
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -5990,8 +6080,6 @@ XS(_wrap_svn_ra_get_commit_editor3) {
-
-
XSRETURN(argvi);
fail:
@@ -6001,8 +6089,6 @@ XS(_wrap_svn_ra_get_commit_editor3) {
-
-
SWIG_croak_null();
}
}
@@ -6027,7 +6113,6 @@ XS(_wrap_svn_ra_get_commit_editor2) {
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
- int res6 ;
int val8 ;
int ecode8 = 0 ;
int argvi = 0;
@@ -6039,8 +6124,8 @@ XS(_wrap_svn_ra_get_commit_editor2) {
}
arg2 = &temp2;
arg3 = &temp3;
- if ((items < 6) || (items > 7)) {
- SWIG_croak("Usage: svn_ra_get_commit_editor2(session,log_msg,callback,callback_baton,lock_tokens,keep_locks,pool);");
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_ra_get_commit_editor2(session,log_msg,commit_callback,commit_baton,lock_tokens,keep_locks,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
@@ -6053,25 +6138,20 @@ XS(_wrap_svn_ra_get_commit_editor2) {
}
arg4 = (char *)(buf4);
{
- int res = SWIG_ConvertFunctionPtr(ST(2), (void**)(&arg5), SWIGTYPE_p_f_p_q_const__svn_commit_info_t_p_void_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_ra_get_commit_editor2" "', argument " "5"" of type '" "svn_commit_callback2_t""'");
- }
- }
- res6 = SWIG_ConvertPtr(ST(3),SWIG_as_voidptrptr(&arg6), 0, 0);
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_ra_get_commit_editor2" "', argument " "6"" of type '" "void *""'");
+ arg5 = svn_swig_pl_thunk_commit_callback2;
+ arg6 = (void *)ST(2);
+ svn_swig_pl_hold_ref_in_pool (_global_pool, ST(2));
}
{
/* PERL-FIXME: Handle undef -> NULL. */
- arg7 = svn_swig_pl_strings_to_hash(ST(4), _global_pool);
+ arg7 = svn_swig_pl_strings_to_hash(ST(3), _global_pool);
}
- ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val8);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val8);
if (!SWIG_IsOK(ecode8)) {
SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_ra_get_commit_editor2" "', argument " "8"" of type '" "svn_boolean_t""'");
}
arg8 = (svn_boolean_t)(val8);
- if (items > 6) {
+ if (items > 5) {
}
{
@@ -6109,8 +6189,6 @@ XS(_wrap_svn_ra_get_commit_editor2) {
-
-
XSRETURN(argvi);
fail:
@@ -6120,8 +6198,6 @@ XS(_wrap_svn_ra_get_commit_editor2) {
-
-
SWIG_croak_null();
}
}
@@ -6674,6 +6750,145 @@ XS(_wrap_svn_ra_get_mergeinfo) {
}
+XS(_wrap_svn_ra_do_update3) {
+ {
+ svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
+ svn_ra_reporter3_t **arg2 = (svn_ra_reporter3_t **) 0 ;
+ void **arg3 = (void **) 0 ;
+ svn_revnum_t arg4 ;
+ char *arg5 = (char *) 0 ;
+ svn_depth_t arg6 ;
+ svn_boolean_t arg7 ;
+ svn_boolean_t arg8 ;
+ svn_delta_editor_t *arg9 = (svn_delta_editor_t *) 0 ;
+ void *arg10 = (void *) 0 ;
+ apr_pool_t *arg11 = (apr_pool_t *) 0 ;
+ apr_pool_t *arg12 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ svn_ra_reporter3_t *temp2 ;
+ void *temp3 ;
+ long val4 ;
+ int ecode4 = 0 ;
+ int res5 ;
+ char *buf5 = 0 ;
+ int alloc5 = 0 ;
+ int val6 ;
+ int ecode6 = 0 ;
+ int val7 ;
+ int ecode7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg11 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ {
+ _global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg2 = &temp2;
+ arg3 = &temp3;
+ if ((items < 7) || (items > 9)) {
+ SWIG_croak("Usage: svn_ra_do_update3(session,revision_to_update_to,update_target,depth,send_copyfrom_args,ignore_ancestry,update_editor,update_baton,result_pool,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_do_update3" "', argument " "1"" of type '" "svn_ra_session_t *""'");
+ }
+ arg1 = (svn_ra_session_t *)(argp1);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_ra_do_update3" "', argument " "4"" of type '" "svn_revnum_t""'");
+ }
+ arg4 = (svn_revnum_t)(val4);
+ res5 = SWIG_AsCharPtrAndSize(ST(2), &buf5, NULL, &alloc5);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_ra_do_update3" "', argument " "5"" of type '" "char const *""'");
+ }
+ arg5 = (char *)(buf5);
+ ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val6);
+ if (!SWIG_IsOK(ecode6)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_ra_do_update3" "', argument " "6"" of type '" "svn_depth_t""'");
+ }
+ arg6 = (svn_depth_t)(val6);
+ ecode7 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val7);
+ if (!SWIG_IsOK(ecode7)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode7), "in method '" "svn_ra_do_update3" "', argument " "7"" of type '" "svn_boolean_t""'");
+ }
+ arg7 = (svn_boolean_t)(val7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_ra_do_update3" "', argument " "8"" of type '" "svn_boolean_t""'");
+ }
+ arg8 = (svn_boolean_t)(val8);
+ {
+ svn_delta_make_editor(&arg9, &arg10, ST(6), _global_pool);
+ }
+ if (items > 7) {
+
+ }
+ if (items > 8) {
+
+ }
+ {
+ result = (svn_error_t *)svn_ra_do_update3(arg1,(struct svn_ra_reporter3_t const **)arg2,arg3,arg4,(char const *)arg5,arg6,arg7,arg8,(struct svn_delta_editor_t const *)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 (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_svn_ra_reporter3_t, 0); argvi++ ;
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg3, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_ra_do_update2) {
{
svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
@@ -6904,6 +7119,156 @@ XS(_wrap_svn_ra_do_update) {
}
+XS(_wrap_svn_ra_do_switch3) {
+ {
+ svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
+ svn_ra_reporter3_t **arg2 = (svn_ra_reporter3_t **) 0 ;
+ void **arg3 = (void **) 0 ;
+ svn_revnum_t arg4 ;
+ char *arg5 = (char *) 0 ;
+ svn_depth_t arg6 ;
+ char *arg7 = (char *) 0 ;
+ svn_boolean_t arg8 ;
+ svn_boolean_t arg9 ;
+ svn_delta_editor_t *arg10 = (svn_delta_editor_t *) 0 ;
+ void *arg11 = (void *) 0 ;
+ apr_pool_t *arg12 = (apr_pool_t *) 0 ;
+ apr_pool_t *arg13 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ svn_ra_reporter3_t *temp2 ;
+ void *temp3 ;
+ long val4 ;
+ int ecode4 = 0 ;
+ int res5 ;
+ char *buf5 = 0 ;
+ int alloc5 = 0 ;
+ int val6 ;
+ int ecode6 = 0 ;
+ int res7 ;
+ char *buf7 = 0 ;
+ int alloc7 = 0 ;
+ int val8 ;
+ int ecode8 = 0 ;
+ int val9 ;
+ int ecode9 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ {
+ _global_pool = arg13 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg2 = &temp2;
+ arg3 = &temp3;
+ if ((items < 8) || (items > 10)) {
+ SWIG_croak("Usage: svn_ra_do_switch3(session,revision_to_switch_to,switch_target,depth,switch_url,send_copyfrom_args,ignore_ancestry,switch_editor,switch_baton,result_pool,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_do_switch3" "', argument " "1"" of type '" "svn_ra_session_t *""'");
+ }
+ arg1 = (svn_ra_session_t *)(argp1);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_ra_do_switch3" "', argument " "4"" of type '" "svn_revnum_t""'");
+ }
+ arg4 = (svn_revnum_t)(val4);
+ res5 = SWIG_AsCharPtrAndSize(ST(2), &buf5, NULL, &alloc5);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_ra_do_switch3" "', argument " "5"" of type '" "char const *""'");
+ }
+ arg5 = (char *)(buf5);
+ ecode6 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val6);
+ if (!SWIG_IsOK(ecode6)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode6), "in method '" "svn_ra_do_switch3" "', argument " "6"" of type '" "svn_depth_t""'");
+ }
+ arg6 = (svn_depth_t)(val6);
+ res7 = SWIG_AsCharPtrAndSize(ST(4), &buf7, NULL, &alloc7);
+ if (!SWIG_IsOK(res7)) {
+ SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_ra_do_switch3" "', argument " "7"" of type '" "char const *""'");
+ }
+ arg7 = (char *)(buf7);
+ ecode8 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(5), &val8);
+ if (!SWIG_IsOK(ecode8)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode8), "in method '" "svn_ra_do_switch3" "', argument " "8"" of type '" "svn_boolean_t""'");
+ }
+ arg8 = (svn_boolean_t)(val8);
+ ecode9 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(6), &val9);
+ if (!SWIG_IsOK(ecode9)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode9), "in method '" "svn_ra_do_switch3" "', argument " "9"" of type '" "svn_boolean_t""'");
+ }
+ arg9 = (svn_boolean_t)(val9);
+ {
+ svn_delta_make_editor(&arg10, &arg11, ST(7), _global_pool);
+ }
+ if (items > 8) {
+
+ }
+ if (items > 9) {
+
+ }
+ {
+ result = (svn_error_t *)svn_ra_do_switch3(arg1,(struct svn_ra_reporter3_t const **)arg2,arg3,arg4,(char const *)arg5,arg6,(char const *)arg7,arg8,arg9,(struct svn_delta_editor_t const *)arg10,arg11,arg12,arg13);
+
+
+
+ }
+ {
+ 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 (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg2, SWIGTYPE_p_svn_ra_reporter3_t, 0); argvi++ ;
+ }
+ {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj(*arg3, SWIGTYPE_p_void, 0); argvi++ ;
+ }
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_ra_do_switch2) {
{
svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
@@ -7808,7 +8173,6 @@ XS(_wrap_svn_ra_get_log2) {
int ecode7 = 0 ;
int val8 ;
int ecode8 = 0 ;
- int res11 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
@@ -7816,7 +8180,7 @@ XS(_wrap_svn_ra_get_log2) {
{
_global_pool = arg12 = svn_swig_pl_make_pool (ST(items-1));
}
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_ra_get_log2(session,paths,start,end,limit,discover_changed_paths,strict_node_history,include_merged_revisions,revprops,receiver,receiver_baton,pool);");
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
@@ -7859,20 +8223,14 @@ XS(_wrap_svn_ra_get_log2) {
}
arg8 = (svn_boolean_t)(val8);
{
- arg9 = (apr_array_header_t *) svn_swig_pl_strings_to_array(ST(8),
- _global_pool);
+ arg9 = SvOK(ST(8)) ? (apr_array_header_t *) svn_swig_pl_strings_to_array(
+ ST(8), _global_pool) : NULL;
}
{
- int res = SWIG_ConvertFunctionPtr(ST(9), (void**)(&arg10), SWIGTYPE_p_f_p_void_p_svn_log_entry_t_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_ra_get_log2" "', argument " "10"" of type '" "svn_log_entry_receiver_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_ra_get_log2" "', argument " "11"" of type '" "void *""'");
+ arg10 = svn_swig_pl_thunk_log_entry_receiver;
+ arg11 = ST(9);
}
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -7907,8 +8265,6 @@ XS(_wrap_svn_ra_get_log2) {
-
-
XSRETURN(argvi);
fail:
@@ -7921,8 +8277,6 @@ XS(_wrap_svn_ra_get_log2) {
-
-
SWIG_croak_null();
}
}
@@ -7999,7 +8353,7 @@ XS(_wrap_svn_ra_get_log) {
arg7 = (svn_boolean_t)(val7);
{
arg8 = svn_swig_pl_thunk_log_receiver;
- arg9 = (void *)ST(7);
+ arg9 = ST(7);
}
if (items > 8) {
@@ -9678,6 +10032,108 @@ XS(_wrap_svn_ra_get_deleted_rev) {
}
+XS(_wrap_svn_ra_get_inherited_props) {
+ {
+ svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
+ apr_array_header_t **arg2 = (apr_array_header_t **) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_revnum_t arg4 ;
+ apr_pool_t *arg5 = (apr_pool_t *) 0 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ apr_array_header_t *temp2 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ long val4 ;
+ int ecode4 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg2 = &temp2;
+ if ((items < 3) || (items > 5)) {
+ SWIG_croak("Usage: svn_ra_get_inherited_props(session,path,revision,result_pool,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_session_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_get_inherited_props" "', argument " "1"" of type '" "svn_ra_session_t *""'");
+ }
+ arg1 = (svn_ra_session_t *)(argp1);
+ res3 = SWIG_AsCharPtrAndSize(ST(1), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_ra_get_inherited_props" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(2), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_ra_get_inherited_props" "', argument " "4"" of type '" "svn_revnum_t""'");
+ }
+ arg4 = (svn_revnum_t)(val4);
+ if (items > 3) {
+
+ }
+ if (items > 4) {
+
+ }
+ {
+ result = (svn_error_t *)svn_ra_get_inherited_props(arg1,arg2,(char const *)arg3,arg4,arg5,arg6);
+
+
+
+ }
+ {
+ 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++;
+ }
+ }
+ }
+ {
+ /* FIXME: Missing argout typemap: svn_ra_get_inherited_props arg 2 (apr_array_header_t **) */
+
+
+
+
+ SWIG_exception(SWIG_ValueError, "svn_ra_get_inherited_props is not implemented yet");
+
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_ra_has_capability) {
{
svn_ra_session_t *arg1 = (svn_ra_session_t *) 0 ;
@@ -9896,7 +10352,7 @@ XS(_wrap_svn_ra_print_ra_libraries) {
XS(_wrap_svn_ra_plugin_t_name_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9911,9 +10367,9 @@ XS(_wrap_svn_ra_plugin_t_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_name_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_name_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_plugin_t_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -9941,7 +10397,7 @@ XS(_wrap_svn_ra_plugin_t_name_set) {
XS(_wrap_svn_ra_plugin_t_name_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9953,9 +10409,9 @@ XS(_wrap_svn_ra_plugin_t_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_name_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_name_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (char *) ((arg1)->name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9969,7 +10425,7 @@ XS(_wrap_svn_ra_plugin_t_name_get) {
XS(_wrap_svn_ra_plugin_t_description_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9984,9 +10440,9 @@ XS(_wrap_svn_ra_plugin_t_description_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_description_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_description_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_plugin_t_description_set" "', argument " "2"" of type '" "char const *""'");
@@ -10014,7 +10470,7 @@ XS(_wrap_svn_ra_plugin_t_description_set) {
XS(_wrap_svn_ra_plugin_t_description_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10026,9 +10482,9 @@ XS(_wrap_svn_ra_plugin_t_description_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_description_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_description_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (char *) ((arg1)->description);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -10042,7 +10498,7 @@ XS(_wrap_svn_ra_plugin_t_description_get) {
XS(_wrap_svn_ra_plugin_t_open_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void **,char const *,svn_ra_callbacks_t const *,void *,apr_hash_t *,apr_pool_t *) = (svn_error_t *(*)(void **,char const *,svn_ra_callbacks_t const *,void *,apr_hash_t *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10054,9 +10510,9 @@ XS(_wrap_svn_ra_plugin_t_open_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_open_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_open_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_p_void_p_q_const__char_p_q_const__svn_ra_callbacks_t_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10078,7 +10534,7 @@ XS(_wrap_svn_ra_plugin_t_open_set) {
XS(_wrap_svn_ra_plugin_t_open_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10090,9 +10546,9 @@ XS(_wrap_svn_ra_plugin_t_open_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_open_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_open_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void **,char const *,svn_ra_callbacks_t const *,void *,apr_hash_t *,apr_pool_t *)) ((arg1)->open);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_p_void_p_q_const__char_p_q_const__svn_ra_callbacks_t_p_void_p_apr_hash_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10106,7 +10562,7 @@ XS(_wrap_svn_ra_plugin_t_open_get) {
XS(_wrap_svn_ra_plugin_t_get_latest_revnum_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_revnum_t *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_revnum_t *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10118,9 +10574,9 @@ XS(_wrap_svn_ra_plugin_t_get_latest_revnum_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_latest_revnum_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_latest_revnum_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_svn_revnum_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10142,7 +10598,7 @@ XS(_wrap_svn_ra_plugin_t_get_latest_revnum_set) {
XS(_wrap_svn_ra_plugin_t_get_latest_revnum_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10154,9 +10610,9 @@ XS(_wrap_svn_ra_plugin_t_get_latest_revnum_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_latest_revnum_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_latest_revnum_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_revnum_t *,apr_pool_t *)) ((arg1)->get_latest_revnum);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_svn_revnum_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10170,7 +10626,7 @@ XS(_wrap_svn_ra_plugin_t_get_latest_revnum_get) {
XS(_wrap_svn_ra_plugin_t_get_dated_revision_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_revnum_t *,apr_time_t,apr_pool_t *) = (svn_error_t *(*)(void *,svn_revnum_t *,apr_time_t,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10182,9 +10638,9 @@ XS(_wrap_svn_ra_plugin_t_get_dated_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dated_revision_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dated_revision_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_svn_revnum_t_apr_time_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10206,7 +10662,7 @@ XS(_wrap_svn_ra_plugin_t_get_dated_revision_set) {
XS(_wrap_svn_ra_plugin_t_get_dated_revision_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10218,9 +10674,9 @@ XS(_wrap_svn_ra_plugin_t_get_dated_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dated_revision_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dated_revision_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_revnum_t *,apr_time_t,apr_pool_t *)) ((arg1)->get_dated_revision);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_svn_revnum_t_apr_time_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10234,7 +10690,7 @@ XS(_wrap_svn_ra_plugin_t_get_dated_revision_get) {
XS(_wrap_svn_ra_plugin_t_change_rev_prop_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_revnum_t,char const *,svn_string_t const *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_revnum_t,char const *,svn_string_t const *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10246,9 +10702,9 @@ XS(_wrap_svn_ra_plugin_t_change_rev_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_change_rev_prop_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_change_rev_prop_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10270,7 +10726,7 @@ XS(_wrap_svn_ra_plugin_t_change_rev_prop_set) {
XS(_wrap_svn_ra_plugin_t_change_rev_prop_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10282,9 +10738,9 @@ XS(_wrap_svn_ra_plugin_t_change_rev_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_change_rev_prop_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_change_rev_prop_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_revnum_t,char const *,svn_string_t const *,apr_pool_t *)) ((arg1)->change_rev_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_q_const__svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10298,7 +10754,7 @@ XS(_wrap_svn_ra_plugin_t_change_rev_prop_get) {
XS(_wrap_svn_ra_plugin_t_rev_proplist_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_revnum_t,apr_hash_t **,apr_pool_t *) = (svn_error_t *(*)(void *,svn_revnum_t,apr_hash_t **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10310,9 +10766,9 @@ XS(_wrap_svn_ra_plugin_t_rev_proplist_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_proplist_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_proplist_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10334,7 +10790,7 @@ XS(_wrap_svn_ra_plugin_t_rev_proplist_set) {
XS(_wrap_svn_ra_plugin_t_rev_proplist_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10346,9 +10802,9 @@ XS(_wrap_svn_ra_plugin_t_rev_proplist_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_proplist_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_proplist_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_revnum_t,apr_hash_t **,apr_pool_t *)) ((arg1)->rev_proplist);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10362,7 +10818,7 @@ XS(_wrap_svn_ra_plugin_t_rev_proplist_get) {
XS(_wrap_svn_ra_plugin_t_rev_prop_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_revnum_t,char const *,svn_string_t **,apr_pool_t *) = (svn_error_t *(*)(void *,svn_revnum_t,char const *,svn_string_t **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10374,9 +10830,9 @@ XS(_wrap_svn_ra_plugin_t_rev_prop_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_prop_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_prop_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_p_svn_string_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10398,7 +10854,7 @@ XS(_wrap_svn_ra_plugin_t_rev_prop_set) {
XS(_wrap_svn_ra_plugin_t_rev_prop_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10410,9 +10866,9 @@ XS(_wrap_svn_ra_plugin_t_rev_prop_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_prop_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_rev_prop_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_revnum_t,char const *,svn_string_t **,apr_pool_t *)) ((arg1)->rev_prop);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_svn_revnum_t_p_q_const__char_p_p_svn_string_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10426,7 +10882,7 @@ XS(_wrap_svn_ra_plugin_t_rev_prop_get) {
XS(_wrap_svn_ra_plugin_t_get_commit_editor_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_delta_editor_t const **,void **,char const *,svn_commit_callback_t,void *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_delta_editor_t const **,void **,char const *,svn_commit_callback_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10438,9 +10894,9 @@ XS(_wrap_svn_ra_plugin_t_get_commit_editor_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_commit_editor_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_commit_editor_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__svn_delta_editor_t_p_p_void_p_q_const__char_svn_commit_callback_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10462,7 +10918,7 @@ XS(_wrap_svn_ra_plugin_t_get_commit_editor_set) {
XS(_wrap_svn_ra_plugin_t_get_commit_editor_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10474,9 +10930,9 @@ XS(_wrap_svn_ra_plugin_t_get_commit_editor_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_commit_editor_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_commit_editor_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_delta_editor_t const **,void **,char const *,svn_commit_callback_t,void *,apr_pool_t *)) ((arg1)->get_commit_editor);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__svn_delta_editor_t_p_p_void_p_q_const__char_svn_commit_callback_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10490,7 +10946,7 @@ XS(_wrap_svn_ra_plugin_t_get_commit_editor_get) {
XS(_wrap_svn_ra_plugin_t_get_file_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_stream_t *,svn_revnum_t *,apr_hash_t **,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_stream_t *,svn_revnum_t *,apr_hash_t **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10502,9 +10958,9 @@ XS(_wrap_svn_ra_plugin_t_get_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), 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)) {
@@ -10526,7 +10982,7 @@ XS(_wrap_svn_ra_plugin_t_get_file_set) {
XS(_wrap_svn_ra_plugin_t_get_file_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10538,9 +10994,9 @@ XS(_wrap_svn_ra_plugin_t_get_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_stream_t *,svn_revnum_t *,apr_hash_t **,apr_pool_t *)) ((arg1)->get_file);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), 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); argvi++ ;
@@ -10554,7 +11010,7 @@ XS(_wrap_svn_ra_plugin_t_get_file_get) {
XS(_wrap_svn_ra_plugin_t_get_dir_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,apr_hash_t **,svn_revnum_t *,apr_hash_t **,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,apr_hash_t **,svn_revnum_t *,apr_hash_t **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10566,9 +11022,9 @@ XS(_wrap_svn_ra_plugin_t_get_dir_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dir_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dir_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_p_apr_hash_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10590,7 +11046,7 @@ XS(_wrap_svn_ra_plugin_t_get_dir_set) {
XS(_wrap_svn_ra_plugin_t_get_dir_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10602,9 +11058,9 @@ XS(_wrap_svn_ra_plugin_t_get_dir_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dir_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_dir_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,apr_hash_t **,svn_revnum_t *,apr_hash_t **,apr_pool_t *)) ((arg1)->get_dir);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_p_apr_hash_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10618,7 +11074,7 @@ XS(_wrap_svn_ra_plugin_t_get_dir_get) {
XS(_wrap_svn_ra_plugin_t_do_update_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10630,9 +11086,9 @@ XS(_wrap_svn_ra_plugin_t_do_update_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_update_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_update_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10654,7 +11110,7 @@ XS(_wrap_svn_ra_plugin_t_do_update_set) {
XS(_wrap_svn_ra_plugin_t_do_update_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10666,9 +11122,9 @@ XS(_wrap_svn_ra_plugin_t_do_update_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_update_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_update_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)) ((arg1)->do_update);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10682,7 +11138,7 @@ XS(_wrap_svn_ra_plugin_t_do_update_get) {
XS(_wrap_svn_ra_plugin_t_do_switch_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10694,9 +11150,9 @@ XS(_wrap_svn_ra_plugin_t_do_switch_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_switch_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_switch_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10718,7 +11174,7 @@ XS(_wrap_svn_ra_plugin_t_do_switch_set) {
XS(_wrap_svn_ra_plugin_t_do_switch_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10730,9 +11186,9 @@ XS(_wrap_svn_ra_plugin_t_do_switch_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_switch_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_switch_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)) ((arg1)->do_switch);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10746,7 +11202,7 @@ XS(_wrap_svn_ra_plugin_t_do_switch_get) {
XS(_wrap_svn_ra_plugin_t_do_status_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_ra_reporter_t const **,void **,char const *,svn_revnum_t,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,char const *,svn_revnum_t,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10758,9 +11214,9 @@ XS(_wrap_svn_ra_plugin_t_do_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_status_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_status_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10782,7 +11238,7 @@ XS(_wrap_svn_ra_plugin_t_do_status_set) {
XS(_wrap_svn_ra_plugin_t_do_status_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10794,9 +11250,9 @@ XS(_wrap_svn_ra_plugin_t_do_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_status_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_status_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,char const *,svn_revnum_t,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)) ((arg1)->do_status);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_p_q_const__char_svn_revnum_t_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10810,7 +11266,7 @@ XS(_wrap_svn_ra_plugin_t_do_status_get) {
XS(_wrap_svn_ra_plugin_t_do_diff_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10822,9 +11278,9 @@ XS(_wrap_svn_ra_plugin_t_do_diff_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_diff_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_diff_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10846,7 +11302,7 @@ XS(_wrap_svn_ra_plugin_t_do_diff_set) {
XS(_wrap_svn_ra_plugin_t_do_diff_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10858,9 +11314,9 @@ XS(_wrap_svn_ra_plugin_t_do_diff_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_diff_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_do_diff_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)) ((arg1)->do_diff);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10874,7 +11330,7 @@ XS(_wrap_svn_ra_plugin_t_do_diff_get) {
XS(_wrap_svn_ra_plugin_t_get_log_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_array_header_t const *,svn_revnum_t,svn_revnum_t,svn_boolean_t,svn_boolean_t,svn_log_message_receiver_t,void *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_array_header_t const *,svn_revnum_t,svn_revnum_t,svn_boolean_t,svn_boolean_t,svn_log_message_receiver_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10886,9 +11342,9 @@ XS(_wrap_svn_ra_plugin_t_get_log_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_log_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_log_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10910,7 +11366,7 @@ XS(_wrap_svn_ra_plugin_t_get_log_set) {
XS(_wrap_svn_ra_plugin_t_get_log_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10922,9 +11378,9 @@ XS(_wrap_svn_ra_plugin_t_get_log_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_log_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_log_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_array_header_t const *,svn_revnum_t,svn_revnum_t,svn_boolean_t,svn_boolean_t,svn_log_message_receiver_t,void *,apr_pool_t *)) ((arg1)->get_log);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10938,7 +11394,7 @@ XS(_wrap_svn_ra_plugin_t_get_log_get) {
XS(_wrap_svn_ra_plugin_t_check_path_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_node_kind_t *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_node_kind_t *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10950,9 +11406,9 @@ XS(_wrap_svn_ra_plugin_t_check_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_check_path_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_check_path_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_node_kind_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10974,7 +11430,7 @@ XS(_wrap_svn_ra_plugin_t_check_path_set) {
XS(_wrap_svn_ra_plugin_t_check_path_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10986,9 +11442,9 @@ XS(_wrap_svn_ra_plugin_t_check_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_check_path_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_check_path_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_node_kind_t *,apr_pool_t *)) ((arg1)->check_path);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_node_kind_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11002,7 +11458,7 @@ XS(_wrap_svn_ra_plugin_t_check_path_get) {
XS(_wrap_svn_ra_plugin_t_get_uuid_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const **,apr_pool_t *) = (svn_error_t *(*)(void *,char const **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11014,9 +11470,9 @@ XS(_wrap_svn_ra_plugin_t_get_uuid_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_uuid_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_uuid_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11038,7 +11494,7 @@ XS(_wrap_svn_ra_plugin_t_get_uuid_set) {
XS(_wrap_svn_ra_plugin_t_get_uuid_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11050,9 +11506,9 @@ XS(_wrap_svn_ra_plugin_t_get_uuid_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_uuid_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_uuid_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const **,apr_pool_t *)) ((arg1)->get_uuid);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11066,7 +11522,7 @@ XS(_wrap_svn_ra_plugin_t_get_uuid_get) {
XS(_wrap_svn_ra_plugin_t_get_repos_root_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const **,apr_pool_t *) = (svn_error_t *(*)(void *,char const **,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11078,9 +11534,9 @@ XS(_wrap_svn_ra_plugin_t_get_repos_root_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_repos_root_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_repos_root_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11102,7 +11558,7 @@ XS(_wrap_svn_ra_plugin_t_get_repos_root_set) {
XS(_wrap_svn_ra_plugin_t_get_repos_root_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11114,9 +11570,9 @@ XS(_wrap_svn_ra_plugin_t_get_repos_root_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_repos_root_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_repos_root_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const **,apr_pool_t *)) ((arg1)->get_repos_root);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_q_const__char_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11130,7 +11586,7 @@ XS(_wrap_svn_ra_plugin_t_get_repos_root_get) {
XS(_wrap_svn_ra_plugin_t_get_locations_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,apr_hash_t **,char const *,svn_revnum_t,apr_array_header_t *,apr_pool_t *) = (svn_error_t *(*)(void *,apr_hash_t **,char const *,svn_revnum_t,apr_array_header_t *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11142,9 +11598,9 @@ XS(_wrap_svn_ra_plugin_t_get_locations_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_locations_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_locations_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_p_apr_hash_t_p_q_const__char_svn_revnum_t_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11166,7 +11622,7 @@ XS(_wrap_svn_ra_plugin_t_get_locations_set) {
XS(_wrap_svn_ra_plugin_t_get_locations_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11178,9 +11634,9 @@ XS(_wrap_svn_ra_plugin_t_get_locations_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_locations_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_locations_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,apr_hash_t **,char const *,svn_revnum_t,apr_array_header_t *,apr_pool_t *)) ((arg1)->get_locations);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_p_apr_hash_t_p_q_const__char_svn_revnum_t_p_apr_array_header_t_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11194,7 +11650,7 @@ XS(_wrap_svn_ra_plugin_t_get_locations_get) {
XS(_wrap_svn_ra_plugin_t_get_file_revs_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_error_t *(*arg2)(void *,char const *,svn_revnum_t,svn_revnum_t,svn_ra_file_rev_handler_t,void *,apr_pool_t *) = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_revnum_t,svn_ra_file_rev_handler_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11206,9 +11662,9 @@ XS(_wrap_svn_ra_plugin_t_get_file_revs_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_revs_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_revs_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_revnum_t_svn_ra_file_rev_handler_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11230,7 +11686,7 @@ XS(_wrap_svn_ra_plugin_t_get_file_revs_set) {
XS(_wrap_svn_ra_plugin_t_get_file_revs_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11242,9 +11698,9 @@ XS(_wrap_svn_ra_plugin_t_get_file_revs_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_revs_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_file_revs_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_error_t *(*)(void *,char const *,svn_revnum_t,svn_revnum_t,svn_ra_file_rev_handler_t,void *,apr_pool_t *)) ((arg1)->get_file_revs);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_void_p_q_const__char_svn_revnum_t_svn_revnum_t_svn_ra_file_rev_handler_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11258,7 +11714,7 @@ XS(_wrap_svn_ra_plugin_t_get_file_revs_get) {
XS(_wrap_svn_ra_plugin_t_get_version_set) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
svn_version_t *(*arg2)(void) = (svn_version_t *(*)(void)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11270,9 +11726,9 @@ XS(_wrap_svn_ra_plugin_t_get_version_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_version_set" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_version_set" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_void__p_svn_version_t);
if (!SWIG_IsOK(res)) {
@@ -11294,7 +11750,7 @@ XS(_wrap_svn_ra_plugin_t_get_version_set) {
XS(_wrap_svn_ra_plugin_t_get_version_get) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11306,9 +11762,9 @@ XS(_wrap_svn_ra_plugin_t_get_version_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_version_get" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_ra_plugin_t_get_version_get" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
result = (svn_version_t *(*)(void)) ((arg1)->get_version);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_void__p_svn_version_t); argvi++ ;
@@ -11323,14 +11779,14 @@ XS(_wrap_svn_ra_plugin_t_get_version_get) {
XS(_wrap_new_svn_ra_plugin_t) {
{
int argvi = 0;
- svn_ra_plugin_t *result = 0 ;
+ struct svn_ra_plugin_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_ra_plugin_t();");
}
{
- result = (svn_ra_plugin_t *)calloc(1, sizeof(svn_ra_plugin_t));
+ result = (struct svn_ra_plugin_t *)calloc(1, sizeof(struct svn_ra_plugin_t));
@@ -11345,7 +11801,7 @@ XS(_wrap_new_svn_ra_plugin_t) {
XS(_wrap_delete_svn_ra_plugin_t) {
{
- svn_ra_plugin_t *arg1 = (svn_ra_plugin_t *) 0 ;
+ struct svn_ra_plugin_t *arg1 = (struct svn_ra_plugin_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11356,9 +11812,9 @@ XS(_wrap_delete_svn_ra_plugin_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_ra_plugin_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_plugin_t" "', argument " "1"" of type '" "svn_ra_plugin_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_ra_plugin_t" "', argument " "1"" of type '" "struct svn_ra_plugin_t *""'");
}
- arg1 = (svn_ra_plugin_t *)(argp1);
+ arg1 = (struct svn_ra_plugin_t *)(argp1);
{
free((char *) arg1);
@@ -14399,7 +14855,7 @@ XS(_wrap_svn_ra_plugin_invoke_get_log) {
arg7 = (svn_boolean_t)(val7);
{
arg8 = svn_swig_pl_thunk_log_receiver;
- arg9 = (void *)ST(7);
+ arg9 = ST(7);
}
if (items > 8) {
@@ -15348,6 +15804,89 @@ XS(_wrap_svn_ra_invoke_invalidate_wc_props_func) {
}
+XS(_wrap_svn_ra_invoke_get_wc_contents_func) {
+ {
+ svn_ra_get_wc_contents_func_t arg1 = (svn_ra_get_wc_contents_func_t) 0 ;
+ void *arg2 = (void *) 0 ;
+ svn_stream_t **arg3 = (svn_stream_t **) 0 ;
+ svn_checksum_t *arg4 = (svn_checksum_t *) 0 ;
+ apr_pool_t *arg5 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ int res2 ;
+ svn_stream_t *temp3 ;
+ void *argp4 = 0 ;
+ int res4 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg5 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg3 = &temp3;
+ if ((items < 3) || (items > 4)) {
+ SWIG_croak("Usage: svn_ra_invoke_get_wc_contents_func(_obj,baton,checksum,pool);");
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(0), (void**)(&arg1), SWIGTYPE_p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_ra_invoke_get_wc_contents_func" "', argument " "1"" of type '" "svn_ra_get_wc_contents_func_t""'");
+ }
+ }
+ res2 = SWIG_ConvertPtr(ST(1),SWIG_as_voidptrptr(&arg2), 0, 0);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_ra_invoke_get_wc_contents_func" "', argument " "2"" of type '" "void *""'");
+ }
+ res4 = SWIG_ConvertPtr(ST(2), &argp4,SWIGTYPE_p_svn_checksum_t, 0 | 0 );
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_ra_invoke_get_wc_contents_func" "', argument " "4"" of type '" "svn_checksum_t const *""'");
+ }
+ arg4 = (svn_checksum_t *)(argp4);
+ if (items > 3) {
+
+ }
+ {
+ result = (svn_error_t *)svn_ra_invoke_get_wc_contents_func(arg1,arg2,arg3,(struct svn_checksum_t const *)arg4,arg5);
+
+
+
+ }
+ {
+ 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 (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_from_stream(*arg3); argvi++ ;
+ }
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_ra_invoke_get_latest_revnum_func) {
{
svn_ra_get_latest_revnum_func_t arg1 = (svn_ra_get_latest_revnum_func_t) 0 ;
@@ -15989,8 +16528,6 @@ XS(_wrap_svn_ra_invoke_init_func) {
apr_pool_t *_global_pool ;
int val2 ;
int ecode2 = 0 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
int argvi = 0;
svn_error_t *result = 0 ;
dXSARGS;
@@ -16016,11 +16553,11 @@ XS(_wrap_svn_ra_invoke_init_func) {
}
if (items > 3) {
- res4 = SWIG_ConvertPtr(ST(3), &argp4,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res4)) {
- SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_ra_invoke_init_func" "', argument " "4"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg4 = svn_swig_pl_hash_to_prophash(ST(3), _global_pool);
}
- arg4 = (apr_hash_t *)(argp4);
}
{
result = (svn_error_t *)svn_ra_invoke_init_func(arg1,arg2,arg3,arg4);
@@ -16062,7 +16599,7 @@ XS(_wrap_svn_ra_invoke_init_func) {
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
-static swig_type_info _swigt__p_apr_array_header_t = {"_p_apr_array_header_t", "apr_array_header_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_apr_array_header_t = {"_p_apr_array_header_t", "apr_array_header_t *|svn_rangelist_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_file_t = {"_p_apr_file_t", "apr_file_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_hash_t = {"_p_apr_hash_t", "apr_hash_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_int32_t = {"_p_apr_int32_t", "apr_int32_t *|time_t *", 0, 0, (void*)0, 0};
@@ -16087,6 +16624,7 @@ static swig_type_info _swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void
static swig_type_info _swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)|struct svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)|struct svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_delta_editor_t const *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)|struct svn_error_t *(*)(void *,svn_ra_reporter_t const **,void **,svn_revnum_t,char const *,svn_boolean_t,svn_boolean_t,char const *,svn_delta_editor_t const *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,svn_stream_t **,svn_checksum_t const *,apr_pool_t *)|svn_ra_get_wc_contents_func_t", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_error_t *(*)(void *,apr_array_header_t const *,svn_revnum_t,svn_revnum_t,svn_boolean_t,svn_boolean_t,svn_log_message_receiver_t,void *,apr_pool_t *)|struct svn_error_t *(*)(void *,apr_array_header_t const *,svn_revnum_t,svn_revnum_t,svn_boolean_t,svn_boolean_t,svn_log_message_receiver_t,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t", "svn_error_t *(*)(void *,char const *,apr_pool_t *)|struct svn_error_t *(*)(void *,char const *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,char const *,apr_pool_t *)|svn_ra_invalidate_wc_props_func_t", 0, 0, (void*)0, 0};
@@ -16118,6 +16656,7 @@ static swig_type_info _swigt__p_f_svn_revnum_t_p_void_p_q_const__svn_delta_edito
static swig_type_info _swigt__p_f_void__p_svn_version_t = {"_p_f_void__p_svn_version_t", "struct svn_version_t *(*)(void)|svn_version_t *(*)(void)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_int = {"_p_int", "int *|svn_boolean_t *|apr_status_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_long = {"_p_long", "long *|svn_revnum_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_apr_array_header_t = {"_p_p_apr_array_header_t", "apr_array_header_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_apr_file_t = {"_p_p_apr_file_t", "apr_file_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_apr_hash_t = {"_p_p_apr_hash_t", "apr_hash_t **|svn_mergeinfo_catalog_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};
@@ -16131,6 +16670,7 @@ static swig_type_info _swigt__p_p_svn_ra_reporter2_t = {"_p_p_svn_ra_reporter2_t
static swig_type_info _swigt__p_p_svn_ra_reporter3_t = {"_p_p_svn_ra_reporter3_t", "struct svn_ra_reporter3_t **|svn_ra_reporter3_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_ra_reporter_t = {"_p_p_svn_ra_reporter_t", "struct svn_ra_reporter_t **|svn_ra_reporter_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_ra_session_t = {"_p_p_svn_ra_session_t", "struct svn_ra_session_t **|svn_ra_session_t **", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_svn_stream_t = {"_p_p_svn_stream_t", "struct svn_stream_t **|svn_stream_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_string_t = {"_p_p_svn_string_t", "struct svn_string_t **|svn_string_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_stringbuf_t = {"_p_p_svn_stringbuf_t", "struct svn_stringbuf_t **|svn_stringbuf_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **", 0, 0, (void*)0, 0};
@@ -16144,6 +16684,9 @@ static swig_type_info _swigt__p_svn_auth_iterstate_t = {"_p_svn_auth_iterstate_t
static swig_type_info _swigt__p_svn_auth_provider_object_t = {"_p_svn_auth_provider_object_t", "struct svn_auth_provider_object_t *|svn_auth_provider_object_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_provider_t = {"_p_svn_auth_provider_t", "struct svn_auth_provider_t *|svn_auth_provider_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_ssl_server_cert_info_t = {"_p_svn_auth_ssl_server_cert_info_t", "struct svn_auth_ssl_server_cert_info_t *|svn_auth_ssl_server_cert_info_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_ctx_t = {"_p_svn_checksum_ctx_t", "struct svn_checksum_ctx_t *|svn_checksum_ctx_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_kind_t = {"_p_svn_checksum_kind_t", "enum svn_checksum_kind_t *|svn_checksum_kind_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_checksum_t = {"_p_svn_checksum_t", "struct svn_checksum_t *|svn_checksum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_commit_info_t = {"_p_svn_commit_info_t", "struct svn_commit_info_t *|svn_commit_info_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_config_t = {"_p_svn_config_t", "struct svn_config_t *|svn_config_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_delta_editor_t = {"_p_svn_delta_editor_t", "struct svn_delta_editor_t *|svn_delta_editor_t *", 0, 0, (void*)0, 0};
@@ -16179,6 +16722,7 @@ static swig_type_info _swigt__p_svn_opt_subcommand_desc2_t = {"_p_svn_opt_subcom
static swig_type_info _swigt__p_svn_opt_subcommand_desc_t = {"_p_svn_opt_subcommand_desc_t", "struct svn_opt_subcommand_desc_t *|svn_opt_subcommand_desc_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_patch_file_t = {"_p_svn_patch_file_t", "struct svn_patch_file_t *|svn_patch_file_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_patch_t = {"_p_svn_patch_t", "struct svn_patch_t *|svn_patch_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_prop_inherited_item_t = {"_p_svn_prop_inherited_item_t", "struct svn_prop_inherited_item_t *|svn_prop_inherited_item_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_prop_kind = {"_p_svn_prop_kind", "svn_prop_kind_t *|enum svn_prop_kind *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_prop_patch_t = {"_p_svn_prop_patch_t", "struct svn_prop_patch_t *|svn_prop_patch_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_ra_callbacks2_t = {"_p_svn_ra_callbacks2_t", "struct svn_ra_callbacks2_t *|svn_ra_callbacks2_t *", 0, 0, (void*)0, 0};
@@ -16197,7 +16741,11 @@ static swig_type_info _swigt__p_svn_txdelta_op_t = {"_p_svn_txdelta_op_t", "stru
static swig_type_info _swigt__p_svn_txdelta_stream_t = {"_p_svn_txdelta_stream_t", "struct svn_txdelta_stream_t *|svn_txdelta_stream_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_txdelta_window_t = {"_p_svn_txdelta_window_t", "struct svn_txdelta_window_t *|svn_txdelta_window_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_version_checklist_t = {"_p_svn_version_checklist_t", "struct svn_version_checklist_t *|svn_version_checklist_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_ext_linked_lib_t = {"_p_svn_version_ext_linked_lib_t", "struct svn_version_ext_linked_lib_t *|svn_version_ext_linked_lib_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_ext_loaded_lib_t = {"_p_svn_version_ext_loaded_lib_t", "struct svn_version_ext_loaded_lib_t *|svn_version_ext_loaded_lib_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_version_extended_t = {"_p_svn_version_extended_t", "struct svn_version_extended_t *|svn_version_extended_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_version_t = {"_p_svn_version_t", "struct svn_version_t *|svn_version_t *", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_svn_wc_external_item2_t = {"_p_svn_wc_external_item2_t", "svn_wc_external_item2_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_unsigned_long = {"_p_unsigned_long", "unsigned long *|svn_linenum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_void = {"_p_void", "void *", 0, 0, (void*)0, 0};
@@ -16227,6 +16775,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
+ &_swigt__p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t,
&_swigt__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t,
@@ -16258,6 +16807,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_f_void__p_svn_version_t,
&_swigt__p_int,
&_swigt__p_long,
+ &_swigt__p_p_apr_array_header_t,
&_swigt__p_p_apr_file_t,
&_swigt__p_p_apr_hash_t,
&_swigt__p_p_char,
@@ -16271,6 +16821,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_p_svn_ra_reporter3_t,
&_swigt__p_p_svn_ra_reporter_t,
&_swigt__p_p_svn_ra_session_t,
+ &_swigt__p_p_svn_stream_t,
&_swigt__p_p_svn_string_t,
&_swigt__p_p_svn_stringbuf_t,
&_swigt__p_p_void,
@@ -16284,6 +16835,9 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_auth_provider_object_t,
&_swigt__p_svn_auth_provider_t,
&_swigt__p_svn_auth_ssl_server_cert_info_t,
+ &_swigt__p_svn_checksum_ctx_t,
+ &_swigt__p_svn_checksum_kind_t,
+ &_swigt__p_svn_checksum_t,
&_swigt__p_svn_commit_info_t,
&_swigt__p_svn_config_t,
&_swigt__p_svn_delta_editor_t,
@@ -16319,6 +16873,7 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_opt_subcommand_desc_t,
&_swigt__p_svn_patch_file_t,
&_swigt__p_svn_patch_t,
+ &_swigt__p_svn_prop_inherited_item_t,
&_swigt__p_svn_prop_kind,
&_swigt__p_svn_prop_patch_t,
&_swigt__p_svn_ra_callbacks2_t,
@@ -16337,7 +16892,11 @@ static swig_type_info *swig_type_initial[] = {
&_swigt__p_svn_txdelta_stream_t,
&_swigt__p_svn_txdelta_window_t,
&_swigt__p_svn_version_checklist_t,
+ &_swigt__p_svn_version_ext_linked_lib_t,
+ &_swigt__p_svn_version_ext_loaded_lib_t,
+ &_swigt__p_svn_version_extended_t,
&_swigt__p_svn_version_t,
+ &_swigt__p_svn_wc_external_item2_t,
&_swigt__p_unsigned_long,
&_swigt__p_void,
};
@@ -16367,6 +16926,7 @@ static swig_cast_info _swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void
static swig_cast_info _swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t[] = { {&_swigt__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16398,6 +16958,7 @@ static swig_cast_info _swigc__p_f_svn_revnum_t_p_void_p_q_const__svn_delta_edito
static swig_cast_info _swigc__p_f_void__p_svn_version_t[] = { {&_swigt__p_f_void__p_svn_version_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_int[] = { {&_swigt__p_int, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_long[] = { {&_swigt__p_long, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_apr_array_header_t[] = { {&_swigt__p_p_apr_array_header_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_apr_file_t[] = { {&_swigt__p_p_apr_file_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_apr_hash_t[] = { {&_swigt__p_p_apr_hash_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_char[] = { {&_swigt__p_p_char, 0, 0, 0},{0, 0, 0, 0}};
@@ -16411,6 +16972,7 @@ static swig_cast_info _swigc__p_p_svn_ra_reporter2_t[] = { {&_swigt__p_p_svn_ra
static swig_cast_info _swigc__p_p_svn_ra_reporter3_t[] = { {&_swigt__p_p_svn_ra_reporter3_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_ra_reporter_t[] = { {&_swigt__p_p_svn_ra_reporter_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_ra_session_t[] = { {&_swigt__p_p_svn_ra_session_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_p_svn_stream_t[] = { {&_swigt__p_p_svn_stream_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_string_t[] = { {&_swigt__p_p_svn_string_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_svn_stringbuf_t[] = { {&_swigt__p_p_svn_stringbuf_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_p_void[] = { {&_swigt__p_p_void, 0, 0, 0},{0, 0, 0, 0}};
@@ -16424,6 +16986,9 @@ static swig_cast_info _swigc__p_svn_auth_iterstate_t[] = { {&_swigt__p_svn_auth
static swig_cast_info _swigc__p_svn_auth_provider_object_t[] = { {&_swigt__p_svn_auth_provider_object_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_auth_provider_t[] = { {&_swigt__p_svn_auth_provider_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_auth_ssl_server_cert_info_t[] = { {&_swigt__p_svn_auth_ssl_server_cert_info_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_ctx_t[] = { {&_swigt__p_svn_checksum_ctx_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_kind_t[] = { {&_swigt__p_svn_checksum_kind_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_checksum_t[] = { {&_swigt__p_svn_checksum_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_commit_info_t[] = { {&_swigt__p_svn_commit_info_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_config_t[] = { {&_swigt__p_svn_config_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_delta_editor_t[] = { {&_swigt__p_svn_delta_editor_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16459,6 +17024,7 @@ static swig_cast_info _swigc__p_svn_opt_subcommand_desc2_t[] = { {&_swigt__p_sv
static swig_cast_info _swigc__p_svn_opt_subcommand_desc_t[] = { {&_swigt__p_svn_opt_subcommand_desc_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_patch_file_t[] = { {&_swigt__p_svn_patch_file_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_patch_t[] = { {&_swigt__p_svn_patch_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_prop_inherited_item_t[] = { {&_swigt__p_svn_prop_inherited_item_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_prop_kind[] = { {&_swigt__p_svn_prop_kind, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_prop_patch_t[] = { {&_swigt__p_svn_prop_patch_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_ra_callbacks2_t[] = { {&_swigt__p_svn_ra_callbacks2_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -16477,7 +17043,11 @@ static swig_cast_info _swigc__p_svn_txdelta_op_t[] = { {&_swigt__p_svn_txdelta_
static swig_cast_info _swigc__p_svn_txdelta_stream_t[] = { {&_swigt__p_svn_txdelta_stream_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_txdelta_window_t[] = { {&_swigt__p_svn_txdelta_window_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_version_checklist_t[] = { {&_swigt__p_svn_version_checklist_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_ext_linked_lib_t[] = { {&_swigt__p_svn_version_ext_linked_lib_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_ext_loaded_lib_t[] = { {&_swigt__p_svn_version_ext_loaded_lib_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_version_extended_t[] = { {&_swigt__p_svn_version_extended_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_version_t[] = { {&_swigt__p_svn_version_t, 0, 0, 0},{0, 0, 0, 0}};
+static swig_cast_info _swigc__p_svn_wc_external_item2_t[] = { {&_swigt__p_svn_wc_external_item2_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_unsigned_long[] = { {&_swigt__p_unsigned_long, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_void[] = { {&_swigt__p_void, 0, 0, 0},{0, 0, 0, 0}};
@@ -16507,6 +17077,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_p_q_const__svn_ra_reporter_t_p_p_void_svn_revnum_t_p_q_const__char_svn_boolean_t_svn_boolean_t_p_q_const__char_p_q_const__svn_delta_editor_t_p_void_p_apr_pool_t__p_svn_error_t,
+ _swigc__p_f_p_void_p_p_svn_stream_t_p_q_const__svn_checksum_t_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__apr_array_header_t_svn_revnum_t_svn_revnum_t_svn_boolean_t_svn_boolean_t_svn_log_message_receiver_t_p_void_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__char_p_apr_pool_t__p_svn_error_t,
_swigc__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t,
@@ -16538,6 +17109,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_f_void__p_svn_version_t,
_swigc__p_int,
_swigc__p_long,
+ _swigc__p_p_apr_array_header_t,
_swigc__p_p_apr_file_t,
_swigc__p_p_apr_hash_t,
_swigc__p_p_char,
@@ -16551,6 +17123,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_p_svn_ra_reporter3_t,
_swigc__p_p_svn_ra_reporter_t,
_swigc__p_p_svn_ra_session_t,
+ _swigc__p_p_svn_stream_t,
_swigc__p_p_svn_string_t,
_swigc__p_p_svn_stringbuf_t,
_swigc__p_p_void,
@@ -16564,6 +17137,9 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_auth_provider_object_t,
_swigc__p_svn_auth_provider_t,
_swigc__p_svn_auth_ssl_server_cert_info_t,
+ _swigc__p_svn_checksum_ctx_t,
+ _swigc__p_svn_checksum_kind_t,
+ _swigc__p_svn_checksum_t,
_swigc__p_svn_commit_info_t,
_swigc__p_svn_config_t,
_swigc__p_svn_delta_editor_t,
@@ -16599,6 +17175,7 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_opt_subcommand_desc_t,
_swigc__p_svn_patch_file_t,
_swigc__p_svn_patch_t,
+ _swigc__p_svn_prop_inherited_item_t,
_swigc__p_svn_prop_kind,
_swigc__p_svn_prop_patch_t,
_swigc__p_svn_ra_callbacks2_t,
@@ -16617,7 +17194,11 @@ static swig_cast_info *swig_cast_initial[] = {
_swigc__p_svn_txdelta_stream_t,
_swigc__p_svn_txdelta_window_t,
_swigc__p_svn_version_checklist_t,
+ _swigc__p_svn_version_ext_linked_lib_t,
+ _swigc__p_svn_version_ext_loaded_lib_t,
+ _swigc__p_svn_version_extended_t,
_swigc__p_svn_version_t,
+ _swigc__p_svn_wc_external_item2_t,
_swigc__p_unsigned_long,
_swigc__p_void,
};
@@ -16692,6 +17273,8 @@ static swig_command_info swig_commands[] = {
{"SVN::_Ra::svn_ra_callbacks2_t_cancel_func_get", _wrap_svn_ra_callbacks2_t_cancel_func_get},
{"SVN::_Ra::svn_ra_callbacks2_t_get_client_string_set", _wrap_svn_ra_callbacks2_t_get_client_string_set},
{"SVN::_Ra::svn_ra_callbacks2_t_get_client_string_get", _wrap_svn_ra_callbacks2_t_get_client_string_get},
+{"SVN::_Ra::svn_ra_callbacks2_t_get_wc_contents_set", _wrap_svn_ra_callbacks2_t_get_wc_contents_set},
+{"SVN::_Ra::svn_ra_callbacks2_t_get_wc_contents_get", _wrap_svn_ra_callbacks2_t_get_wc_contents_get},
{"SVN::_Ra::new_svn_ra_callbacks2_t", _wrap_new_svn_ra_callbacks2_t},
{"SVN::_Ra::delete_svn_ra_callbacks2_t", _wrap_delete_svn_ra_callbacks2_t},
{"SVN::_Ra::svn_ra_callbacks_t_open_tmp_file_set", _wrap_svn_ra_callbacks_t_open_tmp_file_set},
@@ -16731,8 +17314,10 @@ static swig_command_info swig_commands[] = {
{"SVN::_Ra::svn_ra_get_dir2", _wrap_svn_ra_get_dir2},
{"SVN::_Ra::svn_ra_get_dir", _wrap_svn_ra_get_dir},
{"SVN::_Ra::svn_ra_get_mergeinfo", _wrap_svn_ra_get_mergeinfo},
+{"SVN::_Ra::svn_ra_do_update3", _wrap_svn_ra_do_update3},
{"SVN::_Ra::svn_ra_do_update2", _wrap_svn_ra_do_update2},
{"SVN::_Ra::svn_ra_do_update", _wrap_svn_ra_do_update},
+{"SVN::_Ra::svn_ra_do_switch3", _wrap_svn_ra_do_switch3},
{"SVN::_Ra::svn_ra_do_switch2", _wrap_svn_ra_do_switch2},
{"SVN::_Ra::svn_ra_do_switch", _wrap_svn_ra_do_switch},
{"SVN::_Ra::svn_ra_do_status2", _wrap_svn_ra_do_status2},
@@ -16760,6 +17345,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Ra::svn_ra_replay_range", _wrap_svn_ra_replay_range},
{"SVN::_Ra::svn_ra_replay", _wrap_svn_ra_replay},
{"SVN::_Ra::svn_ra_get_deleted_rev", _wrap_svn_ra_get_deleted_rev},
+{"SVN::_Ra::svn_ra_get_inherited_props", _wrap_svn_ra_get_inherited_props},
{"SVN::_Ra::svn_ra_has_capability", _wrap_svn_ra_has_capability},
{"SVN::_Ra::svn_ra_print_modules", _wrap_svn_ra_print_modules},
{"SVN::_Ra::svn_ra_print_ra_libraries", _wrap_svn_ra_print_ra_libraries},
@@ -16852,6 +17438,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Ra::svn_ra_invoke_set_wc_prop_func", _wrap_svn_ra_invoke_set_wc_prop_func},
{"SVN::_Ra::svn_ra_invoke_push_wc_prop_func", _wrap_svn_ra_invoke_push_wc_prop_func},
{"SVN::_Ra::svn_ra_invoke_invalidate_wc_props_func", _wrap_svn_ra_invoke_invalidate_wc_props_func},
+{"SVN::_Ra::svn_ra_invoke_get_wc_contents_func", _wrap_svn_ra_invoke_get_wc_contents_func},
{"SVN::_Ra::svn_ra_invoke_get_latest_revnum_func", _wrap_svn_ra_invoke_get_latest_revnum_func},
{"SVN::_Ra::svn_ra_invoke_get_client_string_func", _wrap_svn_ra_invoke_get_client_string_func},
{"SVN::_Ra::svn_ra_invoke_file_rev_handler", _wrap_svn_ra_invoke_file_rev_handler},
@@ -16921,8 +17508,6 @@ SWIG_InitializeModule(void *clientdata) {
swig_module_info *module_head, *iter;
int found, init;
- clientdata = clientdata;
-
/* check to see if the circular list has been setup, if not, set it up */
if (swig_module.next==0) {
/* Initialize the swig_module */
@@ -17113,25 +17698,30 @@ XS(SWIG_init) {
/* Install commands */
for (i = 0; swig_commands[i].name; i++) {
- newXS((char*) swig_commands[i].name,swig_commands[i].wrapper, (char*)__FILE__);
+ /* Casts only needed for Perl < 5.10. */
+#ifdef __cplusplus
+ newXS(const_cast<char*>(swig_commands[i].name), swig_commands[i].wrapper, const_cast<char*>(__FILE__));
+#else
+ newXS((char*)swig_commands[i].name, swig_commands[i].wrapper, (char*)__FILE__);
+#endif
}
/* Install variables */
for (i = 0; swig_variables[i].name; i++) {
SV *sv;
- sv = get_sv((char*) swig_variables[i].name, TRUE | 0x2 | GV_ADDMULTI);
+ sv = get_sv(swig_variables[i].name, TRUE | 0x2 | GV_ADDMULTI);
if (swig_variables[i].type) {
SWIG_MakePtr(sv,(void *)1, *swig_variables[i].type,0);
} else {
sv_setiv(sv,(IV) 0);
}
- swig_create_magic(sv, (char *) swig_variables[i].name, swig_variables[i].set, swig_variables[i].get);
+ swig_create_magic(sv, swig_variables[i].name, swig_variables[i].set, swig_variables[i].get);
}
/* Install constant */
for (i = 0; swig_constants[i].type; i++) {
SV *sv;
- sv = get_sv((char*)swig_constants[i].name, TRUE | 0x2 | GV_ADDMULTI);
+ sv = get_sv(swig_constants[i].name, TRUE | 0x2 | GV_ADDMULTI);
switch(swig_constants[i].type) {
case SWIG_INT:
sv_setiv(sv, (IV) swig_constants[i].lvalue);
@@ -17140,7 +17730,7 @@ XS(SWIG_init) {
sv_setnv(sv, (double) swig_constants[i].dvalue);
break;
case SWIG_STRING:
- sv_setpv(sv, (char *) swig_constants[i].pvalue);
+ sv_setpv(sv, (const char *) swig_constants[i].pvalue);
break;
case SWIG_POINTER:
SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0);
@@ -17154,37 +17744,52 @@ XS(SWIG_init) {
SvREADONLY_on(sv);
}
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_DEPTH", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("depth"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_MERGEINFO", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("mergeinfo"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_LOG_REVPROPS", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("log-revprops"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_PARTIAL_REPLAY", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("partial-replay"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_COMMIT_REVPROPS", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("commit-revprops"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_ATOMIC_REVPROPS", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr("atomic-revprops"));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_INHERITED_PROPS", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_FromCharPtr("inherited-props"));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_EPHEMERAL_TXNPROPS", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_FromCharPtr("ephemeral-txnprops"));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_CAPABILITY_GET_FILE_REVS_REVERSE", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_FromCharPtr("get-file-revs-reversed"));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "SVN_RA_ABI_VERSION", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(2)));
SvREADONLY_on(sv);