summaryrefslogtreecommitdiff
path: root/subversion/bindings/swig/perl/native/svn_wc.c
diff options
context:
space:
mode:
Diffstat (limited to 'subversion/bindings/swig/perl/native/svn_wc.c')
-rw-r--r--subversion/bindings/swig/perl/native/svn_wc.c5010
1 files changed, 2981 insertions, 2029 deletions
diff --git a/subversion/bindings/swig/perl/native/svn_wc.c b/subversion/bindings/swig/perl/native/svn_wc.c
index c20a171..c7e723b 100644
--- a/subversion/bindings/swig/perl/native/svn_wc.c
+++ b/subversion/bindings/swig/perl/native/svn_wc.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)
@@ -1585,99 +1575,105 @@ SWIG_Perl_SetModule(swig_module_info *module) {
#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_checksum_t swig_types[82]
-#define SWIGTYPE_p_svn_commit_info_t swig_types[83]
-#define SWIGTYPE_p_svn_config_t swig_types[84]
-#define SWIGTYPE_p_svn_delta_editor_t swig_types[85]
-#define SWIGTYPE_p_svn_depth_t swig_types[86]
-#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[87]
-#define SWIGTYPE_p_svn_diff_datasource_e swig_types[88]
-#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[89]
-#define SWIGTYPE_p_svn_diff_file_options_t swig_types[90]
-#define SWIGTYPE_p_svn_diff_fns2_t swig_types[91]
-#define SWIGTYPE_p_svn_diff_fns_t swig_types[92]
-#define SWIGTYPE_p_svn_diff_hunk_t swig_types[93]
-#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[94]
-#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[95]
-#define SWIGTYPE_p_svn_diff_t swig_types[96]
-#define SWIGTYPE_p_svn_dirent_t swig_types[97]
-#define SWIGTYPE_p_svn_errno_t swig_types[98]
-#define SWIGTYPE_p_svn_error_t swig_types[99]
-#define SWIGTYPE_p_svn_io_dirent2_t swig_types[100]
-#define SWIGTYPE_p_svn_io_dirent_t swig_types[101]
-#define SWIGTYPE_p_svn_io_file_del_t swig_types[102]
-#define SWIGTYPE_p_svn_location_segment_t swig_types[103]
-#define SWIGTYPE_p_svn_lock_t swig_types[104]
-#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[105]
-#define SWIGTYPE_p_svn_log_changed_path_t swig_types[106]
-#define SWIGTYPE_p_svn_log_entry_t swig_types[107]
-#define SWIGTYPE_p_svn_merge_range_t swig_types[108]
-#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[109]
-#define SWIGTYPE_p_svn_node_kind_t swig_types[110]
-#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[111]
-#define SWIGTYPE_p_svn_opt_revision_t swig_types[112]
-#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[113]
-#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[114]
-#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[115]
-#define SWIGTYPE_p_svn_patch_file_t swig_types[116]
-#define SWIGTYPE_p_svn_patch_t swig_types[117]
-#define SWIGTYPE_p_svn_prop_kind swig_types[118]
-#define SWIGTYPE_p_svn_prop_patch_t swig_types[119]
-#define SWIGTYPE_p_svn_ra_callbacks2_t swig_types[120]
-#define SWIGTYPE_p_svn_ra_callbacks_t swig_types[121]
-#define SWIGTYPE_p_svn_ra_plugin_t swig_types[122]
-#define SWIGTYPE_p_svn_ra_reporter2_t swig_types[123]
-#define SWIGTYPE_p_svn_ra_reporter3_t swig_types[124]
-#define SWIGTYPE_p_svn_ra_reporter_t swig_types[125]
-#define SWIGTYPE_p_svn_ra_session_t swig_types[126]
-#define SWIGTYPE_p_svn_stream_mark_t swig_types[127]
-#define SWIGTYPE_p_svn_stream_t swig_types[128]
-#define SWIGTYPE_p_svn_string_t swig_types[129]
-#define SWIGTYPE_p_svn_stringbuf_t swig_types[130]
-#define SWIGTYPE_p_svn_tristate_t swig_types[131]
-#define SWIGTYPE_p_svn_txdelta_op_t swig_types[132]
-#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[133]
-#define SWIGTYPE_p_svn_txdelta_window_t swig_types[134]
-#define SWIGTYPE_p_svn_version_checklist_t swig_types[135]
-#define SWIGTYPE_p_svn_version_t swig_types[136]
-#define SWIGTYPE_p_svn_wc_adm_access_t swig_types[137]
-#define SWIGTYPE_p_svn_wc_committed_queue_t swig_types[138]
-#define SWIGTYPE_p_svn_wc_conflict_action_t swig_types[139]
-#define SWIGTYPE_p_svn_wc_conflict_choice_t swig_types[140]
-#define SWIGTYPE_p_svn_wc_conflict_description2_t swig_types[141]
-#define SWIGTYPE_p_svn_wc_conflict_description_t swig_types[142]
-#define SWIGTYPE_p_svn_wc_conflict_kind_t swig_types[143]
-#define SWIGTYPE_p_svn_wc_conflict_reason_t swig_types[144]
-#define SWIGTYPE_p_svn_wc_conflict_result_t swig_types[145]
-#define SWIGTYPE_p_svn_wc_conflict_version_t swig_types[146]
-#define SWIGTYPE_p_svn_wc_context_t swig_types[147]
-#define SWIGTYPE_p_svn_wc_diff_callbacks2_t swig_types[148]
-#define SWIGTYPE_p_svn_wc_diff_callbacks3_t swig_types[149]
-#define SWIGTYPE_p_svn_wc_diff_callbacks4_t swig_types[150]
-#define SWIGTYPE_p_svn_wc_diff_callbacks_t swig_types[151]
-#define SWIGTYPE_p_svn_wc_entry_callbacks2_t swig_types[152]
-#define SWIGTYPE_p_svn_wc_entry_callbacks_t swig_types[153]
-#define SWIGTYPE_p_svn_wc_entry_t swig_types[154]
-#define SWIGTYPE_p_svn_wc_external_item2_t swig_types[155]
-#define SWIGTYPE_p_svn_wc_external_item_t swig_types[156]
-#define SWIGTYPE_p_svn_wc_info_t swig_types[157]
-#define SWIGTYPE_p_svn_wc_merge_outcome_t swig_types[158]
-#define SWIGTYPE_p_svn_wc_notify_action_t swig_types[159]
-#define SWIGTYPE_p_svn_wc_notify_lock_state_t swig_types[160]
-#define SWIGTYPE_p_svn_wc_notify_state_t swig_types[161]
-#define SWIGTYPE_p_svn_wc_notify_t swig_types[162]
-#define SWIGTYPE_p_svn_wc_operation_t swig_types[163]
-#define SWIGTYPE_p_svn_wc_revision_status_t swig_types[164]
-#define SWIGTYPE_p_svn_wc_schedule_t swig_types[165]
-#define SWIGTYPE_p_svn_wc_status2_t swig_types[166]
-#define SWIGTYPE_p_svn_wc_status3_t swig_types[167]
-#define SWIGTYPE_p_svn_wc_status_t swig_types[168]
-#define SWIGTYPE_p_svn_wc_traversal_info_t swig_types[169]
-#define SWIGTYPE_p_unsigned_char swig_types[170]
-#define SWIGTYPE_p_unsigned_long swig_types[171]
-#define SWIGTYPE_p_void swig_types[172]
-static swig_type_info *swig_types[174];
-static swig_module_info swig_module = {swig_types, 173, 0, 0, 0, 0};
+#define SWIGTYPE_p_svn_checksum_ctx_t swig_types[82]
+#define SWIGTYPE_p_svn_checksum_kind_t swig_types[83]
+#define SWIGTYPE_p_svn_checksum_t swig_types[84]
+#define SWIGTYPE_p_svn_commit_info_t swig_types[85]
+#define SWIGTYPE_p_svn_config_t swig_types[86]
+#define SWIGTYPE_p_svn_delta_editor_t swig_types[87]
+#define SWIGTYPE_p_svn_depth_t swig_types[88]
+#define SWIGTYPE_p_svn_diff_conflict_display_style_t swig_types[89]
+#define SWIGTYPE_p_svn_diff_datasource_e swig_types[90]
+#define SWIGTYPE_p_svn_diff_file_ignore_space_t swig_types[91]
+#define SWIGTYPE_p_svn_diff_file_options_t swig_types[92]
+#define SWIGTYPE_p_svn_diff_fns2_t swig_types[93]
+#define SWIGTYPE_p_svn_diff_fns_t swig_types[94]
+#define SWIGTYPE_p_svn_diff_hunk_t swig_types[95]
+#define SWIGTYPE_p_svn_diff_operation_kind_e swig_types[96]
+#define SWIGTYPE_p_svn_diff_output_fns_t swig_types[97]
+#define SWIGTYPE_p_svn_diff_t swig_types[98]
+#define SWIGTYPE_p_svn_dirent_t swig_types[99]
+#define SWIGTYPE_p_svn_errno_t swig_types[100]
+#define SWIGTYPE_p_svn_error_t swig_types[101]
+#define SWIGTYPE_p_svn_io_dirent2_t swig_types[102]
+#define SWIGTYPE_p_svn_io_dirent_t swig_types[103]
+#define SWIGTYPE_p_svn_io_file_del_t swig_types[104]
+#define SWIGTYPE_p_svn_location_segment_t swig_types[105]
+#define SWIGTYPE_p_svn_lock_t swig_types[106]
+#define SWIGTYPE_p_svn_log_changed_path2_t swig_types[107]
+#define SWIGTYPE_p_svn_log_changed_path_t swig_types[108]
+#define SWIGTYPE_p_svn_log_entry_t swig_types[109]
+#define SWIGTYPE_p_svn_merge_range_t swig_types[110]
+#define SWIGTYPE_p_svn_mergeinfo_inheritance_t swig_types[111]
+#define SWIGTYPE_p_svn_node_kind_t swig_types[112]
+#define SWIGTYPE_p_svn_opt_revision_range_t swig_types[113]
+#define SWIGTYPE_p_svn_opt_revision_t swig_types[114]
+#define SWIGTYPE_p_svn_opt_revision_value_t swig_types[115]
+#define SWIGTYPE_p_svn_opt_subcommand_desc2_t swig_types[116]
+#define SWIGTYPE_p_svn_opt_subcommand_desc_t swig_types[117]
+#define SWIGTYPE_p_svn_patch_file_t swig_types[118]
+#define SWIGTYPE_p_svn_patch_t swig_types[119]
+#define SWIGTYPE_p_svn_prop_inherited_item_t swig_types[120]
+#define SWIGTYPE_p_svn_prop_kind swig_types[121]
+#define SWIGTYPE_p_svn_prop_patch_t swig_types[122]
+#define SWIGTYPE_p_svn_ra_callbacks2_t swig_types[123]
+#define SWIGTYPE_p_svn_ra_callbacks_t swig_types[124]
+#define SWIGTYPE_p_svn_ra_plugin_t swig_types[125]
+#define SWIGTYPE_p_svn_ra_reporter2_t swig_types[126]
+#define SWIGTYPE_p_svn_ra_reporter3_t swig_types[127]
+#define SWIGTYPE_p_svn_ra_reporter_t swig_types[128]
+#define SWIGTYPE_p_svn_ra_session_t swig_types[129]
+#define SWIGTYPE_p_svn_stream_mark_t swig_types[130]
+#define SWIGTYPE_p_svn_stream_t swig_types[131]
+#define SWIGTYPE_p_svn_string_t swig_types[132]
+#define SWIGTYPE_p_svn_stringbuf_t swig_types[133]
+#define SWIGTYPE_p_svn_tristate_t swig_types[134]
+#define SWIGTYPE_p_svn_txdelta_op_t swig_types[135]
+#define SWIGTYPE_p_svn_txdelta_stream_t swig_types[136]
+#define SWIGTYPE_p_svn_txdelta_window_t swig_types[137]
+#define SWIGTYPE_p_svn_version_checklist_t swig_types[138]
+#define SWIGTYPE_p_svn_version_ext_linked_lib_t swig_types[139]
+#define SWIGTYPE_p_svn_version_ext_loaded_lib_t swig_types[140]
+#define SWIGTYPE_p_svn_version_extended_t swig_types[141]
+#define SWIGTYPE_p_svn_version_t swig_types[142]
+#define SWIGTYPE_p_svn_wc_adm_access_t swig_types[143]
+#define SWIGTYPE_p_svn_wc_committed_queue_t swig_types[144]
+#define SWIGTYPE_p_svn_wc_conflict_action_t swig_types[145]
+#define SWIGTYPE_p_svn_wc_conflict_choice_t swig_types[146]
+#define SWIGTYPE_p_svn_wc_conflict_description2_t swig_types[147]
+#define SWIGTYPE_p_svn_wc_conflict_description_t swig_types[148]
+#define SWIGTYPE_p_svn_wc_conflict_kind_t swig_types[149]
+#define SWIGTYPE_p_svn_wc_conflict_reason_t swig_types[150]
+#define SWIGTYPE_p_svn_wc_conflict_result_t swig_types[151]
+#define SWIGTYPE_p_svn_wc_conflict_version_t swig_types[152]
+#define SWIGTYPE_p_svn_wc_context_t swig_types[153]
+#define SWIGTYPE_p_svn_wc_diff_callbacks2_t swig_types[154]
+#define SWIGTYPE_p_svn_wc_diff_callbacks3_t swig_types[155]
+#define SWIGTYPE_p_svn_wc_diff_callbacks4_t swig_types[156]
+#define SWIGTYPE_p_svn_wc_diff_callbacks_t swig_types[157]
+#define SWIGTYPE_p_svn_wc_entry_callbacks2_t swig_types[158]
+#define SWIGTYPE_p_svn_wc_entry_callbacks_t swig_types[159]
+#define SWIGTYPE_p_svn_wc_entry_t swig_types[160]
+#define SWIGTYPE_p_svn_wc_external_item2_t swig_types[161]
+#define SWIGTYPE_p_svn_wc_external_item_t swig_types[162]
+#define SWIGTYPE_p_svn_wc_info_t swig_types[163]
+#define SWIGTYPE_p_svn_wc_merge_outcome_t swig_types[164]
+#define SWIGTYPE_p_svn_wc_notify_action_t swig_types[165]
+#define SWIGTYPE_p_svn_wc_notify_lock_state_t swig_types[166]
+#define SWIGTYPE_p_svn_wc_notify_state_t swig_types[167]
+#define SWIGTYPE_p_svn_wc_notify_t swig_types[168]
+#define SWIGTYPE_p_svn_wc_operation_t swig_types[169]
+#define SWIGTYPE_p_svn_wc_revision_status_t swig_types[170]
+#define SWIGTYPE_p_svn_wc_schedule_t swig_types[171]
+#define SWIGTYPE_p_svn_wc_status2_t swig_types[172]
+#define SWIGTYPE_p_svn_wc_status3_t swig_types[173]
+#define SWIGTYPE_p_svn_wc_status_t swig_types[174]
+#define SWIGTYPE_p_svn_wc_traversal_info_t swig_types[175]
+#define SWIGTYPE_p_unsigned_char swig_types[176]
+#define SWIGTYPE_p_unsigned_long swig_types[177]
+#define SWIGTYPE_p_void swig_types[178]
+static swig_type_info *swig_types[180];
+static swig_module_info swig_module = {swig_types, 179, 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)
@@ -1688,7 +1684,7 @@ static swig_module_info swig_module = {swig_types, 173, 0, 0, 0, 0};
#define SWIG_name "SVN::_Wc::boot_SVN___Wc"
#define SWIG_prefix "SVN::_Wc::"
-#define SWIGVERSION 0x020004
+#define SWIGVERSION 0x020009
#define SWIG_VERSION SWIGVERSION
@@ -1726,10 +1722,13 @@ SWIGEXPORT void SWIG_init (CV *cv, CPerlObj *);
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);
}
@@ -1876,9 +1875,20 @@ SWIG_CanCastAsInteger(double *d, double min, double max) {
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);
@@ -1950,16 +1960,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);
@@ -1993,10 +2006,13 @@ SWIG_AsVal_unsigned_SS_long SWIG_PERL_DECL_ARGS_2(SV *obj, unsigned long *val)
SWIGINTERNINLINE SV *
SWIG_From_unsigned_SS_long SWIG_PERL_DECL_ARGS_1(unsigned long value)
-{
- SV *obj = sv_newmortal();
- sv_setuv(obj, (UV) value);
- return obj;
+{
+ SV *sv;
+ if (value <= UV_MAX)
+ sv = newSVuv(value);
+ else
+ sv = newSVpvf("%lu", value);
+ return sv_2mortal(sv);
}
@@ -2015,9 +2031,20 @@ SWIG_From_unsigned_SS_long SWIG_PERL_DECL_ARGS_1(unsigned long value)
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);
@@ -4337,7 +4364,7 @@ XS(_wrap_svn_wc_traversed_depths) {
XS(_wrap_svn_wc_external_item2_t_target_dir_set) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4352,9 +4379,9 @@ XS(_wrap_svn_wc_external_item2_t_target_dir_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_target_dir_set" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_target_dir_set" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_external_item2_t_target_dir_set" "', argument " "2"" of type '" "char const *""'");
@@ -4382,7 +4409,7 @@ XS(_wrap_svn_wc_external_item2_t_target_dir_set) {
XS(_wrap_svn_wc_external_item2_t_target_dir_get) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4394,9 +4421,9 @@ XS(_wrap_svn_wc_external_item2_t_target_dir_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_target_dir_get" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_target_dir_get" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
result = (char *) ((arg1)->target_dir);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -4410,7 +4437,7 @@ XS(_wrap_svn_wc_external_item2_t_target_dir_get) {
XS(_wrap_svn_wc_external_item2_t_url_set) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4425,9 +4452,9 @@ XS(_wrap_svn_wc_external_item2_t_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_url_set" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_url_set" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_external_item2_t_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -4455,7 +4482,7 @@ XS(_wrap_svn_wc_external_item2_t_url_set) {
XS(_wrap_svn_wc_external_item2_t_url_get) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4467,9 +4494,9 @@ XS(_wrap_svn_wc_external_item2_t_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_url_get" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_url_get" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
result = (char *) ((arg1)->url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -4483,7 +4510,7 @@ XS(_wrap_svn_wc_external_item2_t_url_get) {
XS(_wrap_svn_wc_external_item2_t_revision_set) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4496,57 +4523,11 @@ XS(_wrap_svn_wc_external_item2_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_revision_set" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_revision_set" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
{
- arg2 = &rev2;
- if (ST(1) == NULL || ST(1) == &PL_sv_undef || !SvOK(ST(1))) {
- rev2.kind = svn_opt_revision_unspecified;
- }
- else if (sv_isobject(ST(1)) && sv_derived_from(ST(1), "_p_svn_opt_revision_t")) {
- SWIG_ConvertPtr(ST(1), (void **)&arg2, SWIGTYPE_p_svn_opt_revision_t, 0);
- }
- else if (looks_like_number(ST(1))) {
- rev2.kind = svn_opt_revision_number;
- rev2.value.number = SvIV(ST(1));
- }
- else if (SvPOK(ST(1))) {
- char *input = SvPV_nolen(ST(1));
- if (svn_cstring_casecmp(input, "BASE") == 0)
- rev2.kind = svn_opt_revision_base;
- else if (svn_cstring_casecmp(input, "HEAD") == 0)
- rev2.kind = svn_opt_revision_head;
- else if (svn_cstring_casecmp(input, "WORKING") == 0)
- rev2.kind = svn_opt_revision_working;
- else if (svn_cstring_casecmp(input, "COMMITTED") == 0)
- rev2.kind = svn_opt_revision_committed;
- else if (svn_cstring_casecmp(input, "PREV") == 0)
- rev2.kind = svn_opt_revision_previous;
- else if (*input == '{') {
- svn_boolean_t matched;
- apr_time_t tm;
- svn_error_t *err;
-
- char *end = strchr(input,'}');
- if (!end)
- SWIG_croak("unknown opt_revision_t type");
- *end = '\0';
- err = svn_parse_date (&matched, &tm, input + 1, apr_time_now(),
- svn_swig_pl_make_pool ((SV *)NULL));
- if (err) {
- svn_error_clear (err);
- SWIG_croak("unknown opt_revision_t type");
- }
- if (!matched)
- SWIG_croak("unknown opt_revision_t type");
-
- rev2.kind = svn_opt_revision_date;
- rev2.value.date = tm;
- } else
- SWIG_croak("unknown opt_revision_t type");
- } else
- SWIG_croak("unknown opt_revision_t type");
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
}
if (arg1) (arg1)->revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -4563,7 +4544,7 @@ XS(_wrap_svn_wc_external_item2_t_revision_set) {
XS(_wrap_svn_wc_external_item2_t_revision_get) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4575,9 +4556,9 @@ XS(_wrap_svn_wc_external_item2_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_revision_get" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_revision_get" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
result = (svn_opt_revision_t *)& ((arg1)->revision);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_opt_revision_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -4591,7 +4572,7 @@ XS(_wrap_svn_wc_external_item2_t_revision_get) {
XS(_wrap_svn_wc_external_item2_t_peg_revision_set) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4604,57 +4585,11 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_peg_revision_set" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_peg_revision_set" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
{
- arg2 = &rev2;
- if (ST(1) == NULL || ST(1) == &PL_sv_undef || !SvOK(ST(1))) {
- rev2.kind = svn_opt_revision_unspecified;
- }
- else if (sv_isobject(ST(1)) && sv_derived_from(ST(1), "_p_svn_opt_revision_t")) {
- SWIG_ConvertPtr(ST(1), (void **)&arg2, SWIGTYPE_p_svn_opt_revision_t, 0);
- }
- else if (looks_like_number(ST(1))) {
- rev2.kind = svn_opt_revision_number;
- rev2.value.number = SvIV(ST(1));
- }
- else if (SvPOK(ST(1))) {
- char *input = SvPV_nolen(ST(1));
- if (svn_cstring_casecmp(input, "BASE") == 0)
- rev2.kind = svn_opt_revision_base;
- else if (svn_cstring_casecmp(input, "HEAD") == 0)
- rev2.kind = svn_opt_revision_head;
- else if (svn_cstring_casecmp(input, "WORKING") == 0)
- rev2.kind = svn_opt_revision_working;
- else if (svn_cstring_casecmp(input, "COMMITTED") == 0)
- rev2.kind = svn_opt_revision_committed;
- else if (svn_cstring_casecmp(input, "PREV") == 0)
- rev2.kind = svn_opt_revision_previous;
- else if (*input == '{') {
- svn_boolean_t matched;
- apr_time_t tm;
- svn_error_t *err;
-
- char *end = strchr(input,'}');
- if (!end)
- SWIG_croak("unknown opt_revision_t type");
- *end = '\0';
- err = svn_parse_date (&matched, &tm, input + 1, apr_time_now(),
- svn_swig_pl_make_pool ((SV *)NULL));
- if (err) {
- svn_error_clear (err);
- SWIG_croak("unknown opt_revision_t type");
- }
- if (!matched)
- SWIG_croak("unknown opt_revision_t type");
-
- rev2.kind = svn_opt_revision_date;
- rev2.value.date = tm;
- } else
- SWIG_croak("unknown opt_revision_t type");
- } else
- SWIG_croak("unknown opt_revision_t type");
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
}
if (arg1) (arg1)->peg_revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -4671,7 +4606,7 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_set) {
XS(_wrap_svn_wc_external_item2_t_peg_revision_get) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4683,9 +4618,9 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_peg_revision_get" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item2_t_peg_revision_get" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
result = (svn_opt_revision_t *)& ((arg1)->peg_revision);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_opt_revision_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -4700,14 +4635,14 @@ XS(_wrap_svn_wc_external_item2_t_peg_revision_get) {
XS(_wrap_new_svn_wc_external_item2_t) {
{
int argvi = 0;
- svn_wc_external_item2_t *result = 0 ;
+ struct svn_wc_external_item2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_external_item2_t();");
}
{
- result = (svn_wc_external_item2_t *)calloc(1, sizeof(svn_wc_external_item2_t));
+ result = (struct svn_wc_external_item2_t *)calloc(1, sizeof(struct svn_wc_external_item2_t));
@@ -4722,7 +4657,7 @@ XS(_wrap_new_svn_wc_external_item2_t) {
XS(_wrap_delete_svn_wc_external_item2_t) {
{
- svn_wc_external_item2_t *arg1 = (svn_wc_external_item2_t *) 0 ;
+ struct svn_wc_external_item2_t *arg1 = (struct svn_wc_external_item2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4733,9 +4668,9 @@ XS(_wrap_delete_svn_wc_external_item2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_external_item2_t" "', argument " "1"" of type '" "svn_wc_external_item2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_external_item2_t" "', argument " "1"" of type '" "struct svn_wc_external_item2_t *""'");
}
- arg1 = (svn_wc_external_item2_t *)(argp1);
+ arg1 = (struct svn_wc_external_item2_t *)(argp1);
{
free((char *) arg1);
@@ -4752,6 +4687,62 @@ XS(_wrap_delete_svn_wc_external_item2_t) {
}
+XS(_wrap_svn_wc_external_item2_create) {
+ {
+ svn_wc_external_item2_t **arg1 = (svn_wc_external_item2_t **) 0 ;
+ apr_pool_t *arg2 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_wc_external_item2_t *temp1 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg2 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 0) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_external_item2_create(pool);");
+ }
+ if (items > 0) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_external_item2_create(arg1,arg2);
+
+
+
+ }
+ {
+ 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(*arg1, SWIGTYPE_p_svn_wc_external_item2_t, 0); argvi++ ;
+ }
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_external_item_create) {
{
svn_wc_external_item2_t **arg1 = (svn_wc_external_item2_t **) 0 ;
@@ -4853,7 +4844,7 @@ XS(_wrap_svn_wc_external_item2_dup) {
XS(_wrap_svn_wc_external_item_t_target_dir_set) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4868,9 +4859,9 @@ XS(_wrap_svn_wc_external_item_t_target_dir_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_target_dir_set" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_target_dir_set" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_external_item_t_target_dir_set" "', argument " "2"" of type '" "char const *""'");
@@ -4898,7 +4889,7 @@ XS(_wrap_svn_wc_external_item_t_target_dir_set) {
XS(_wrap_svn_wc_external_item_t_target_dir_get) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4910,9 +4901,9 @@ XS(_wrap_svn_wc_external_item_t_target_dir_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_target_dir_get" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_target_dir_get" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
result = (char *) ((arg1)->target_dir);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -4926,7 +4917,7 @@ XS(_wrap_svn_wc_external_item_t_target_dir_get) {
XS(_wrap_svn_wc_external_item_t_url_set) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -4941,9 +4932,9 @@ XS(_wrap_svn_wc_external_item_t_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_url_set" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_url_set" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_external_item_t_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -4971,7 +4962,7 @@ XS(_wrap_svn_wc_external_item_t_url_set) {
XS(_wrap_svn_wc_external_item_t_url_get) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -4983,9 +4974,9 @@ XS(_wrap_svn_wc_external_item_t_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_url_get" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_url_get" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
result = (char *) ((arg1)->url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -4999,7 +4990,7 @@ XS(_wrap_svn_wc_external_item_t_url_get) {
XS(_wrap_svn_wc_external_item_t_revision_set) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5012,57 +5003,11 @@ XS(_wrap_svn_wc_external_item_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_revision_set" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_revision_set" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
{
- arg2 = &rev2;
- if (ST(1) == NULL || ST(1) == &PL_sv_undef || !SvOK(ST(1))) {
- rev2.kind = svn_opt_revision_unspecified;
- }
- else if (sv_isobject(ST(1)) && sv_derived_from(ST(1), "_p_svn_opt_revision_t")) {
- SWIG_ConvertPtr(ST(1), (void **)&arg2, SWIGTYPE_p_svn_opt_revision_t, 0);
- }
- else if (looks_like_number(ST(1))) {
- rev2.kind = svn_opt_revision_number;
- rev2.value.number = SvIV(ST(1));
- }
- else if (SvPOK(ST(1))) {
- char *input = SvPV_nolen(ST(1));
- if (svn_cstring_casecmp(input, "BASE") == 0)
- rev2.kind = svn_opt_revision_base;
- else if (svn_cstring_casecmp(input, "HEAD") == 0)
- rev2.kind = svn_opt_revision_head;
- else if (svn_cstring_casecmp(input, "WORKING") == 0)
- rev2.kind = svn_opt_revision_working;
- else if (svn_cstring_casecmp(input, "COMMITTED") == 0)
- rev2.kind = svn_opt_revision_committed;
- else if (svn_cstring_casecmp(input, "PREV") == 0)
- rev2.kind = svn_opt_revision_previous;
- else if (*input == '{') {
- svn_boolean_t matched;
- apr_time_t tm;
- svn_error_t *err;
-
- char *end = strchr(input,'}');
- if (!end)
- SWIG_croak("unknown opt_revision_t type");
- *end = '\0';
- err = svn_parse_date (&matched, &tm, input + 1, apr_time_now(),
- svn_swig_pl_make_pool ((SV *)NULL));
- if (err) {
- svn_error_clear (err);
- SWIG_croak("unknown opt_revision_t type");
- }
- if (!matched)
- SWIG_croak("unknown opt_revision_t type");
-
- rev2.kind = svn_opt_revision_date;
- rev2.value.date = tm;
- } else
- SWIG_croak("unknown opt_revision_t type");
- } else
- SWIG_croak("unknown opt_revision_t type");
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
}
if (arg1) (arg1)->revision = *arg2;
ST(argvi) = sv_newmortal();
@@ -5079,7 +5024,7 @@ XS(_wrap_svn_wc_external_item_t_revision_set) {
XS(_wrap_svn_wc_external_item_t_revision_get) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5091,9 +5036,9 @@ XS(_wrap_svn_wc_external_item_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_revision_get" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_external_item_t_revision_get" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
result = (svn_opt_revision_t *)& ((arg1)->revision);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_opt_revision_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -5108,14 +5053,14 @@ XS(_wrap_svn_wc_external_item_t_revision_get) {
XS(_wrap_new_svn_wc_external_item_t) {
{
int argvi = 0;
- svn_wc_external_item_t *result = 0 ;
+ struct svn_wc_external_item_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_external_item_t();");
}
{
- result = (svn_wc_external_item_t *)calloc(1, sizeof(svn_wc_external_item_t));
+ result = (struct svn_wc_external_item_t *)calloc(1, sizeof(struct svn_wc_external_item_t));
@@ -5130,7 +5075,7 @@ XS(_wrap_new_svn_wc_external_item_t) {
XS(_wrap_delete_svn_wc_external_item_t) {
{
- svn_wc_external_item_t *arg1 = (svn_wc_external_item_t *) 0 ;
+ struct svn_wc_external_item_t *arg1 = (struct svn_wc_external_item_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5141,9 +5086,9 @@ XS(_wrap_delete_svn_wc_external_item_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_external_item_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_external_item_t" "', argument " "1"" of type '" "svn_wc_external_item_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_external_item_t" "', argument " "1"" of type '" "struct svn_wc_external_item_t *""'");
}
- arg1 = (svn_wc_external_item_t *)(argp1);
+ arg1 = (struct svn_wc_external_item_t *)(argp1);
{
free((char *) arg1);
@@ -5272,13 +5217,8 @@ XS(_wrap_svn_wc_parse_externals_description3) {
}
}
{
- /* FIXME: Missing argout typemap: svn_wc_parse_externals_description3 arg 1 (apr_array_header_t **) */
-
-
-
-
- SWIG_exception(SWIG_ValueError, "svn_wc_parse_externals_description3 is not implemented yet");
-
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_convert_array(*arg1, SWIGTYPE_p_svn_wc_external_item2_t); argvi++
+ ;
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -5358,13 +5298,8 @@ XS(_wrap_svn_wc_parse_externals_description2) {
}
}
{
- /* FIXME: Missing argout typemap: svn_wc_parse_externals_description2 arg 1 (apr_array_header_t **) */
-
-
-
-
- SWIG_exception(SWIG_ValueError, "svn_wc_parse_externals_description2 is not implemented yet");
-
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = svn_swig_pl_convert_array(*arg1, SWIGTYPE_p_svn_wc_external_item2_t); argvi++
+ ;
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
@@ -5461,7 +5396,7 @@ XS(_wrap_svn_wc_parse_externals_description) {
XS(_wrap_svn_wc_notify_t_path_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5476,9 +5411,9 @@ XS(_wrap_svn_wc_notify_t_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_path_set" "', argument " "2"" of type '" "char const *""'");
@@ -5506,7 +5441,7 @@ XS(_wrap_svn_wc_notify_t_path_set) {
XS(_wrap_svn_wc_notify_t_path_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5518,9 +5453,9 @@ XS(_wrap_svn_wc_notify_t_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->path);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -5534,7 +5469,7 @@ XS(_wrap_svn_wc_notify_t_path_get) {
XS(_wrap_svn_wc_notify_t_action_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_wc_notify_action_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5548,9 +5483,9 @@ XS(_wrap_svn_wc_notify_t_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_action_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_action_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_action_set" "', argument " "2"" of type '" "svn_wc_notify_action_t""'");
@@ -5571,7 +5506,7 @@ XS(_wrap_svn_wc_notify_t_action_set) {
XS(_wrap_svn_wc_notify_t_action_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5583,9 +5518,9 @@ XS(_wrap_svn_wc_notify_t_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_action_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_action_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_wc_notify_action_t) ((arg1)->action);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -5599,7 +5534,7 @@ XS(_wrap_svn_wc_notify_t_action_get) {
XS(_wrap_svn_wc_notify_t_kind_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5613,9 +5548,9 @@ XS(_wrap_svn_wc_notify_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_kind_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -5636,7 +5571,7 @@ XS(_wrap_svn_wc_notify_t_kind_set) {
XS(_wrap_svn_wc_notify_t_kind_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5648,9 +5583,9 @@ XS(_wrap_svn_wc_notify_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_kind_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -5664,7 +5599,7 @@ XS(_wrap_svn_wc_notify_t_kind_get) {
XS(_wrap_svn_wc_notify_t_mime_type_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5679,9 +5614,9 @@ XS(_wrap_svn_wc_notify_t_mime_type_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_mime_type_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_mime_type_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_mime_type_set" "', argument " "2"" of type '" "char const *""'");
@@ -5709,7 +5644,7 @@ XS(_wrap_svn_wc_notify_t_mime_type_set) {
XS(_wrap_svn_wc_notify_t_mime_type_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5721,9 +5656,9 @@ XS(_wrap_svn_wc_notify_t_mime_type_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_mime_type_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_mime_type_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->mime_type);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -5737,7 +5672,7 @@ XS(_wrap_svn_wc_notify_t_mime_type_get) {
XS(_wrap_svn_wc_notify_t_lock_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_lock_t *arg2 = (svn_lock_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5751,9 +5686,9 @@ XS(_wrap_svn_wc_notify_t_lock_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_lock_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_lock_set" "', argument " "2"" of type '" "svn_lock_t const *""'");
@@ -5774,7 +5709,7 @@ XS(_wrap_svn_wc_notify_t_lock_set) {
XS(_wrap_svn_wc_notify_t_lock_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5786,9 +5721,9 @@ XS(_wrap_svn_wc_notify_t_lock_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_lock_t *) ((arg1)->lock);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_lock_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -5802,7 +5737,7 @@ XS(_wrap_svn_wc_notify_t_lock_get) {
XS(_wrap_svn_wc_notify_t_err_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_error_t *arg2 = (svn_error_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5816,9 +5751,9 @@ XS(_wrap_svn_wc_notify_t_err_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_err_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_err_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_error_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_err_set" "', argument " "2"" of type '" "svn_error_t *""'");
@@ -5839,7 +5774,7 @@ XS(_wrap_svn_wc_notify_t_err_set) {
XS(_wrap_svn_wc_notify_t_err_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5851,9 +5786,9 @@ XS(_wrap_svn_wc_notify_t_err_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_err_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_err_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_error_t *) ((arg1)->err);
{
if (result) {
@@ -5882,7 +5817,7 @@ XS(_wrap_svn_wc_notify_t_err_get) {
XS(_wrap_svn_wc_notify_t_content_state_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_wc_notify_state_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5896,9 +5831,9 @@ XS(_wrap_svn_wc_notify_t_content_state_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_content_state_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_content_state_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_content_state_set" "', argument " "2"" of type '" "svn_wc_notify_state_t""'");
@@ -5919,7 +5854,7 @@ XS(_wrap_svn_wc_notify_t_content_state_set) {
XS(_wrap_svn_wc_notify_t_content_state_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5931,9 +5866,9 @@ XS(_wrap_svn_wc_notify_t_content_state_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_content_state_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_content_state_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_wc_notify_state_t) ((arg1)->content_state);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -5947,7 +5882,7 @@ XS(_wrap_svn_wc_notify_t_content_state_get) {
XS(_wrap_svn_wc_notify_t_prop_state_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_wc_notify_state_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -5961,9 +5896,9 @@ XS(_wrap_svn_wc_notify_t_prop_state_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_state_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_state_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_prop_state_set" "', argument " "2"" of type '" "svn_wc_notify_state_t""'");
@@ -5984,7 +5919,7 @@ XS(_wrap_svn_wc_notify_t_prop_state_set) {
XS(_wrap_svn_wc_notify_t_prop_state_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -5996,9 +5931,9 @@ XS(_wrap_svn_wc_notify_t_prop_state_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_state_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_state_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_wc_notify_state_t) ((arg1)->prop_state);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -6012,7 +5947,7 @@ XS(_wrap_svn_wc_notify_t_prop_state_get) {
XS(_wrap_svn_wc_notify_t_lock_state_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_wc_notify_lock_state_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6026,9 +5961,9 @@ XS(_wrap_svn_wc_notify_t_lock_state_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_state_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_state_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_lock_state_set" "', argument " "2"" of type '" "svn_wc_notify_lock_state_t""'");
@@ -6049,7 +5984,7 @@ XS(_wrap_svn_wc_notify_t_lock_state_set) {
XS(_wrap_svn_wc_notify_t_lock_state_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6061,9 +5996,9 @@ XS(_wrap_svn_wc_notify_t_lock_state_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_state_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_lock_state_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_wc_notify_lock_state_t) ((arg1)->lock_state);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -6077,7 +6012,7 @@ XS(_wrap_svn_wc_notify_t_lock_state_get) {
XS(_wrap_svn_wc_notify_t_revision_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6091,9 +6026,9 @@ XS(_wrap_svn_wc_notify_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_revision_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_revision_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -6114,7 +6049,7 @@ XS(_wrap_svn_wc_notify_t_revision_set) {
XS(_wrap_svn_wc_notify_t_revision_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6126,9 +6061,9 @@ XS(_wrap_svn_wc_notify_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_revision_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_revision_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_revnum_t) ((arg1)->revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -6142,7 +6077,7 @@ XS(_wrap_svn_wc_notify_t_revision_get) {
XS(_wrap_svn_wc_notify_t_changelist_name_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6157,9 +6092,9 @@ XS(_wrap_svn_wc_notify_t_changelist_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_changelist_name_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_changelist_name_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_changelist_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -6187,7 +6122,7 @@ XS(_wrap_svn_wc_notify_t_changelist_name_set) {
XS(_wrap_svn_wc_notify_t_changelist_name_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6199,9 +6134,9 @@ XS(_wrap_svn_wc_notify_t_changelist_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_changelist_name_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_changelist_name_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->changelist_name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -6215,7 +6150,7 @@ XS(_wrap_svn_wc_notify_t_changelist_name_get) {
XS(_wrap_svn_wc_notify_t_merge_range_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_merge_range_t *arg2 = (svn_merge_range_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6229,9 +6164,9 @@ XS(_wrap_svn_wc_notify_t_merge_range_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_merge_range_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_merge_range_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_merge_range_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_merge_range_set" "', argument " "2"" of type '" "svn_merge_range_t *""'");
@@ -6252,7 +6187,7 @@ XS(_wrap_svn_wc_notify_t_merge_range_set) {
XS(_wrap_svn_wc_notify_t_merge_range_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6264,9 +6199,9 @@ XS(_wrap_svn_wc_notify_t_merge_range_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_merge_range_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_merge_range_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_merge_range_t *) ((arg1)->merge_range);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_merge_range_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -6280,7 +6215,7 @@ XS(_wrap_svn_wc_notify_t_merge_range_get) {
XS(_wrap_svn_wc_notify_t_url_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6295,9 +6230,9 @@ XS(_wrap_svn_wc_notify_t_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_url_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_url_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -6325,7 +6260,7 @@ XS(_wrap_svn_wc_notify_t_url_set) {
XS(_wrap_svn_wc_notify_t_url_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6337,9 +6272,9 @@ XS(_wrap_svn_wc_notify_t_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_url_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_url_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -6353,7 +6288,7 @@ XS(_wrap_svn_wc_notify_t_url_get) {
XS(_wrap_svn_wc_notify_t_path_prefix_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6368,9 +6303,9 @@ XS(_wrap_svn_wc_notify_t_path_prefix_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_prefix_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_prefix_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_path_prefix_set" "', argument " "2"" of type '" "char const *""'");
@@ -6398,7 +6333,7 @@ XS(_wrap_svn_wc_notify_t_path_prefix_set) {
XS(_wrap_svn_wc_notify_t_path_prefix_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6410,9 +6345,9 @@ XS(_wrap_svn_wc_notify_t_path_prefix_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_prefix_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_path_prefix_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->path_prefix);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -6426,7 +6361,7 @@ XS(_wrap_svn_wc_notify_t_path_prefix_get) {
XS(_wrap_svn_wc_notify_t_prop_name_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6441,9 +6376,9 @@ XS(_wrap_svn_wc_notify_t_prop_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_name_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_name_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_prop_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -6471,7 +6406,7 @@ XS(_wrap_svn_wc_notify_t_prop_name_set) {
XS(_wrap_svn_wc_notify_t_prop_name_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6483,9 +6418,9 @@ XS(_wrap_svn_wc_notify_t_prop_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_name_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_prop_name_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (char *) ((arg1)->prop_name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -6499,7 +6434,7 @@ XS(_wrap_svn_wc_notify_t_prop_name_get) {
XS(_wrap_svn_wc_notify_t_rev_props_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
apr_hash_t *arg2 = (apr_hash_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6513,9 +6448,9 @@ XS(_wrap_svn_wc_notify_t_rev_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_rev_props_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_rev_props_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_apr_hash_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_notify_t_rev_props_set" "', argument " "2"" of type '" "apr_hash_t *""'");
@@ -6536,7 +6471,7 @@ XS(_wrap_svn_wc_notify_t_rev_props_set) {
XS(_wrap_svn_wc_notify_t_rev_props_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6548,9 +6483,9 @@ XS(_wrap_svn_wc_notify_t_rev_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_rev_props_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_rev_props_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (apr_hash_t *) ((arg1)->rev_props);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_apr_hash_t, 0 | 0); argvi++ ;
@@ -6564,7 +6499,7 @@ XS(_wrap_svn_wc_notify_t_rev_props_get) {
XS(_wrap_svn_wc_notify_t_old_revision_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6578,9 +6513,9 @@ XS(_wrap_svn_wc_notify_t_old_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_old_revision_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_old_revision_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_old_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -6601,7 +6536,7 @@ XS(_wrap_svn_wc_notify_t_old_revision_set) {
XS(_wrap_svn_wc_notify_t_old_revision_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6613,9 +6548,9 @@ XS(_wrap_svn_wc_notify_t_old_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_old_revision_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_old_revision_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_revnum_t) ((arg1)->old_revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -6629,7 +6564,7 @@ XS(_wrap_svn_wc_notify_t_old_revision_get) {
XS(_wrap_svn_wc_notify_t_hunk_original_start_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6643,9 +6578,9 @@ XS(_wrap_svn_wc_notify_t_hunk_original_start_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_start_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_start_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_original_start_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6666,7 +6601,7 @@ XS(_wrap_svn_wc_notify_t_hunk_original_start_set) {
XS(_wrap_svn_wc_notify_t_hunk_original_start_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6678,9 +6613,9 @@ XS(_wrap_svn_wc_notify_t_hunk_original_start_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_start_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_start_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_original_start);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -6694,7 +6629,7 @@ XS(_wrap_svn_wc_notify_t_hunk_original_start_get) {
XS(_wrap_svn_wc_notify_t_hunk_original_length_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6708,9 +6643,9 @@ XS(_wrap_svn_wc_notify_t_hunk_original_length_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_length_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_length_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_original_length_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6731,7 +6666,7 @@ XS(_wrap_svn_wc_notify_t_hunk_original_length_set) {
XS(_wrap_svn_wc_notify_t_hunk_original_length_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6743,9 +6678,9 @@ XS(_wrap_svn_wc_notify_t_hunk_original_length_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_length_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_original_length_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_original_length);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -6759,7 +6694,7 @@ XS(_wrap_svn_wc_notify_t_hunk_original_length_get) {
XS(_wrap_svn_wc_notify_t_hunk_modified_start_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6773,9 +6708,9 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_start_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_start_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_start_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_modified_start_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6796,7 +6731,7 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_start_set) {
XS(_wrap_svn_wc_notify_t_hunk_modified_start_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6808,9 +6743,9 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_start_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_start_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_start_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_modified_start);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -6824,7 +6759,7 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_start_get) {
XS(_wrap_svn_wc_notify_t_hunk_modified_length_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6838,9 +6773,9 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_length_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_length_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_length_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_modified_length_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6861,7 +6796,7 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_length_set) {
XS(_wrap_svn_wc_notify_t_hunk_modified_length_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6873,9 +6808,9 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_length_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_length_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_modified_length_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_modified_length);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -6889,7 +6824,7 @@ XS(_wrap_svn_wc_notify_t_hunk_modified_length_get) {
XS(_wrap_svn_wc_notify_t_hunk_matched_line_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6903,9 +6838,9 @@ XS(_wrap_svn_wc_notify_t_hunk_matched_line_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_matched_line_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_matched_line_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_matched_line_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6926,7 +6861,7 @@ XS(_wrap_svn_wc_notify_t_hunk_matched_line_set) {
XS(_wrap_svn_wc_notify_t_hunk_matched_line_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -6938,9 +6873,9 @@ XS(_wrap_svn_wc_notify_t_hunk_matched_line_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_matched_line_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_matched_line_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_matched_line);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -6954,7 +6889,7 @@ XS(_wrap_svn_wc_notify_t_hunk_matched_line_get) {
XS(_wrap_svn_wc_notify_t_hunk_fuzz_set) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
svn_linenum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -6968,9 +6903,9 @@ XS(_wrap_svn_wc_notify_t_hunk_fuzz_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_fuzz_set" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_fuzz_set" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_notify_t_hunk_fuzz_set" "', argument " "2"" of type '" "svn_linenum_t""'");
@@ -6991,7 +6926,7 @@ XS(_wrap_svn_wc_notify_t_hunk_fuzz_set) {
XS(_wrap_svn_wc_notify_t_hunk_fuzz_get) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7003,9 +6938,9 @@ XS(_wrap_svn_wc_notify_t_hunk_fuzz_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_fuzz_get" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_notify_t_hunk_fuzz_get" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
result = (svn_linenum_t) ((arg1)->hunk_fuzz);
ST(argvi) = SWIG_From_unsigned_SS_long SWIG_PERL_CALL_ARGS_1((unsigned long)(result)); argvi++ ;
@@ -7020,14 +6955,14 @@ XS(_wrap_svn_wc_notify_t_hunk_fuzz_get) {
XS(_wrap_new_svn_wc_notify_t) {
{
int argvi = 0;
- svn_wc_notify_t *result = 0 ;
+ struct svn_wc_notify_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_notify_t();");
}
{
- result = (svn_wc_notify_t *)calloc(1, sizeof(svn_wc_notify_t));
+ result = (struct svn_wc_notify_t *)calloc(1, sizeof(struct svn_wc_notify_t));
@@ -7042,7 +6977,7 @@ XS(_wrap_new_svn_wc_notify_t) {
XS(_wrap_delete_svn_wc_notify_t) {
{
- svn_wc_notify_t *arg1 = (svn_wc_notify_t *) 0 ;
+ struct svn_wc_notify_t *arg1 = (struct svn_wc_notify_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7053,9 +6988,9 @@ XS(_wrap_delete_svn_wc_notify_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_notify_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_notify_t" "', argument " "1"" of type '" "svn_wc_notify_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_notify_t" "', argument " "1"" of type '" "struct svn_wc_notify_t *""'");
}
- arg1 = (svn_wc_notify_t *)(argp1);
+ arg1 = (struct svn_wc_notify_t *)(argp1);
{
free((char *) arg1);
@@ -7225,7 +7160,7 @@ XS(_wrap_svn_wc_dup_notify) {
XS(_wrap_svn_wc_conflict_version_t_repos_url_set) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7240,9 +7175,9 @@ XS(_wrap_svn_wc_conflict_version_t_repos_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_url_set" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_url_set" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_version_t_repos_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -7270,7 +7205,7 @@ XS(_wrap_svn_wc_conflict_version_t_repos_url_set) {
XS(_wrap_svn_wc_conflict_version_t_repos_url_get) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7282,9 +7217,9 @@ XS(_wrap_svn_wc_conflict_version_t_repos_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_url_get" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_url_get" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
result = (char *) ((arg1)->repos_url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -7298,7 +7233,7 @@ XS(_wrap_svn_wc_conflict_version_t_repos_url_get) {
XS(_wrap_svn_wc_conflict_version_t_peg_rev_set) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7312,9 +7247,9 @@ XS(_wrap_svn_wc_conflict_version_t_peg_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_peg_rev_set" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_peg_rev_set" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_version_t_peg_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -7335,7 +7270,7 @@ XS(_wrap_svn_wc_conflict_version_t_peg_rev_set) {
XS(_wrap_svn_wc_conflict_version_t_peg_rev_get) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7347,9 +7282,9 @@ XS(_wrap_svn_wc_conflict_version_t_peg_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_peg_rev_get" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_peg_rev_get" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
result = (svn_revnum_t) ((arg1)->peg_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -7363,7 +7298,7 @@ XS(_wrap_svn_wc_conflict_version_t_peg_rev_get) {
XS(_wrap_svn_wc_conflict_version_t_path_in_repos_set) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7378,9 +7313,9 @@ XS(_wrap_svn_wc_conflict_version_t_path_in_repos_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_path_in_repos_set" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_path_in_repos_set" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_version_t_path_in_repos_set" "', argument " "2"" of type '" "char const *""'");
@@ -7408,7 +7343,7 @@ XS(_wrap_svn_wc_conflict_version_t_path_in_repos_set) {
XS(_wrap_svn_wc_conflict_version_t_path_in_repos_get) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7420,9 +7355,9 @@ XS(_wrap_svn_wc_conflict_version_t_path_in_repos_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_path_in_repos_get" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_path_in_repos_get" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
result = (char *) ((arg1)->path_in_repos);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -7436,7 +7371,7 @@ XS(_wrap_svn_wc_conflict_version_t_path_in_repos_get) {
XS(_wrap_svn_wc_conflict_version_t_node_kind_set) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7450,9 +7385,9 @@ XS(_wrap_svn_wc_conflict_version_t_node_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_node_kind_set" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_node_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_version_t_node_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -7473,7 +7408,7 @@ XS(_wrap_svn_wc_conflict_version_t_node_kind_set) {
XS(_wrap_svn_wc_conflict_version_t_node_kind_get) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7485,9 +7420,9 @@ XS(_wrap_svn_wc_conflict_version_t_node_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_node_kind_get" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_node_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->node_kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -7499,17 +7434,90 @@ XS(_wrap_svn_wc_conflict_version_t_node_kind_get) {
}
+XS(_wrap_svn_wc_conflict_version_t_repos_uuid_set) {
+ {
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_conflict_version_t_repos_uuid_set(self,repos_uuid);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_uuid_set" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
+ }
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_version_t_repos_uuid_set" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ apr_size_t len = strlen(arg2) + 1;
+ char *copied;
+ if (arg1->repos_uuid) free((char *)arg1->repos_uuid);
+ copied = malloc(len);
+ memcpy(copied, arg2, len);
+ arg1->repos_uuid = copied;
+ }
+ ST(argvi) = sv_newmortal();
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_conflict_version_t_repos_uuid_get) {
+ {
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ char *result = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_conflict_version_t_repos_uuid_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_t_repos_uuid_get" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
+ }
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
+ result = (char *) ((arg1)->repos_uuid);
+ ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_new_svn_wc_conflict_version_t) {
{
int argvi = 0;
- svn_wc_conflict_version_t *result = 0 ;
+ struct svn_wc_conflict_version_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_conflict_version_t();");
}
{
- result = (svn_wc_conflict_version_t *)calloc(1, sizeof(svn_wc_conflict_version_t));
+ result = (struct svn_wc_conflict_version_t *)calloc(1, sizeof(struct svn_wc_conflict_version_t));
@@ -7524,7 +7532,7 @@ XS(_wrap_new_svn_wc_conflict_version_t) {
XS(_wrap_delete_svn_wc_conflict_version_t) {
{
- svn_wc_conflict_version_t *arg1 = (svn_wc_conflict_version_t *) 0 ;
+ struct svn_wc_conflict_version_t *arg1 = (struct svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7535,9 +7543,9 @@ XS(_wrap_delete_svn_wc_conflict_version_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_version_t" "', argument " "1"" of type '" "svn_wc_conflict_version_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_version_t" "', argument " "1"" of type '" "struct svn_wc_conflict_version_t *""'");
}
- arg1 = (svn_wc_conflict_version_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_version_t *)(argp1);
{
free((char *) arg1);
@@ -7554,6 +7562,92 @@ XS(_wrap_delete_svn_wc_conflict_version_t) {
}
+XS(_wrap_svn_wc_conflict_version_create2) {
+ {
+ char *arg1 = (char *) 0 ;
+ char *arg2 = (char *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_revnum_t arg4 ;
+ svn_node_kind_t arg5 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ int res1 ;
+ char *buf1 = 0 ;
+ int alloc1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ long val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int argvi = 0;
+ svn_wc_conflict_version_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_wc_conflict_version_create2(repos_root_url,repos_uuid,repos_relpath,revision,kind,result_pool);");
+ }
+ res1 = SWIG_AsCharPtrAndSize(ST(0), &buf1, NULL, &alloc1);
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_version_create2" "', argument " "1"" of type '" "char const *""'");
+ }
+ arg1 = (char *)(buf1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_version_create2" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ res3 = SWIG_AsCharPtrAndSize(ST(2), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_conflict_version_create2" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(3), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_conflict_version_create2" "', argument " "4"" of type '" "svn_revnum_t""'");
+ }
+ arg4 = (svn_revnum_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(4), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_wc_conflict_version_create2" "', argument " "5"" of type '" "svn_node_kind_t""'");
+ }
+ arg5 = (svn_node_kind_t)(val5);
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_wc_conflict_version_t *)svn_wc_conflict_version_create2((char const *)arg1,(char const *)arg2,(char const *)arg3,arg4,arg5,arg6);
+
+
+
+ }
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ XSRETURN(argvi);
+ fail:
+ if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_conflict_version_create) {
{
char *arg1 = (char *) 0 ;
@@ -7674,7 +7768,7 @@ XS(_wrap_svn_wc_conflict_version_dup) {
XS(_wrap_svn_wc_conflict_description2_t_local_abspath_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7689,9 +7783,9 @@ XS(_wrap_svn_wc_conflict_description2_t_local_abspath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_local_abspath_set" "', argument " "2"" of type '" "char const *""'");
@@ -7719,7 +7813,7 @@ XS(_wrap_svn_wc_conflict_description2_t_local_abspath_set) {
XS(_wrap_svn_wc_conflict_description2_t_local_abspath_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7731,9 +7825,9 @@ XS(_wrap_svn_wc_conflict_description2_t_local_abspath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_local_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->local_abspath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -7747,7 +7841,7 @@ XS(_wrap_svn_wc_conflict_description2_t_local_abspath_get) {
XS(_wrap_svn_wc_conflict_description2_t_node_kind_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7761,9 +7855,9 @@ XS(_wrap_svn_wc_conflict_description2_t_node_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_node_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -7784,7 +7878,7 @@ XS(_wrap_svn_wc_conflict_description2_t_node_kind_set) {
XS(_wrap_svn_wc_conflict_description2_t_node_kind_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7796,9 +7890,9 @@ XS(_wrap_svn_wc_conflict_description2_t_node_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_node_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->node_kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -7812,7 +7906,7 @@ XS(_wrap_svn_wc_conflict_description2_t_node_kind_get) {
XS(_wrap_svn_wc_conflict_description2_t_kind_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_conflict_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7826,9 +7920,9 @@ XS(_wrap_svn_wc_conflict_description2_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_kind_set" "', argument " "2"" of type '" "svn_wc_conflict_kind_t""'");
@@ -7849,7 +7943,7 @@ XS(_wrap_svn_wc_conflict_description2_t_kind_set) {
XS(_wrap_svn_wc_conflict_description2_t_kind_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7861,9 +7955,9 @@ XS(_wrap_svn_wc_conflict_description2_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_conflict_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -7877,7 +7971,7 @@ XS(_wrap_svn_wc_conflict_description2_t_kind_get) {
XS(_wrap_svn_wc_conflict_description2_t_property_name_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7892,9 +7986,9 @@ XS(_wrap_svn_wc_conflict_description2_t_property_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_property_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -7922,7 +8016,7 @@ XS(_wrap_svn_wc_conflict_description2_t_property_name_set) {
XS(_wrap_svn_wc_conflict_description2_t_property_name_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7934,9 +8028,9 @@ XS(_wrap_svn_wc_conflict_description2_t_property_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_property_name_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->property_name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -7950,7 +8044,7 @@ XS(_wrap_svn_wc_conflict_description2_t_property_name_get) {
XS(_wrap_svn_wc_conflict_description2_t_is_binary_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -7964,9 +8058,9 @@ XS(_wrap_svn_wc_conflict_description2_t_is_binary_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_is_binary_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -7987,7 +8081,7 @@ XS(_wrap_svn_wc_conflict_description2_t_is_binary_set) {
XS(_wrap_svn_wc_conflict_description2_t_is_binary_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -7999,9 +8093,9 @@ XS(_wrap_svn_wc_conflict_description2_t_is_binary_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_is_binary_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_boolean_t) ((arg1)->is_binary);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8015,7 +8109,7 @@ XS(_wrap_svn_wc_conflict_description2_t_is_binary_get) {
XS(_wrap_svn_wc_conflict_description2_t_mime_type_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8030,9 +8124,9 @@ XS(_wrap_svn_wc_conflict_description2_t_mime_type_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_mime_type_set" "', argument " "2"" of type '" "char const *""'");
@@ -8060,7 +8154,7 @@ XS(_wrap_svn_wc_conflict_description2_t_mime_type_set) {
XS(_wrap_svn_wc_conflict_description2_t_mime_type_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8072,9 +8166,9 @@ XS(_wrap_svn_wc_conflict_description2_t_mime_type_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_mime_type_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->mime_type);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8088,7 +8182,7 @@ XS(_wrap_svn_wc_conflict_description2_t_mime_type_get) {
XS(_wrap_svn_wc_conflict_description2_t_action_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_conflict_action_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8102,9 +8196,9 @@ XS(_wrap_svn_wc_conflict_description2_t_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_action_set" "', argument " "2"" of type '" "svn_wc_conflict_action_t""'");
@@ -8125,7 +8219,7 @@ XS(_wrap_svn_wc_conflict_description2_t_action_set) {
XS(_wrap_svn_wc_conflict_description2_t_action_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8137,9 +8231,9 @@ XS(_wrap_svn_wc_conflict_description2_t_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_action_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_conflict_action_t) ((arg1)->action);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8153,7 +8247,7 @@ XS(_wrap_svn_wc_conflict_description2_t_action_get) {
XS(_wrap_svn_wc_conflict_description2_t_reason_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_conflict_reason_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8167,9 +8261,9 @@ XS(_wrap_svn_wc_conflict_description2_t_reason_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_reason_set" "', argument " "2"" of type '" "svn_wc_conflict_reason_t""'");
@@ -8190,7 +8284,7 @@ XS(_wrap_svn_wc_conflict_description2_t_reason_set) {
XS(_wrap_svn_wc_conflict_description2_t_reason_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8202,9 +8296,9 @@ XS(_wrap_svn_wc_conflict_description2_t_reason_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_reason_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_conflict_reason_t) ((arg1)->reason);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8218,7 +8312,7 @@ XS(_wrap_svn_wc_conflict_description2_t_reason_get) {
XS(_wrap_svn_wc_conflict_description2_t_base_abspath_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8233,9 +8327,9 @@ XS(_wrap_svn_wc_conflict_description2_t_base_abspath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_base_abspath_set" "', argument " "2"" of type '" "char const *""'");
@@ -8263,7 +8357,7 @@ XS(_wrap_svn_wc_conflict_description2_t_base_abspath_set) {
XS(_wrap_svn_wc_conflict_description2_t_base_abspath_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8275,9 +8369,9 @@ XS(_wrap_svn_wc_conflict_description2_t_base_abspath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_base_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->base_abspath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8291,7 +8385,7 @@ XS(_wrap_svn_wc_conflict_description2_t_base_abspath_get) {
XS(_wrap_svn_wc_conflict_description2_t_their_abspath_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8306,9 +8400,9 @@ XS(_wrap_svn_wc_conflict_description2_t_their_abspath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_their_abspath_set" "', argument " "2"" of type '" "char const *""'");
@@ -8336,7 +8430,7 @@ XS(_wrap_svn_wc_conflict_description2_t_their_abspath_set) {
XS(_wrap_svn_wc_conflict_description2_t_their_abspath_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8348,9 +8442,9 @@ XS(_wrap_svn_wc_conflict_description2_t_their_abspath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_their_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->their_abspath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8364,7 +8458,7 @@ XS(_wrap_svn_wc_conflict_description2_t_their_abspath_get) {
XS(_wrap_svn_wc_conflict_description2_t_my_abspath_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8379,9 +8473,9 @@ XS(_wrap_svn_wc_conflict_description2_t_my_abspath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_my_abspath_set" "', argument " "2"" of type '" "char const *""'");
@@ -8409,7 +8503,7 @@ XS(_wrap_svn_wc_conflict_description2_t_my_abspath_set) {
XS(_wrap_svn_wc_conflict_description2_t_my_abspath_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8421,9 +8515,9 @@ XS(_wrap_svn_wc_conflict_description2_t_my_abspath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_my_abspath_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->my_abspath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8437,7 +8531,7 @@ XS(_wrap_svn_wc_conflict_description2_t_my_abspath_get) {
XS(_wrap_svn_wc_conflict_description2_t_merged_file_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8452,9 +8546,9 @@ XS(_wrap_svn_wc_conflict_description2_t_merged_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_merged_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -8482,7 +8576,7 @@ XS(_wrap_svn_wc_conflict_description2_t_merged_file_set) {
XS(_wrap_svn_wc_conflict_description2_t_merged_file_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8494,9 +8588,9 @@ XS(_wrap_svn_wc_conflict_description2_t_merged_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_merged_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (char *) ((arg1)->merged_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8510,7 +8604,7 @@ XS(_wrap_svn_wc_conflict_description2_t_merged_file_get) {
XS(_wrap_svn_wc_conflict_description2_t_operation_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_operation_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8524,9 +8618,9 @@ XS(_wrap_svn_wc_conflict_description2_t_operation_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description2_t_operation_set" "', argument " "2"" of type '" "svn_wc_operation_t""'");
@@ -8547,7 +8641,7 @@ XS(_wrap_svn_wc_conflict_description2_t_operation_set) {
XS(_wrap_svn_wc_conflict_description2_t_operation_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8559,9 +8653,9 @@ XS(_wrap_svn_wc_conflict_description2_t_operation_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_operation_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_operation_t) ((arg1)->operation);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8575,7 +8669,7 @@ XS(_wrap_svn_wc_conflict_description2_t_operation_get) {
XS(_wrap_svn_wc_conflict_description2_t_src_left_version_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8589,9 +8683,9 @@ XS(_wrap_svn_wc_conflict_description2_t_src_left_version_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_src_left_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t const *""'");
@@ -8612,7 +8706,7 @@ XS(_wrap_svn_wc_conflict_description2_t_src_left_version_set) {
XS(_wrap_svn_wc_conflict_description2_t_src_left_version_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8624,9 +8718,9 @@ XS(_wrap_svn_wc_conflict_description2_t_src_left_version_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_left_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_conflict_version_t *) ((arg1)->src_left_version);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -8640,7 +8734,7 @@ XS(_wrap_svn_wc_conflict_description2_t_src_left_version_get) {
XS(_wrap_svn_wc_conflict_description2_t_src_right_version_set) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8654,9 +8748,9 @@ XS(_wrap_svn_wc_conflict_description2_t_src_right_version_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_set" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description2_t_src_right_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t const *""'");
@@ -8677,7 +8771,7 @@ XS(_wrap_svn_wc_conflict_description2_t_src_right_version_set) {
XS(_wrap_svn_wc_conflict_description2_t_src_right_version_get) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8689,9 +8783,9 @@ XS(_wrap_svn_wc_conflict_description2_t_src_right_version_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_get" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description2_t_src_right_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
result = (svn_wc_conflict_version_t *) ((arg1)->src_right_version);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -8706,14 +8800,14 @@ XS(_wrap_svn_wc_conflict_description2_t_src_right_version_get) {
XS(_wrap_new_svn_wc_conflict_description2_t) {
{
int argvi = 0;
- svn_wc_conflict_description2_t *result = 0 ;
+ struct svn_wc_conflict_description2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_conflict_description2_t();");
}
{
- result = (svn_wc_conflict_description2_t *)calloc(1, sizeof(svn_wc_conflict_description2_t));
+ result = (struct svn_wc_conflict_description2_t *)calloc(1, sizeof(struct svn_wc_conflict_description2_t));
@@ -8728,7 +8822,7 @@ XS(_wrap_new_svn_wc_conflict_description2_t) {
XS(_wrap_delete_svn_wc_conflict_description2_t) {
{
- svn_wc_conflict_description2_t *arg1 = (svn_wc_conflict_description2_t *) 0 ;
+ struct svn_wc_conflict_description2_t *arg1 = (struct svn_wc_conflict_description2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8739,9 +8833,9 @@ XS(_wrap_delete_svn_wc_conflict_description2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_description2_t" "', argument " "1"" of type '" "svn_wc_conflict_description2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_description2_t" "', argument " "1"" of type '" "struct svn_wc_conflict_description2_t *""'");
}
- arg1 = (svn_wc_conflict_description2_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description2_t *)(argp1);
{
free((char *) arg1);
@@ -8760,7 +8854,7 @@ XS(_wrap_delete_svn_wc_conflict_description2_t) {
XS(_wrap_svn_wc_conflict_description_t_path_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8775,9 +8869,9 @@ XS(_wrap_svn_wc_conflict_description_t_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_path_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_path_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_path_set" "', argument " "2"" of type '" "char const *""'");
@@ -8805,7 +8899,7 @@ XS(_wrap_svn_wc_conflict_description_t_path_set) {
XS(_wrap_svn_wc_conflict_description_t_path_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8817,9 +8911,9 @@ XS(_wrap_svn_wc_conflict_description_t_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_path_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_path_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->path);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -8833,7 +8927,7 @@ XS(_wrap_svn_wc_conflict_description_t_path_get) {
XS(_wrap_svn_wc_conflict_description_t_node_kind_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8847,9 +8941,9 @@ XS(_wrap_svn_wc_conflict_description_t_node_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_node_kind_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_node_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_node_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -8870,7 +8964,7 @@ XS(_wrap_svn_wc_conflict_description_t_node_kind_set) {
XS(_wrap_svn_wc_conflict_description_t_node_kind_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8882,9 +8976,9 @@ XS(_wrap_svn_wc_conflict_description_t_node_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_node_kind_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_node_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->node_kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8898,7 +8992,7 @@ XS(_wrap_svn_wc_conflict_description_t_node_kind_get) {
XS(_wrap_svn_wc_conflict_description_t_kind_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_conflict_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8912,9 +9006,9 @@ XS(_wrap_svn_wc_conflict_description_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_kind_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_kind_set" "', argument " "2"" of type '" "svn_wc_conflict_kind_t""'");
@@ -8935,7 +9029,7 @@ XS(_wrap_svn_wc_conflict_description_t_kind_set) {
XS(_wrap_svn_wc_conflict_description_t_kind_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -8947,9 +9041,9 @@ XS(_wrap_svn_wc_conflict_description_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_kind_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_conflict_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -8963,7 +9057,7 @@ XS(_wrap_svn_wc_conflict_description_t_kind_get) {
XS(_wrap_svn_wc_conflict_description_t_property_name_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -8978,9 +9072,9 @@ XS(_wrap_svn_wc_conflict_description_t_property_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_property_name_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_property_name_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_property_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -9008,7 +9102,7 @@ XS(_wrap_svn_wc_conflict_description_t_property_name_set) {
XS(_wrap_svn_wc_conflict_description_t_property_name_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9020,9 +9114,9 @@ XS(_wrap_svn_wc_conflict_description_t_property_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_property_name_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_property_name_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->property_name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9036,7 +9130,7 @@ XS(_wrap_svn_wc_conflict_description_t_property_name_get) {
XS(_wrap_svn_wc_conflict_description_t_is_binary_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9050,9 +9144,9 @@ XS(_wrap_svn_wc_conflict_description_t_is_binary_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_is_binary_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_is_binary_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_is_binary_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -9073,7 +9167,7 @@ XS(_wrap_svn_wc_conflict_description_t_is_binary_set) {
XS(_wrap_svn_wc_conflict_description_t_is_binary_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9085,9 +9179,9 @@ XS(_wrap_svn_wc_conflict_description_t_is_binary_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_is_binary_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_is_binary_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_boolean_t) ((arg1)->is_binary);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -9101,7 +9195,7 @@ XS(_wrap_svn_wc_conflict_description_t_is_binary_get) {
XS(_wrap_svn_wc_conflict_description_t_mime_type_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9116,9 +9210,9 @@ XS(_wrap_svn_wc_conflict_description_t_mime_type_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_mime_type_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_mime_type_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_mime_type_set" "', argument " "2"" of type '" "char const *""'");
@@ -9146,7 +9240,7 @@ XS(_wrap_svn_wc_conflict_description_t_mime_type_set) {
XS(_wrap_svn_wc_conflict_description_t_mime_type_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9158,9 +9252,9 @@ XS(_wrap_svn_wc_conflict_description_t_mime_type_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_mime_type_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_mime_type_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->mime_type);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9174,7 +9268,7 @@ XS(_wrap_svn_wc_conflict_description_t_mime_type_get) {
XS(_wrap_svn_wc_conflict_description_t_access_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_adm_access_t *arg2 = (svn_wc_adm_access_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9188,9 +9282,9 @@ XS(_wrap_svn_wc_conflict_description_t_access_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_access_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_access_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_adm_access_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_access_set" "', argument " "2"" of type '" "svn_wc_adm_access_t *""'");
@@ -9211,7 +9305,7 @@ XS(_wrap_svn_wc_conflict_description_t_access_set) {
XS(_wrap_svn_wc_conflict_description_t_access_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9223,9 +9317,9 @@ XS(_wrap_svn_wc_conflict_description_t_access_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_access_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_access_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_adm_access_t *) ((arg1)->access);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0); argvi++ ;
@@ -9239,7 +9333,7 @@ XS(_wrap_svn_wc_conflict_description_t_access_get) {
XS(_wrap_svn_wc_conflict_description_t_action_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_conflict_action_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9253,9 +9347,9 @@ XS(_wrap_svn_wc_conflict_description_t_action_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_action_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_action_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_action_set" "', argument " "2"" of type '" "svn_wc_conflict_action_t""'");
@@ -9276,7 +9370,7 @@ XS(_wrap_svn_wc_conflict_description_t_action_set) {
XS(_wrap_svn_wc_conflict_description_t_action_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9288,9 +9382,9 @@ XS(_wrap_svn_wc_conflict_description_t_action_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_action_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_action_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_conflict_action_t) ((arg1)->action);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -9304,7 +9398,7 @@ XS(_wrap_svn_wc_conflict_description_t_action_get) {
XS(_wrap_svn_wc_conflict_description_t_reason_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_conflict_reason_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9318,9 +9412,9 @@ XS(_wrap_svn_wc_conflict_description_t_reason_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_reason_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_reason_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_reason_set" "', argument " "2"" of type '" "svn_wc_conflict_reason_t""'");
@@ -9341,7 +9435,7 @@ XS(_wrap_svn_wc_conflict_description_t_reason_set) {
XS(_wrap_svn_wc_conflict_description_t_reason_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9353,9 +9447,9 @@ XS(_wrap_svn_wc_conflict_description_t_reason_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_reason_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_reason_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_conflict_reason_t) ((arg1)->reason);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -9369,7 +9463,7 @@ XS(_wrap_svn_wc_conflict_description_t_reason_get) {
XS(_wrap_svn_wc_conflict_description_t_base_file_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9384,9 +9478,9 @@ XS(_wrap_svn_wc_conflict_description_t_base_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_base_file_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_base_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_base_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -9414,7 +9508,7 @@ XS(_wrap_svn_wc_conflict_description_t_base_file_set) {
XS(_wrap_svn_wc_conflict_description_t_base_file_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9426,9 +9520,9 @@ XS(_wrap_svn_wc_conflict_description_t_base_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_base_file_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_base_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->base_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9442,7 +9536,7 @@ XS(_wrap_svn_wc_conflict_description_t_base_file_get) {
XS(_wrap_svn_wc_conflict_description_t_their_file_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9457,9 +9551,9 @@ XS(_wrap_svn_wc_conflict_description_t_their_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_their_file_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_their_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_their_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -9487,7 +9581,7 @@ XS(_wrap_svn_wc_conflict_description_t_their_file_set) {
XS(_wrap_svn_wc_conflict_description_t_their_file_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9499,9 +9593,9 @@ XS(_wrap_svn_wc_conflict_description_t_their_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_their_file_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_their_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->their_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9515,7 +9609,7 @@ XS(_wrap_svn_wc_conflict_description_t_their_file_get) {
XS(_wrap_svn_wc_conflict_description_t_my_file_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9530,9 +9624,9 @@ XS(_wrap_svn_wc_conflict_description_t_my_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_my_file_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_my_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_my_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -9560,7 +9654,7 @@ XS(_wrap_svn_wc_conflict_description_t_my_file_set) {
XS(_wrap_svn_wc_conflict_description_t_my_file_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9572,9 +9666,9 @@ XS(_wrap_svn_wc_conflict_description_t_my_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_my_file_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_my_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->my_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9588,7 +9682,7 @@ XS(_wrap_svn_wc_conflict_description_t_my_file_get) {
XS(_wrap_svn_wc_conflict_description_t_merged_file_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9603,9 +9697,9 @@ XS(_wrap_svn_wc_conflict_description_t_merged_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_merged_file_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_merged_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_merged_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -9633,7 +9727,7 @@ XS(_wrap_svn_wc_conflict_description_t_merged_file_set) {
XS(_wrap_svn_wc_conflict_description_t_merged_file_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9645,9 +9739,9 @@ XS(_wrap_svn_wc_conflict_description_t_merged_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_merged_file_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_merged_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (char *) ((arg1)->merged_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -9661,7 +9755,7 @@ XS(_wrap_svn_wc_conflict_description_t_merged_file_get) {
XS(_wrap_svn_wc_conflict_description_t_operation_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_operation_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9675,9 +9769,9 @@ XS(_wrap_svn_wc_conflict_description_t_operation_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_operation_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_operation_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_description_t_operation_set" "', argument " "2"" of type '" "svn_wc_operation_t""'");
@@ -9698,7 +9792,7 @@ XS(_wrap_svn_wc_conflict_description_t_operation_set) {
XS(_wrap_svn_wc_conflict_description_t_operation_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9710,9 +9804,9 @@ XS(_wrap_svn_wc_conflict_description_t_operation_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_operation_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_operation_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_operation_t) ((arg1)->operation);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -9726,7 +9820,7 @@ XS(_wrap_svn_wc_conflict_description_t_operation_get) {
XS(_wrap_svn_wc_conflict_description_t_src_left_version_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9740,9 +9834,9 @@ XS(_wrap_svn_wc_conflict_description_t_src_left_version_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_left_version_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_left_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_src_left_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t *""'");
@@ -9763,7 +9857,7 @@ XS(_wrap_svn_wc_conflict_description_t_src_left_version_set) {
XS(_wrap_svn_wc_conflict_description_t_src_left_version_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9775,9 +9869,9 @@ XS(_wrap_svn_wc_conflict_description_t_src_left_version_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_left_version_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_left_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_conflict_version_t *) ((arg1)->src_left_version);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -9791,7 +9885,7 @@ XS(_wrap_svn_wc_conflict_description_t_src_left_version_get) {
XS(_wrap_svn_wc_conflict_description_t_src_right_version_set) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
svn_wc_conflict_version_t *arg2 = (svn_wc_conflict_version_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -9805,9 +9899,9 @@ XS(_wrap_svn_wc_conflict_description_t_src_right_version_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_right_version_set" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_right_version_set" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_version_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_description_t_src_right_version_set" "', argument " "2"" of type '" "svn_wc_conflict_version_t *""'");
@@ -9828,7 +9922,7 @@ XS(_wrap_svn_wc_conflict_description_t_src_right_version_set) {
XS(_wrap_svn_wc_conflict_description_t_src_right_version_get) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9840,9 +9934,9 @@ XS(_wrap_svn_wc_conflict_description_t_src_right_version_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_right_version_get" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_description_t_src_right_version_get" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
result = (svn_wc_conflict_version_t *) ((arg1)->src_right_version);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_version_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -9857,14 +9951,14 @@ XS(_wrap_svn_wc_conflict_description_t_src_right_version_get) {
XS(_wrap_new_svn_wc_conflict_description_t) {
{
int argvi = 0;
- svn_wc_conflict_description_t *result = 0 ;
+ struct svn_wc_conflict_description_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_conflict_description_t();");
}
{
- result = (svn_wc_conflict_description_t *)calloc(1, sizeof(svn_wc_conflict_description_t));
+ result = (struct svn_wc_conflict_description_t *)calloc(1, sizeof(struct svn_wc_conflict_description_t));
@@ -9879,7 +9973,7 @@ XS(_wrap_new_svn_wc_conflict_description_t) {
XS(_wrap_delete_svn_wc_conflict_description_t) {
{
- svn_wc_conflict_description_t *arg1 = (svn_wc_conflict_description_t *) 0 ;
+ struct svn_wc_conflict_description_t *arg1 = (struct svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -9890,9 +9984,9 @@ XS(_wrap_delete_svn_wc_conflict_description_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_description_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_description_t" "', argument " "1"" of type '" "svn_wc_conflict_description_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_description_t" "', argument " "1"" of type '" "struct svn_wc_conflict_description_t *""'");
}
- arg1 = (svn_wc_conflict_description_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_description_t *)(argp1);
{
free((char *) arg1);
@@ -10370,7 +10464,7 @@ XS(_wrap_svn_wc__conflict_description2_dup) {
XS(_wrap_svn_wc_conflict_result_t_choice_set) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
svn_wc_conflict_choice_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10384,9 +10478,9 @@ XS(_wrap_svn_wc_conflict_result_t_choice_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_set" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_result_t_choice_set" "', argument " "2"" of type '" "svn_wc_conflict_choice_t""'");
@@ -10407,7 +10501,7 @@ XS(_wrap_svn_wc_conflict_result_t_choice_set) {
XS(_wrap_svn_wc_conflict_result_t_choice_get) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10419,9 +10513,9 @@ XS(_wrap_svn_wc_conflict_result_t_choice_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_get" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_choice_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
result = (svn_wc_conflict_choice_t) ((arg1)->choice);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -10435,7 +10529,7 @@ XS(_wrap_svn_wc_conflict_result_t_choice_get) {
XS(_wrap_svn_wc_conflict_result_t_merged_file_set) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10450,9 +10544,9 @@ XS(_wrap_svn_wc_conflict_result_t_merged_file_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_set" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_conflict_result_t_merged_file_set" "', argument " "2"" of type '" "char const *""'");
@@ -10480,7 +10574,7 @@ XS(_wrap_svn_wc_conflict_result_t_merged_file_set) {
XS(_wrap_svn_wc_conflict_result_t_merged_file_get) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10492,9 +10586,9 @@ XS(_wrap_svn_wc_conflict_result_t_merged_file_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_get" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_merged_file_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
result = (char *) ((arg1)->merged_file);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -10508,7 +10602,7 @@ XS(_wrap_svn_wc_conflict_result_t_merged_file_get) {
XS(_wrap_svn_wc_conflict_result_t_save_merged_set) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10522,9 +10616,9 @@ XS(_wrap_svn_wc_conflict_result_t_save_merged_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_set" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_set" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_conflict_result_t_save_merged_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -10545,7 +10639,7 @@ XS(_wrap_svn_wc_conflict_result_t_save_merged_set) {
XS(_wrap_svn_wc_conflict_result_t_save_merged_get) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10557,9 +10651,9 @@ XS(_wrap_svn_wc_conflict_result_t_save_merged_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_get" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_conflict_result_t_save_merged_get" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
result = (svn_boolean_t) ((arg1)->save_merged);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -10574,14 +10668,14 @@ XS(_wrap_svn_wc_conflict_result_t_save_merged_get) {
XS(_wrap_new_svn_wc_conflict_result_t) {
{
int argvi = 0;
- svn_wc_conflict_result_t *result = 0 ;
+ struct svn_wc_conflict_result_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_conflict_result_t();");
}
{
- result = (svn_wc_conflict_result_t *)calloc(1, sizeof(svn_wc_conflict_result_t));
+ result = (struct svn_wc_conflict_result_t *)calloc(1, sizeof(struct svn_wc_conflict_result_t));
@@ -10596,7 +10690,7 @@ XS(_wrap_new_svn_wc_conflict_result_t) {
XS(_wrap_delete_svn_wc_conflict_result_t) {
{
- svn_wc_conflict_result_t *arg1 = (svn_wc_conflict_result_t *) 0 ;
+ struct svn_wc_conflict_result_t *arg1 = (struct svn_wc_conflict_result_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10607,9 +10701,9 @@ XS(_wrap_delete_svn_wc_conflict_result_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_conflict_result_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_result_t" "', argument " "1"" of type '" "svn_wc_conflict_result_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_conflict_result_t" "', argument " "1"" of type '" "struct svn_wc_conflict_result_t *""'");
}
- arg1 = (svn_wc_conflict_result_t *)(argp1);
+ arg1 = (struct svn_wc_conflict_result_t *)(argp1);
{
free((char *) arg1);
@@ -10682,7 +10776,7 @@ XS(_wrap_svn_wc_create_conflict_result) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *) = (svn_error_t *(*)(svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10694,9 +10788,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_opened_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_opened_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10718,7 +10812,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10730,9 +10824,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_opened_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_opened_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *)) ((arg1)->file_opened);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10746,7 +10840,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_opened_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10758,9 +10852,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10782,7 +10876,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10794,9 +10888,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->file_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10810,7 +10904,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_changed_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_added_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,char const *,svn_revnum_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,char const *,svn_revnum_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10822,9 +10916,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10846,7 +10940,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_added_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_added_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10858,9 +10952,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,char const *,svn_revnum_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->file_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10874,7 +10968,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_added_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10886,9 +10980,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10910,7 +11004,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10922,9 +11016,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_file_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->file_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -10938,7 +11032,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_file_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -10950,9 +11044,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -10974,7 +11068,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -10986,9 +11080,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *,apr_pool_t *)) ((arg1)->dir_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11002,7 +11096,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *) = (svn_error_t *(*)(svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11014,9 +11108,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_opened_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_opened_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_boolean_t_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11038,7 +11132,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11050,9 +11144,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_opened_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_opened_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,void *,apr_pool_t *)) ((arg1)->dir_opened);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_boolean_t_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11066,7 +11160,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_opened_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,char const *,svn_revnum_t,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,char const *,svn_revnum_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11078,9 +11172,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11102,7 +11196,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11114,9 +11208,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,svn_boolean_t *,svn_boolean_t *,char const *,svn_revnum_t,char const *,svn_revnum_t,void *,apr_pool_t *)) ((arg1)->dir_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_svn_boolean_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_q_const__char_svn_revnum_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11130,7 +11224,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_added_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11142,9 +11236,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_props_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_props_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_boolean_t_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11166,7 +11260,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11178,9 +11272,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_props_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_props_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,apr_array_header_t const *,apr_hash_t *,void *,apr_pool_t *)) ((arg1)->dir_props_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_boolean_t_p_q_const__apr_array_header_t_p_apr_hash_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11194,7 +11288,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_props_changed_get) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_set) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,void *,apr_pool_t *) = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11206,9 +11300,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_closed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_closed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_boolean_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11230,7 +11324,7 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_set) {
XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_get) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11242,9 +11336,9 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_closed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks4_t_dir_closed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_boolean_t,void *,apr_pool_t *)) ((arg1)->dir_closed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_boolean_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -11259,14 +11353,14 @@ XS(_wrap_svn_wc_diff_callbacks4_t_dir_closed_get) {
XS(_wrap_new_svn_wc_diff_callbacks4_t) {
{
int argvi = 0;
- svn_wc_diff_callbacks4_t *result = 0 ;
+ struct svn_wc_diff_callbacks4_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_diff_callbacks4_t();");
}
{
- result = (svn_wc_diff_callbacks4_t *)calloc(1, sizeof(svn_wc_diff_callbacks4_t));
+ result = (struct svn_wc_diff_callbacks4_t *)calloc(1, sizeof(struct svn_wc_diff_callbacks4_t));
@@ -11281,7 +11375,7 @@ XS(_wrap_new_svn_wc_diff_callbacks4_t) {
XS(_wrap_delete_svn_wc_diff_callbacks4_t) {
{
- svn_wc_diff_callbacks4_t *arg1 = (svn_wc_diff_callbacks4_t *) 0 ;
+ struct svn_wc_diff_callbacks4_t *arg1 = (struct svn_wc_diff_callbacks4_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11292,9 +11386,9 @@ XS(_wrap_delete_svn_wc_diff_callbacks4_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks4_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks4_t" "', argument " "1"" of type '" "svn_wc_diff_callbacks4_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks4_t" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks4_t *""'");
}
- arg1 = (svn_wc_diff_callbacks4_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks4_t *)(argp1);
{
free((char *) arg1);
@@ -11313,7 +11407,7 @@ XS(_wrap_delete_svn_wc_diff_callbacks4_t) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11325,9 +11419,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11349,7 +11443,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11361,9 +11455,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->file_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -11377,7 +11471,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_changed_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_added_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11389,9 +11483,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11413,7 +11507,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_added_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_added_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11425,9 +11519,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->file_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -11441,7 +11535,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_added_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11453,9 +11547,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11477,7 +11571,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11489,9 +11583,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_file_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *)) ((arg1)->file_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -11505,7 +11599,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_file_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_revnum_t,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_revnum_t,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11517,9 +11611,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11541,7 +11635,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11553,9 +11647,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,svn_revnum_t,void *)) ((arg1)->dir_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t); argvi++ ;
@@ -11569,7 +11663,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_added_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11581,9 +11675,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11605,7 +11699,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11617,9 +11711,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *)) ((arg1)->dir_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -11633,7 +11727,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11645,9 +11739,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_props_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_props_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11669,7 +11763,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11681,9 +11775,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_props_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_props_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->dir_props_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -11697,7 +11791,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_props_changed_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_boolean_t *,char const *,svn_revnum_t,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_boolean_t *,char const *,svn_revnum_t,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11709,9 +11803,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_opened_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_opened_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11733,7 +11827,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11745,9 +11839,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_opened_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_opened_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_boolean_t *,char const *,svn_revnum_t,void *)) ((arg1)->dir_opened);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_boolean_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t); argvi++ ;
@@ -11761,7 +11855,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_opened_get) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_set) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11773,9 +11867,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_closed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_closed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11797,7 +11891,7 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_set) {
XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_get) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11809,9 +11903,9 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_closed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks3_t_dir_closed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,svn_boolean_t *,char const *,void *)) ((arg1)->dir_closed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -11826,14 +11920,14 @@ XS(_wrap_svn_wc_diff_callbacks3_t_dir_closed_get) {
XS(_wrap_new_svn_wc_diff_callbacks3_t) {
{
int argvi = 0;
- svn_wc_diff_callbacks3_t *result = 0 ;
+ struct svn_wc_diff_callbacks3_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_diff_callbacks3_t();");
}
{
- result = (svn_wc_diff_callbacks3_t *)calloc(1, sizeof(svn_wc_diff_callbacks3_t));
+ result = (struct svn_wc_diff_callbacks3_t *)calloc(1, sizeof(struct svn_wc_diff_callbacks3_t));
@@ -11848,7 +11942,7 @@ XS(_wrap_new_svn_wc_diff_callbacks3_t) {
XS(_wrap_delete_svn_wc_diff_callbacks3_t) {
{
- svn_wc_diff_callbacks3_t *arg1 = (svn_wc_diff_callbacks3_t *) 0 ;
+ struct svn_wc_diff_callbacks3_t *arg1 = (struct svn_wc_diff_callbacks3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11859,9 +11953,9 @@ XS(_wrap_delete_svn_wc_diff_callbacks3_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks3_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks3_t" "', argument " "1"" of type '" "svn_wc_diff_callbacks3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks3_t" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks3_t *""'");
}
- arg1 = (svn_wc_diff_callbacks3_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks3_t *)(argp1);
{
free((char *) arg1);
@@ -11880,7 +11974,7 @@ XS(_wrap_delete_svn_wc_diff_callbacks3_t) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11892,9 +11986,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11916,7 +12010,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11928,9 +12022,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->file_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -11944,7 +12038,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_changed_get) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_added_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -11956,9 +12050,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -11980,7 +12074,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_added_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_added_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -11992,9 +12086,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->file_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -12008,7 +12102,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_added_get) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12020,9 +12114,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12044,7 +12138,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12056,9 +12150,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_file_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,apr_hash_t *,void *)) ((arg1)->file_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -12072,7 +12166,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_file_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12084,9 +12178,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12108,7 +12202,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12120,9 +12214,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *)) ((arg1)->dir_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t); argvi++ ;
@@ -12136,7 +12230,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_added_get) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12148,9 +12242,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12172,7 +12266,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12184,9 +12278,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *)) ((arg1)->dir_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -12200,7 +12294,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_set) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12212,9 +12306,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_props_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_props_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12236,7 +12330,7 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_set) {
XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_get) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12248,9 +12342,9 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_props_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks2_t_dir_props_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->dir_props_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -12265,14 +12359,14 @@ XS(_wrap_svn_wc_diff_callbacks2_t_dir_props_changed_get) {
XS(_wrap_new_svn_wc_diff_callbacks2_t) {
{
int argvi = 0;
- svn_wc_diff_callbacks2_t *result = 0 ;
+ struct svn_wc_diff_callbacks2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_diff_callbacks2_t();");
}
{
- result = (svn_wc_diff_callbacks2_t *)calloc(1, sizeof(svn_wc_diff_callbacks2_t));
+ result = (struct svn_wc_diff_callbacks2_t *)calloc(1, sizeof(struct svn_wc_diff_callbacks2_t));
@@ -12287,7 +12381,7 @@ XS(_wrap_new_svn_wc_diff_callbacks2_t) {
XS(_wrap_delete_svn_wc_diff_callbacks2_t) {
{
- svn_wc_diff_callbacks2_t *arg1 = (svn_wc_diff_callbacks2_t *) 0 ;
+ struct svn_wc_diff_callbacks2_t *arg1 = (struct svn_wc_diff_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12298,9 +12392,9 @@ XS(_wrap_delete_svn_wc_diff_callbacks2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks2_t" "', argument " "1"" of type '" "svn_wc_diff_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks2_t" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks2_t *""'");
}
- arg1 = (svn_wc_diff_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks2_t *)(argp1);
{
free((char *) arg1);
@@ -12319,7 +12413,7 @@ XS(_wrap_delete_svn_wc_diff_callbacks2_t) {
XS(_wrap_svn_wc_diff_callbacks_t_file_changed_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12331,9 +12425,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12355,7 +12449,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_changed_set) {
XS(_wrap_svn_wc_diff_callbacks_t_file_changed_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12367,9 +12461,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *)) ((arg1)->file_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -12383,7 +12477,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_changed_get) {
XS(_wrap_svn_wc_diff_callbacks_t_file_added_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12395,9 +12489,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12419,7 +12513,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_added_set) {
XS(_wrap_svn_wc_diff_callbacks_t_file_added_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12431,9 +12525,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,svn_revnum_t,svn_revnum_t,char const *,char const *,void *)) ((arg1)->file_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_svn_revnum_t_svn_revnum_t_p_q_const__char_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -12447,7 +12541,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_added_get) {
XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12459,9 +12553,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12483,7 +12577,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12495,9 +12589,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_file_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,char const *,char const *,char const *,char const *,void *)) ((arg1)->file_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -12511,7 +12605,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_file_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks_t_dir_added_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12523,9 +12617,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_added_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_added_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_added_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12547,7 +12641,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_added_set) {
XS(_wrap_svn_wc_diff_callbacks_t_dir_added_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12559,9 +12653,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_added_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_added_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_added_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,svn_revnum_t,void *)) ((arg1)->dir_added);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_svn_revnum_t_p_void__p_svn_error_t); argvi++ ;
@@ -12575,7 +12669,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_added_get) {
XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12587,9 +12681,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_deleted_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_deleted_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12611,7 +12705,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_set) {
XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12623,9 +12717,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_deleted_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_dir_deleted_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,void *)) ((arg1)->dir_deleted);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t); argvi++ ;
@@ -12639,7 +12733,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_dir_deleted_get) {
XS(_wrap_svn_wc_diff_callbacks_t_props_changed_set) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
svn_error_t *(*arg2)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *) = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -12651,9 +12745,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_props_changed_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_props_changed_set" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_props_changed_set" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -12675,7 +12769,7 @@ XS(_wrap_svn_wc_diff_callbacks_t_props_changed_set) {
XS(_wrap_svn_wc_diff_callbacks_t_props_changed_get) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12687,9 +12781,9 @@ XS(_wrap_svn_wc_diff_callbacks_t_props_changed_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_props_changed_get" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_diff_callbacks_t_props_changed_get" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
result = (svn_error_t *(*)(svn_wc_adm_access_t *,svn_wc_notify_state_t *,char const *,apr_array_header_t const *,apr_hash_t *,void *)) ((arg1)->props_changed);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__apr_array_header_t_p_apr_hash_t_p_void__p_svn_error_t); argvi++ ;
@@ -12704,14 +12798,14 @@ XS(_wrap_svn_wc_diff_callbacks_t_props_changed_get) {
XS(_wrap_new_svn_wc_diff_callbacks_t) {
{
int argvi = 0;
- svn_wc_diff_callbacks_t *result = 0 ;
+ struct svn_wc_diff_callbacks_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_diff_callbacks_t();");
}
{
- result = (svn_wc_diff_callbacks_t *)calloc(1, sizeof(svn_wc_diff_callbacks_t));
+ result = (struct svn_wc_diff_callbacks_t *)calloc(1, sizeof(struct svn_wc_diff_callbacks_t));
@@ -12726,7 +12820,7 @@ XS(_wrap_new_svn_wc_diff_callbacks_t) {
XS(_wrap_delete_svn_wc_diff_callbacks_t) {
{
- svn_wc_diff_callbacks_t *arg1 = (svn_wc_diff_callbacks_t *) 0 ;
+ struct svn_wc_diff_callbacks_t *arg1 = (struct svn_wc_diff_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -12737,9 +12831,9 @@ XS(_wrap_delete_svn_wc_diff_callbacks_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_diff_callbacks_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks_t" "', argument " "1"" of type '" "svn_wc_diff_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_diff_callbacks_t" "', argument " "1"" of type '" "struct svn_wc_diff_callbacks_t *""'");
}
- arg1 = (svn_wc_diff_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_diff_callbacks_t *)(argp1);
{
free((char *) arg1);
@@ -13015,7 +13109,7 @@ XS(_wrap_svn_wc_text_modified_p2) {
}
arg1 = &temp1;
if ((items < 3) || (items > 4)) {
- SWIG_croak("Usage: svn_wc_text_modified_p2(wc_ctx,local_abspath,force_comparison,scratch_pool);");
+ SWIG_croak("Usage: svn_wc_text_modified_p2(wc_ctx,local_abspath,unused,scratch_pool);");
}
res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
if (!SWIG_IsOK(res2)) {
@@ -13335,7 +13429,7 @@ XS(_wrap_svn_wc_props_modified_p) {
XS(_wrap_svn_wc_entry_t_name_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13350,9 +13444,9 @@ XS(_wrap_svn_wc_entry_t_name_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_name_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_name_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_name_set" "', argument " "2"" of type '" "char const *""'");
@@ -13380,7 +13474,7 @@ XS(_wrap_svn_wc_entry_t_name_set) {
XS(_wrap_svn_wc_entry_t_name_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13392,9 +13486,9 @@ XS(_wrap_svn_wc_entry_t_name_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_name_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_name_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->name);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -13408,7 +13502,7 @@ XS(_wrap_svn_wc_entry_t_name_get) {
XS(_wrap_svn_wc_entry_t_revision_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13422,9 +13516,9 @@ XS(_wrap_svn_wc_entry_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_revision_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_revision_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -13445,7 +13539,7 @@ XS(_wrap_svn_wc_entry_t_revision_set) {
XS(_wrap_svn_wc_entry_t_revision_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13457,9 +13551,9 @@ XS(_wrap_svn_wc_entry_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_revision_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_revision_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_revnum_t) ((arg1)->revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -13473,7 +13567,7 @@ XS(_wrap_svn_wc_entry_t_revision_get) {
XS(_wrap_svn_wc_entry_t_url_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13488,9 +13582,9 @@ XS(_wrap_svn_wc_entry_t_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_url_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_url_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -13518,7 +13612,7 @@ XS(_wrap_svn_wc_entry_t_url_set) {
XS(_wrap_svn_wc_entry_t_url_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13530,9 +13624,9 @@ XS(_wrap_svn_wc_entry_t_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_url_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_url_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -13546,7 +13640,7 @@ XS(_wrap_svn_wc_entry_t_url_get) {
XS(_wrap_svn_wc_entry_t_repos_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13561,9 +13655,9 @@ XS(_wrap_svn_wc_entry_t_repos_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_repos_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_repos_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_repos_set" "', argument " "2"" of type '" "char const *""'");
@@ -13589,7 +13683,7 @@ XS(_wrap_svn_wc_entry_t_repos_set) {
XS(_wrap_svn_wc_entry_t_repos_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13601,9 +13695,9 @@ XS(_wrap_svn_wc_entry_t_repos_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_repos_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_repos_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->repos);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -13617,7 +13711,7 @@ XS(_wrap_svn_wc_entry_t_repos_get) {
XS(_wrap_svn_wc_entry_t_uuid_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13632,9 +13726,9 @@ XS(_wrap_svn_wc_entry_t_uuid_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_uuid_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_uuid_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_uuid_set" "', argument " "2"" of type '" "char const *""'");
@@ -13660,7 +13754,7 @@ XS(_wrap_svn_wc_entry_t_uuid_set) {
XS(_wrap_svn_wc_entry_t_uuid_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13672,9 +13766,9 @@ XS(_wrap_svn_wc_entry_t_uuid_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_uuid_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_uuid_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->uuid);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -13688,7 +13782,7 @@ XS(_wrap_svn_wc_entry_t_uuid_get) {
XS(_wrap_svn_wc_entry_t_kind_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13702,9 +13796,9 @@ XS(_wrap_svn_wc_entry_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_kind_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -13725,7 +13819,7 @@ XS(_wrap_svn_wc_entry_t_kind_set) {
XS(_wrap_svn_wc_entry_t_kind_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13737,9 +13831,9 @@ XS(_wrap_svn_wc_entry_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_kind_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -13753,7 +13847,7 @@ XS(_wrap_svn_wc_entry_t_kind_get) {
XS(_wrap_svn_wc_entry_t_schedule_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_wc_schedule_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13767,9 +13861,9 @@ XS(_wrap_svn_wc_entry_t_schedule_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_schedule_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_schedule_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_schedule_set" "', argument " "2"" of type '" "svn_wc_schedule_t""'");
@@ -13790,7 +13884,7 @@ XS(_wrap_svn_wc_entry_t_schedule_set) {
XS(_wrap_svn_wc_entry_t_schedule_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13802,9 +13896,9 @@ XS(_wrap_svn_wc_entry_t_schedule_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_schedule_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_schedule_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_wc_schedule_t) ((arg1)->schedule);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -13818,7 +13912,7 @@ XS(_wrap_svn_wc_entry_t_schedule_get) {
XS(_wrap_svn_wc_entry_t_copied_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13832,9 +13926,9 @@ XS(_wrap_svn_wc_entry_t_copied_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copied_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copied_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_copied_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -13855,7 +13949,7 @@ XS(_wrap_svn_wc_entry_t_copied_set) {
XS(_wrap_svn_wc_entry_t_copied_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13867,9 +13961,9 @@ XS(_wrap_svn_wc_entry_t_copied_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copied_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copied_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->copied);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -13883,7 +13977,7 @@ XS(_wrap_svn_wc_entry_t_copied_get) {
XS(_wrap_svn_wc_entry_t_deleted_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13897,9 +13991,9 @@ XS(_wrap_svn_wc_entry_t_deleted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_deleted_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_deleted_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_deleted_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -13920,7 +14014,7 @@ XS(_wrap_svn_wc_entry_t_deleted_set) {
XS(_wrap_svn_wc_entry_t_deleted_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13932,9 +14026,9 @@ XS(_wrap_svn_wc_entry_t_deleted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_deleted_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_deleted_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->deleted);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -13948,7 +14042,7 @@ XS(_wrap_svn_wc_entry_t_deleted_get) {
XS(_wrap_svn_wc_entry_t_absent_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -13962,9 +14056,9 @@ XS(_wrap_svn_wc_entry_t_absent_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_absent_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_absent_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_absent_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -13985,7 +14079,7 @@ XS(_wrap_svn_wc_entry_t_absent_set) {
XS(_wrap_svn_wc_entry_t_absent_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -13997,9 +14091,9 @@ XS(_wrap_svn_wc_entry_t_absent_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_absent_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_absent_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->absent);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -14013,7 +14107,7 @@ XS(_wrap_svn_wc_entry_t_absent_get) {
XS(_wrap_svn_wc_entry_t_incomplete_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14027,9 +14121,9 @@ XS(_wrap_svn_wc_entry_t_incomplete_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_incomplete_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_incomplete_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_incomplete_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -14050,7 +14144,7 @@ XS(_wrap_svn_wc_entry_t_incomplete_set) {
XS(_wrap_svn_wc_entry_t_incomplete_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14062,9 +14156,9 @@ XS(_wrap_svn_wc_entry_t_incomplete_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_incomplete_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_incomplete_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->incomplete);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -14078,7 +14172,7 @@ XS(_wrap_svn_wc_entry_t_incomplete_get) {
XS(_wrap_svn_wc_entry_t_copyfrom_url_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14093,9 +14187,9 @@ XS(_wrap_svn_wc_entry_t_copyfrom_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_url_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_url_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_copyfrom_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -14121,7 +14215,7 @@ XS(_wrap_svn_wc_entry_t_copyfrom_url_set) {
XS(_wrap_svn_wc_entry_t_copyfrom_url_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14133,9 +14227,9 @@ XS(_wrap_svn_wc_entry_t_copyfrom_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_url_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_url_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->copyfrom_url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14149,7 +14243,7 @@ XS(_wrap_svn_wc_entry_t_copyfrom_url_get) {
XS(_wrap_svn_wc_entry_t_copyfrom_rev_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14163,9 +14257,9 @@ XS(_wrap_svn_wc_entry_t_copyfrom_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_rev_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_rev_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_copyfrom_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -14186,7 +14280,7 @@ XS(_wrap_svn_wc_entry_t_copyfrom_rev_set) {
XS(_wrap_svn_wc_entry_t_copyfrom_rev_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14198,9 +14292,9 @@ XS(_wrap_svn_wc_entry_t_copyfrom_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_rev_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_copyfrom_rev_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_revnum_t) ((arg1)->copyfrom_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -14214,7 +14308,7 @@ XS(_wrap_svn_wc_entry_t_copyfrom_rev_get) {
XS(_wrap_svn_wc_entry_t_conflict_old_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14229,9 +14323,9 @@ XS(_wrap_svn_wc_entry_t_conflict_old_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_old_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_old_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_conflict_old_set" "', argument " "2"" of type '" "char const *""'");
@@ -14259,7 +14353,7 @@ XS(_wrap_svn_wc_entry_t_conflict_old_set) {
XS(_wrap_svn_wc_entry_t_conflict_old_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14271,9 +14365,9 @@ XS(_wrap_svn_wc_entry_t_conflict_old_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_old_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_old_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->conflict_old);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14287,7 +14381,7 @@ XS(_wrap_svn_wc_entry_t_conflict_old_get) {
XS(_wrap_svn_wc_entry_t_conflict_new_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14302,9 +14396,9 @@ XS(_wrap_svn_wc_entry_t_conflict_new_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_new_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_new_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_conflict_new_set" "', argument " "2"" of type '" "char const *""'");
@@ -14332,7 +14426,7 @@ XS(_wrap_svn_wc_entry_t_conflict_new_set) {
XS(_wrap_svn_wc_entry_t_conflict_new_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14344,9 +14438,9 @@ XS(_wrap_svn_wc_entry_t_conflict_new_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_new_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_new_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->conflict_new);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14360,7 +14454,7 @@ XS(_wrap_svn_wc_entry_t_conflict_new_get) {
XS(_wrap_svn_wc_entry_t_conflict_wrk_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14375,9 +14469,9 @@ XS(_wrap_svn_wc_entry_t_conflict_wrk_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_wrk_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_wrk_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_conflict_wrk_set" "', argument " "2"" of type '" "char const *""'");
@@ -14405,7 +14499,7 @@ XS(_wrap_svn_wc_entry_t_conflict_wrk_set) {
XS(_wrap_svn_wc_entry_t_conflict_wrk_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14417,9 +14511,9 @@ XS(_wrap_svn_wc_entry_t_conflict_wrk_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_wrk_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_conflict_wrk_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->conflict_wrk);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14433,7 +14527,7 @@ XS(_wrap_svn_wc_entry_t_conflict_wrk_get) {
XS(_wrap_svn_wc_entry_t_prejfile_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14448,9 +14542,9 @@ XS(_wrap_svn_wc_entry_t_prejfile_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prejfile_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prejfile_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_prejfile_set" "', argument " "2"" of type '" "char const *""'");
@@ -14478,7 +14572,7 @@ XS(_wrap_svn_wc_entry_t_prejfile_set) {
XS(_wrap_svn_wc_entry_t_prejfile_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14490,9 +14584,9 @@ XS(_wrap_svn_wc_entry_t_prejfile_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prejfile_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prejfile_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->prejfile);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14506,7 +14600,7 @@ XS(_wrap_svn_wc_entry_t_prejfile_get) {
XS(_wrap_svn_wc_entry_t_text_time_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14520,9 +14614,9 @@ XS(_wrap_svn_wc_entry_t_text_time_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_text_time_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_text_time_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_text_time_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -14543,7 +14637,7 @@ XS(_wrap_svn_wc_entry_t_text_time_set) {
XS(_wrap_svn_wc_entry_t_text_time_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14555,9 +14649,9 @@ XS(_wrap_svn_wc_entry_t_text_time_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_text_time_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_text_time_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->text_time);
{
char temp[256];
@@ -14576,7 +14670,7 @@ XS(_wrap_svn_wc_entry_t_text_time_get) {
XS(_wrap_svn_wc_entry_t_prop_time_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14590,9 +14684,9 @@ XS(_wrap_svn_wc_entry_t_prop_time_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prop_time_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prop_time_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_prop_time_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -14613,7 +14707,7 @@ XS(_wrap_svn_wc_entry_t_prop_time_set) {
XS(_wrap_svn_wc_entry_t_prop_time_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14625,9 +14719,9 @@ XS(_wrap_svn_wc_entry_t_prop_time_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prop_time_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_prop_time_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->prop_time);
{
char temp[256];
@@ -14646,7 +14740,7 @@ XS(_wrap_svn_wc_entry_t_prop_time_get) {
XS(_wrap_svn_wc_entry_t_checksum_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14661,9 +14755,9 @@ XS(_wrap_svn_wc_entry_t_checksum_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_checksum_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_checksum_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_checksum_set" "', argument " "2"" of type '" "char const *""'");
@@ -14691,7 +14785,7 @@ XS(_wrap_svn_wc_entry_t_checksum_set) {
XS(_wrap_svn_wc_entry_t_checksum_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14703,9 +14797,9 @@ XS(_wrap_svn_wc_entry_t_checksum_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_checksum_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_checksum_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->checksum);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14719,7 +14813,7 @@ XS(_wrap_svn_wc_entry_t_checksum_get) {
XS(_wrap_svn_wc_entry_t_cmt_rev_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14733,9 +14827,9 @@ XS(_wrap_svn_wc_entry_t_cmt_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_rev_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_rev_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_cmt_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -14756,7 +14850,7 @@ XS(_wrap_svn_wc_entry_t_cmt_rev_set) {
XS(_wrap_svn_wc_entry_t_cmt_rev_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14768,9 +14862,9 @@ XS(_wrap_svn_wc_entry_t_cmt_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_rev_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_rev_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_revnum_t) ((arg1)->cmt_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -14784,7 +14878,7 @@ XS(_wrap_svn_wc_entry_t_cmt_rev_get) {
XS(_wrap_svn_wc_entry_t_cmt_date_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14798,9 +14892,9 @@ XS(_wrap_svn_wc_entry_t_cmt_date_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_date_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_date_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_cmt_date_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -14821,7 +14915,7 @@ XS(_wrap_svn_wc_entry_t_cmt_date_set) {
XS(_wrap_svn_wc_entry_t_cmt_date_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14833,9 +14927,9 @@ XS(_wrap_svn_wc_entry_t_cmt_date_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_date_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_date_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->cmt_date);
{
char temp[256];
@@ -14854,7 +14948,7 @@ XS(_wrap_svn_wc_entry_t_cmt_date_get) {
XS(_wrap_svn_wc_entry_t_cmt_author_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14869,9 +14963,9 @@ XS(_wrap_svn_wc_entry_t_cmt_author_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_author_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_author_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_cmt_author_set" "', argument " "2"" of type '" "char const *""'");
@@ -14899,7 +14993,7 @@ XS(_wrap_svn_wc_entry_t_cmt_author_set) {
XS(_wrap_svn_wc_entry_t_cmt_author_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14911,9 +15005,9 @@ XS(_wrap_svn_wc_entry_t_cmt_author_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_author_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cmt_author_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->cmt_author);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14927,7 +15021,7 @@ XS(_wrap_svn_wc_entry_t_cmt_author_get) {
XS(_wrap_svn_wc_entry_t_lock_token_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -14942,9 +15036,9 @@ XS(_wrap_svn_wc_entry_t_lock_token_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_token_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_token_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_lock_token_set" "', argument " "2"" of type '" "char const *""'");
@@ -14970,7 +15064,7 @@ XS(_wrap_svn_wc_entry_t_lock_token_set) {
XS(_wrap_svn_wc_entry_t_lock_token_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -14982,9 +15076,9 @@ XS(_wrap_svn_wc_entry_t_lock_token_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_token_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_token_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->lock_token);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -14998,7 +15092,7 @@ XS(_wrap_svn_wc_entry_t_lock_token_get) {
XS(_wrap_svn_wc_entry_t_lock_owner_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15013,9 +15107,9 @@ XS(_wrap_svn_wc_entry_t_lock_owner_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_owner_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_owner_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_lock_owner_set" "', argument " "2"" of type '" "char const *""'");
@@ -15043,7 +15137,7 @@ XS(_wrap_svn_wc_entry_t_lock_owner_set) {
XS(_wrap_svn_wc_entry_t_lock_owner_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15055,9 +15149,9 @@ XS(_wrap_svn_wc_entry_t_lock_owner_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_owner_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_owner_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->lock_owner);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15071,7 +15165,7 @@ XS(_wrap_svn_wc_entry_t_lock_owner_get) {
XS(_wrap_svn_wc_entry_t_lock_comment_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15086,9 +15180,9 @@ XS(_wrap_svn_wc_entry_t_lock_comment_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_comment_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_comment_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_lock_comment_set" "', argument " "2"" of type '" "char const *""'");
@@ -15116,7 +15210,7 @@ XS(_wrap_svn_wc_entry_t_lock_comment_set) {
XS(_wrap_svn_wc_entry_t_lock_comment_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15128,9 +15222,9 @@ XS(_wrap_svn_wc_entry_t_lock_comment_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_comment_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_comment_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->lock_comment);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15144,7 +15238,7 @@ XS(_wrap_svn_wc_entry_t_lock_comment_get) {
XS(_wrap_svn_wc_entry_t_lock_creation_date_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15158,9 +15252,9 @@ XS(_wrap_svn_wc_entry_t_lock_creation_date_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_creation_date_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_creation_date_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_lock_creation_date_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -15181,7 +15275,7 @@ XS(_wrap_svn_wc_entry_t_lock_creation_date_set) {
XS(_wrap_svn_wc_entry_t_lock_creation_date_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15193,9 +15287,9 @@ XS(_wrap_svn_wc_entry_t_lock_creation_date_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_creation_date_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_lock_creation_date_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->lock_creation_date);
{
char temp[256];
@@ -15214,7 +15308,7 @@ XS(_wrap_svn_wc_entry_t_lock_creation_date_get) {
XS(_wrap_svn_wc_entry_t_has_props_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15228,9 +15322,9 @@ XS(_wrap_svn_wc_entry_t_has_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_props_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_props_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_has_props_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -15251,7 +15345,7 @@ XS(_wrap_svn_wc_entry_t_has_props_set) {
XS(_wrap_svn_wc_entry_t_has_props_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15263,9 +15357,9 @@ XS(_wrap_svn_wc_entry_t_has_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_props_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_props_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->has_props);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -15279,7 +15373,7 @@ XS(_wrap_svn_wc_entry_t_has_props_get) {
XS(_wrap_svn_wc_entry_t_has_prop_mods_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15293,9 +15387,9 @@ XS(_wrap_svn_wc_entry_t_has_prop_mods_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_prop_mods_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_prop_mods_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_has_prop_mods_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -15316,7 +15410,7 @@ XS(_wrap_svn_wc_entry_t_has_prop_mods_set) {
XS(_wrap_svn_wc_entry_t_has_prop_mods_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15328,9 +15422,9 @@ XS(_wrap_svn_wc_entry_t_has_prop_mods_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_prop_mods_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_has_prop_mods_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->has_prop_mods);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -15344,7 +15438,7 @@ XS(_wrap_svn_wc_entry_t_has_prop_mods_get) {
XS(_wrap_svn_wc_entry_t_cachable_props_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15359,9 +15453,9 @@ XS(_wrap_svn_wc_entry_t_cachable_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cachable_props_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cachable_props_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_cachable_props_set" "', argument " "2"" of type '" "char const *""'");
@@ -15389,7 +15483,7 @@ XS(_wrap_svn_wc_entry_t_cachable_props_set) {
XS(_wrap_svn_wc_entry_t_cachable_props_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15401,9 +15495,9 @@ XS(_wrap_svn_wc_entry_t_cachable_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cachable_props_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_cachable_props_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->cachable_props);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15417,7 +15511,7 @@ XS(_wrap_svn_wc_entry_t_cachable_props_get) {
XS(_wrap_svn_wc_entry_t_present_props_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15432,9 +15526,9 @@ XS(_wrap_svn_wc_entry_t_present_props_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_present_props_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_present_props_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_present_props_set" "', argument " "2"" of type '" "char const *""'");
@@ -15462,7 +15556,7 @@ XS(_wrap_svn_wc_entry_t_present_props_set) {
XS(_wrap_svn_wc_entry_t_present_props_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15474,9 +15568,9 @@ XS(_wrap_svn_wc_entry_t_present_props_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_present_props_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_present_props_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->present_props);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15490,7 +15584,7 @@ XS(_wrap_svn_wc_entry_t_present_props_get) {
XS(_wrap_svn_wc_entry_t_changelist_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15505,9 +15599,9 @@ XS(_wrap_svn_wc_entry_t_changelist_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_changelist_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_changelist_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_changelist_set" "', argument " "2"" of type '" "char const *""'");
@@ -15535,7 +15629,7 @@ XS(_wrap_svn_wc_entry_t_changelist_set) {
XS(_wrap_svn_wc_entry_t_changelist_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15547,9 +15641,9 @@ XS(_wrap_svn_wc_entry_t_changelist_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_changelist_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_changelist_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->changelist);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15563,7 +15657,7 @@ XS(_wrap_svn_wc_entry_t_changelist_get) {
XS(_wrap_svn_wc_entry_t_working_size_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
apr_off_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15577,9 +15671,9 @@ XS(_wrap_svn_wc_entry_t_working_size_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_working_size_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_working_size_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_working_size_set" "', argument " "2"" of type '" "apr_off_t""'");
@@ -15600,7 +15694,7 @@ XS(_wrap_svn_wc_entry_t_working_size_set) {
XS(_wrap_svn_wc_entry_t_working_size_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15612,9 +15706,9 @@ XS(_wrap_svn_wc_entry_t_working_size_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_working_size_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_working_size_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = ((arg1)->working_size);
{
char temp[256];
@@ -15633,7 +15727,7 @@ XS(_wrap_svn_wc_entry_t_working_size_get) {
XS(_wrap_svn_wc_entry_t_keep_local_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15647,9 +15741,9 @@ XS(_wrap_svn_wc_entry_t_keep_local_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_keep_local_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_keep_local_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_keep_local_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -15670,7 +15764,7 @@ XS(_wrap_svn_wc_entry_t_keep_local_set) {
XS(_wrap_svn_wc_entry_t_keep_local_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15682,9 +15776,9 @@ XS(_wrap_svn_wc_entry_t_keep_local_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_keep_local_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_keep_local_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_boolean_t) ((arg1)->keep_local);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -15698,7 +15792,7 @@ XS(_wrap_svn_wc_entry_t_keep_local_get) {
XS(_wrap_svn_wc_entry_t_depth_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_depth_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15712,9 +15806,9 @@ XS(_wrap_svn_wc_entry_t_depth_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_depth_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_depth_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_entry_t_depth_set" "', argument " "2"" of type '" "svn_depth_t""'");
@@ -15735,7 +15829,7 @@ XS(_wrap_svn_wc_entry_t_depth_set) {
XS(_wrap_svn_wc_entry_t_depth_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15747,9 +15841,9 @@ XS(_wrap_svn_wc_entry_t_depth_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_depth_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_depth_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_depth_t) ((arg1)->depth);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -15763,7 +15857,7 @@ XS(_wrap_svn_wc_entry_t_depth_get) {
XS(_wrap_svn_wc_entry_t_tree_conflict_data_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15778,9 +15872,9 @@ XS(_wrap_svn_wc_entry_t_tree_conflict_data_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_tree_conflict_data_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_tree_conflict_data_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_tree_conflict_data_set" "', argument " "2"" of type '" "char const *""'");
@@ -15808,7 +15902,7 @@ XS(_wrap_svn_wc_entry_t_tree_conflict_data_set) {
XS(_wrap_svn_wc_entry_t_tree_conflict_data_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15820,9 +15914,9 @@ XS(_wrap_svn_wc_entry_t_tree_conflict_data_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_tree_conflict_data_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_tree_conflict_data_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->tree_conflict_data);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15836,7 +15930,7 @@ XS(_wrap_svn_wc_entry_t_tree_conflict_data_get) {
XS(_wrap_svn_wc_entry_t_file_external_path_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15851,9 +15945,9 @@ XS(_wrap_svn_wc_entry_t_file_external_path_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_path_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_path_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_entry_t_file_external_path_set" "', argument " "2"" of type '" "char const *""'");
@@ -15881,7 +15975,7 @@ XS(_wrap_svn_wc_entry_t_file_external_path_set) {
XS(_wrap_svn_wc_entry_t_file_external_path_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -15893,9 +15987,9 @@ XS(_wrap_svn_wc_entry_t_file_external_path_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_path_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_path_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (char *) ((arg1)->file_external_path);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -15909,7 +16003,7 @@ XS(_wrap_svn_wc_entry_t_file_external_path_get) {
XS(_wrap_svn_wc_entry_t_file_external_peg_rev_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -15922,57 +16016,11 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_peg_rev_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_peg_rev_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
{
- arg2 = &rev2;
- if (ST(1) == NULL || ST(1) == &PL_sv_undef || !SvOK(ST(1))) {
- rev2.kind = svn_opt_revision_unspecified;
- }
- else if (sv_isobject(ST(1)) && sv_derived_from(ST(1), "_p_svn_opt_revision_t")) {
- SWIG_ConvertPtr(ST(1), (void **)&arg2, SWIGTYPE_p_svn_opt_revision_t, 0);
- }
- else if (looks_like_number(ST(1))) {
- rev2.kind = svn_opt_revision_number;
- rev2.value.number = SvIV(ST(1));
- }
- else if (SvPOK(ST(1))) {
- char *input = SvPV_nolen(ST(1));
- if (svn_cstring_casecmp(input, "BASE") == 0)
- rev2.kind = svn_opt_revision_base;
- else if (svn_cstring_casecmp(input, "HEAD") == 0)
- rev2.kind = svn_opt_revision_head;
- else if (svn_cstring_casecmp(input, "WORKING") == 0)
- rev2.kind = svn_opt_revision_working;
- else if (svn_cstring_casecmp(input, "COMMITTED") == 0)
- rev2.kind = svn_opt_revision_committed;
- else if (svn_cstring_casecmp(input, "PREV") == 0)
- rev2.kind = svn_opt_revision_previous;
- else if (*input == '{') {
- svn_boolean_t matched;
- apr_time_t tm;
- svn_error_t *err;
-
- char *end = strchr(input,'}');
- if (!end)
- SWIG_croak("unknown opt_revision_t type");
- *end = '\0';
- err = svn_parse_date (&matched, &tm, input + 1, apr_time_now(),
- svn_swig_pl_make_pool ((SV *)NULL));
- if (err) {
- svn_error_clear (err);
- SWIG_croak("unknown opt_revision_t type");
- }
- if (!matched)
- SWIG_croak("unknown opt_revision_t type");
-
- rev2.kind = svn_opt_revision_date;
- rev2.value.date = tm;
- } else
- SWIG_croak("unknown opt_revision_t type");
- } else
- SWIG_croak("unknown opt_revision_t type");
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
}
if (arg1) (arg1)->file_external_peg_rev = *arg2;
ST(argvi) = sv_newmortal();
@@ -15989,7 +16037,7 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_set) {
XS(_wrap_svn_wc_entry_t_file_external_peg_rev_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16001,9 +16049,9 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_peg_rev_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_peg_rev_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_opt_revision_t *)& ((arg1)->file_external_peg_rev);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_opt_revision_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -16017,7 +16065,7 @@ XS(_wrap_svn_wc_entry_t_file_external_peg_rev_get) {
XS(_wrap_svn_wc_entry_t_file_external_rev_set) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
svn_opt_revision_t *arg2 = (svn_opt_revision_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16030,57 +16078,11 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_rev_set" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_rev_set" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
{
- arg2 = &rev2;
- if (ST(1) == NULL || ST(1) == &PL_sv_undef || !SvOK(ST(1))) {
- rev2.kind = svn_opt_revision_unspecified;
- }
- else if (sv_isobject(ST(1)) && sv_derived_from(ST(1), "_p_svn_opt_revision_t")) {
- SWIG_ConvertPtr(ST(1), (void **)&arg2, SWIGTYPE_p_svn_opt_revision_t, 0);
- }
- else if (looks_like_number(ST(1))) {
- rev2.kind = svn_opt_revision_number;
- rev2.value.number = SvIV(ST(1));
- }
- else if (SvPOK(ST(1))) {
- char *input = SvPV_nolen(ST(1));
- if (svn_cstring_casecmp(input, "BASE") == 0)
- rev2.kind = svn_opt_revision_base;
- else if (svn_cstring_casecmp(input, "HEAD") == 0)
- rev2.kind = svn_opt_revision_head;
- else if (svn_cstring_casecmp(input, "WORKING") == 0)
- rev2.kind = svn_opt_revision_working;
- else if (svn_cstring_casecmp(input, "COMMITTED") == 0)
- rev2.kind = svn_opt_revision_committed;
- else if (svn_cstring_casecmp(input, "PREV") == 0)
- rev2.kind = svn_opt_revision_previous;
- else if (*input == '{') {
- svn_boolean_t matched;
- apr_time_t tm;
- svn_error_t *err;
-
- char *end = strchr(input,'}');
- if (!end)
- SWIG_croak("unknown opt_revision_t type");
- *end = '\0';
- err = svn_parse_date (&matched, &tm, input + 1, apr_time_now(),
- svn_swig_pl_make_pool ((SV *)NULL));
- if (err) {
- svn_error_clear (err);
- SWIG_croak("unknown opt_revision_t type");
- }
- if (!matched)
- SWIG_croak("unknown opt_revision_t type");
-
- rev2.kind = svn_opt_revision_date;
- rev2.value.date = tm;
- } else
- SWIG_croak("unknown opt_revision_t type");
- } else
- SWIG_croak("unknown opt_revision_t type");
+ arg2 = svn_swig_pl_set_revision(&rev2, ST(1), TRUE);
}
if (arg1) (arg1)->file_external_rev = *arg2;
ST(argvi) = sv_newmortal();
@@ -16097,7 +16099,7 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_set) {
XS(_wrap_svn_wc_entry_t_file_external_rev_get) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16109,9 +16111,9 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_rev_get" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_t_file_external_rev_get" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
result = (svn_opt_revision_t *)& ((arg1)->file_external_rev);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_opt_revision_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -16126,14 +16128,14 @@ XS(_wrap_svn_wc_entry_t_file_external_rev_get) {
XS(_wrap_new_svn_wc_entry_t) {
{
int argvi = 0;
- svn_wc_entry_t *result = 0 ;
+ struct svn_wc_entry_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_entry_t();");
}
{
- result = (svn_wc_entry_t *)calloc(1, sizeof(svn_wc_entry_t));
+ result = (struct svn_wc_entry_t *)calloc(1, sizeof(struct svn_wc_entry_t));
@@ -16148,7 +16150,7 @@ XS(_wrap_new_svn_wc_entry_t) {
XS(_wrap_delete_svn_wc_entry_t) {
{
- svn_wc_entry_t *arg1 = (svn_wc_entry_t *) 0 ;
+ struct svn_wc_entry_t *arg1 = (struct svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16159,9 +16161,9 @@ XS(_wrap_delete_svn_wc_entry_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_t" "', argument " "1"" of type '" "svn_wc_entry_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_t" "', argument " "1"" of type '" "struct svn_wc_entry_t *""'");
}
- arg1 = (svn_wc_entry_t *)(argp1);
+ arg1 = (struct svn_wc_entry_t *)(argp1);
{
free((char *) arg1);
@@ -16386,7 +16388,7 @@ XS(_wrap_svn_wc_entry_dup) {
XS(_wrap_svn_wc_info_t_schedule_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
svn_wc_schedule_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16400,9 +16402,9 @@ XS(_wrap_svn_wc_info_t_schedule_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_schedule_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_schedule_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_info_t_schedule_set" "', argument " "2"" of type '" "svn_wc_schedule_t""'");
@@ -16423,7 +16425,7 @@ XS(_wrap_svn_wc_info_t_schedule_set) {
XS(_wrap_svn_wc_info_t_schedule_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16435,9 +16437,9 @@ XS(_wrap_svn_wc_info_t_schedule_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_schedule_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_schedule_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (svn_wc_schedule_t) ((arg1)->schedule);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -16451,7 +16453,7 @@ XS(_wrap_svn_wc_info_t_schedule_get) {
XS(_wrap_svn_wc_info_t_copyfrom_url_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16466,9 +16468,9 @@ XS(_wrap_svn_wc_info_t_copyfrom_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_url_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_url_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_copyfrom_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -16494,7 +16496,7 @@ XS(_wrap_svn_wc_info_t_copyfrom_url_set) {
XS(_wrap_svn_wc_info_t_copyfrom_url_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16506,9 +16508,9 @@ XS(_wrap_svn_wc_info_t_copyfrom_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_url_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_url_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (char *) ((arg1)->copyfrom_url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -16522,7 +16524,7 @@ XS(_wrap_svn_wc_info_t_copyfrom_url_get) {
XS(_wrap_svn_wc_info_t_copyfrom_rev_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16536,9 +16538,9 @@ XS(_wrap_svn_wc_info_t_copyfrom_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_rev_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_rev_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_info_t_copyfrom_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -16559,7 +16561,7 @@ XS(_wrap_svn_wc_info_t_copyfrom_rev_set) {
XS(_wrap_svn_wc_info_t_copyfrom_rev_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16571,9 +16573,9 @@ XS(_wrap_svn_wc_info_t_copyfrom_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_rev_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_copyfrom_rev_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (svn_revnum_t) ((arg1)->copyfrom_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -16587,7 +16589,7 @@ XS(_wrap_svn_wc_info_t_copyfrom_rev_get) {
XS(_wrap_svn_wc_info_t_checksum_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
svn_checksum_t *arg2 = (svn_checksum_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16601,9 +16603,9 @@ XS(_wrap_svn_wc_info_t_checksum_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_checksum_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_checksum_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_checksum_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_checksum_set" "', argument " "2"" of type '" "svn_checksum_t const *""'");
@@ -16624,7 +16626,7 @@ XS(_wrap_svn_wc_info_t_checksum_set) {
XS(_wrap_svn_wc_info_t_checksum_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16636,11 +16638,11 @@ XS(_wrap_svn_wc_info_t_checksum_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_checksum_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_checksum_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (svn_checksum_t *) ((arg1)->checksum);
- ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_checksum_t, 0 | 0); argvi++ ;
+ ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_checksum_t, 0 | SWIG_SHADOW); argvi++ ;
XSRETURN(argvi);
fail:
@@ -16652,7 +16654,7 @@ XS(_wrap_svn_wc_info_t_checksum_get) {
XS(_wrap_svn_wc_info_t_changelist_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16667,9 +16669,9 @@ XS(_wrap_svn_wc_info_t_changelist_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_changelist_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_changelist_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_changelist_set" "', argument " "2"" of type '" "char const *""'");
@@ -16697,7 +16699,7 @@ XS(_wrap_svn_wc_info_t_changelist_set) {
XS(_wrap_svn_wc_info_t_changelist_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16709,9 +16711,9 @@ XS(_wrap_svn_wc_info_t_changelist_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_changelist_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_changelist_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (char *) ((arg1)->changelist);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -16725,7 +16727,7 @@ XS(_wrap_svn_wc_info_t_changelist_get) {
XS(_wrap_svn_wc_info_t_depth_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
svn_depth_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16739,9 +16741,9 @@ XS(_wrap_svn_wc_info_t_depth_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_depth_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_depth_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_info_t_depth_set" "', argument " "2"" of type '" "svn_depth_t""'");
@@ -16762,7 +16764,7 @@ XS(_wrap_svn_wc_info_t_depth_set) {
XS(_wrap_svn_wc_info_t_depth_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16774,9 +16776,9 @@ XS(_wrap_svn_wc_info_t_depth_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_depth_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_depth_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (svn_depth_t) ((arg1)->depth);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -16790,7 +16792,7 @@ XS(_wrap_svn_wc_info_t_depth_get) {
XS(_wrap_svn_wc_info_t_recorded_size_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
svn_filesize_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16804,9 +16806,9 @@ XS(_wrap_svn_wc_info_t_recorded_size_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_size_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_size_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_info_t_recorded_size_set" "', argument " "2"" of type '" "svn_filesize_t""'");
@@ -16827,7 +16829,7 @@ XS(_wrap_svn_wc_info_t_recorded_size_set) {
XS(_wrap_svn_wc_info_t_recorded_size_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16839,9 +16841,9 @@ XS(_wrap_svn_wc_info_t_recorded_size_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_size_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_size_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = ((arg1)->recorded_size);
{
char temp[256];
@@ -16860,7 +16862,7 @@ XS(_wrap_svn_wc_info_t_recorded_size_get) {
XS(_wrap_svn_wc_info_t_recorded_time_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16874,9 +16876,9 @@ XS(_wrap_svn_wc_info_t_recorded_time_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_time_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_time_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_info_t_recorded_time_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -16897,7 +16899,7 @@ XS(_wrap_svn_wc_info_t_recorded_time_set) {
XS(_wrap_svn_wc_info_t_recorded_time_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16909,9 +16911,9 @@ XS(_wrap_svn_wc_info_t_recorded_time_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_time_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_recorded_time_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = ((arg1)->recorded_time);
{
char temp[256];
@@ -16930,7 +16932,7 @@ XS(_wrap_svn_wc_info_t_recorded_time_get) {
XS(_wrap_svn_wc_info_t_conflicts_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
apr_array_header_t *arg2 = (apr_array_header_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -16944,9 +16946,9 @@ XS(_wrap_svn_wc_info_t_conflicts_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_conflicts_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_conflicts_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_apr_array_header_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_conflicts_set" "', argument " "2"" of type '" "apr_array_header_t const *""'");
@@ -16967,7 +16969,7 @@ XS(_wrap_svn_wc_info_t_conflicts_set) {
XS(_wrap_svn_wc_info_t_conflicts_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -16979,9 +16981,9 @@ XS(_wrap_svn_wc_info_t_conflicts_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_conflicts_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_conflicts_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (apr_array_header_t *) ((arg1)->conflicts);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_apr_array_header_t, 0 | 0); argvi++ ;
@@ -16995,7 +16997,7 @@ XS(_wrap_svn_wc_info_t_conflicts_get) {
XS(_wrap_svn_wc_info_t_wcroot_abspath_set) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -17010,9 +17012,9 @@ XS(_wrap_svn_wc_info_t_wcroot_abspath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_wcroot_abspath_set" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_wcroot_abspath_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_wcroot_abspath_set" "', argument " "2"" of type '" "char const *""'");
@@ -17040,7 +17042,7 @@ XS(_wrap_svn_wc_info_t_wcroot_abspath_set) {
XS(_wrap_svn_wc_info_t_wcroot_abspath_get) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17052,9 +17054,9 @@ XS(_wrap_svn_wc_info_t_wcroot_abspath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_wcroot_abspath_get" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_wcroot_abspath_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
result = (char *) ((arg1)->wcroot_abspath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -17066,17 +17068,163 @@ XS(_wrap_svn_wc_info_t_wcroot_abspath_get) {
}
+XS(_wrap_svn_wc_info_t_moved_from_abspath_set) {
+ {
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_info_t_moved_from_abspath_set(self,moved_from_abspath);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_moved_from_abspath_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
+ }
+ arg1 = (struct svn_wc_info_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_moved_from_abspath_set" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ apr_size_t len = strlen(arg2) + 1;
+ char *copied;
+ if (arg1->moved_from_abspath) free((char *)arg1->moved_from_abspath);
+ copied = malloc(len);
+ memcpy(copied, arg2, len);
+ arg1->moved_from_abspath = copied;
+ }
+ ST(argvi) = sv_newmortal();
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_info_t_moved_from_abspath_get) {
+ {
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ char *result = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_info_t_moved_from_abspath_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_moved_from_abspath_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
+ }
+ arg1 = (struct svn_wc_info_t *)(argp1);
+ result = (char *) ((arg1)->moved_from_abspath);
+ ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_info_t_moved_to_abspath_set) {
+ {
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_info_t_moved_to_abspath_set(self,moved_to_abspath);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_moved_to_abspath_set" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
+ }
+ arg1 = (struct svn_wc_info_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_info_t_moved_to_abspath_set" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ apr_size_t len = strlen(arg2) + 1;
+ char *copied;
+ if (arg1->moved_to_abspath) free((char *)arg1->moved_to_abspath);
+ copied = malloc(len);
+ memcpy(copied, arg2, len);
+ arg1->moved_to_abspath = copied;
+ }
+ ST(argvi) = sv_newmortal();
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_info_t_moved_to_abspath_get) {
+ {
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ char *result = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_info_t_moved_to_abspath_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_info_t_moved_to_abspath_get" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
+ }
+ arg1 = (struct svn_wc_info_t *)(argp1);
+ result = (char *) ((arg1)->moved_to_abspath);
+ ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_new_svn_wc_info_t) {
{
int argvi = 0;
- svn_wc_info_t *result = 0 ;
+ struct svn_wc_info_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_info_t();");
}
{
- result = (svn_wc_info_t *)calloc(1, sizeof(svn_wc_info_t));
+ result = (struct svn_wc_info_t *)calloc(1, sizeof(struct svn_wc_info_t));
@@ -17091,7 +17239,7 @@ XS(_wrap_new_svn_wc_info_t) {
XS(_wrap_delete_svn_wc_info_t) {
{
- svn_wc_info_t *arg1 = (svn_wc_info_t *) 0 ;
+ struct svn_wc_info_t *arg1 = (struct svn_wc_info_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17102,9 +17250,9 @@ XS(_wrap_delete_svn_wc_info_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_info_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_info_t" "', argument " "1"" of type '" "svn_wc_info_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_info_t" "', argument " "1"" of type '" "struct svn_wc_info_t *""'");
}
- arg1 = (svn_wc_info_t *)(argp1);
+ arg1 = (struct svn_wc_info_t *)(argp1);
{
free((char *) arg1);
@@ -17562,7 +17710,7 @@ XS(_wrap_svn_wc_get_ancestry) {
XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_set) {
{
- svn_wc_entry_callbacks2_t *arg1 = (svn_wc_entry_callbacks2_t *) 0 ;
+ struct svn_wc_entry_callbacks2_t *arg1 = (struct svn_wc_entry_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -17574,9 +17722,9 @@ XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_found_entry_set" "', argument " "1"" of type '" "svn_wc_entry_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_found_entry_set" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks2_t *""'");
}
- arg1 = (svn_wc_entry_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -17598,7 +17746,7 @@ XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_set) {
XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_get) {
{
- svn_wc_entry_callbacks2_t *arg1 = (svn_wc_entry_callbacks2_t *) 0 ;
+ struct svn_wc_entry_callbacks2_t *arg1 = (struct svn_wc_entry_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17610,9 +17758,9 @@ XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_found_entry_get" "', argument " "1"" of type '" "svn_wc_entry_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_found_entry_get" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks2_t *""'");
}
- arg1 = (svn_wc_entry_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *)) ((arg1)->found_entry);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -17626,7 +17774,7 @@ XS(_wrap_svn_wc_entry_callbacks2_t_found_entry_get) {
XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_set) {
{
- svn_wc_entry_callbacks2_t *arg1 = (svn_wc_entry_callbacks2_t *) 0 ;
+ struct svn_wc_entry_callbacks2_t *arg1 = (struct svn_wc_entry_callbacks2_t *) 0 ;
svn_error_t *(*arg2)(char const *,svn_error_t *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,svn_error_t *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -17638,9 +17786,9 @@ XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_handle_error_set" "', argument " "1"" of type '" "svn_wc_entry_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_handle_error_set" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks2_t *""'");
}
- arg1 = (svn_wc_entry_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks2_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_svn_error_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -17662,7 +17810,7 @@ XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_set) {
XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_get) {
{
- svn_wc_entry_callbacks2_t *arg1 = (svn_wc_entry_callbacks2_t *) 0 ;
+ struct svn_wc_entry_callbacks2_t *arg1 = (struct svn_wc_entry_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17674,9 +17822,9 @@ XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_handle_error_get" "', argument " "1"" of type '" "svn_wc_entry_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks2_t_handle_error_get" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks2_t *""'");
}
- arg1 = (svn_wc_entry_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks2_t *)(argp1);
result = (svn_error_t *(*)(char const *,svn_error_t *,void *,apr_pool_t *)) ((arg1)->handle_error);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_svn_error_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -17691,14 +17839,14 @@ XS(_wrap_svn_wc_entry_callbacks2_t_handle_error_get) {
XS(_wrap_new_svn_wc_entry_callbacks2_t) {
{
int argvi = 0;
- svn_wc_entry_callbacks2_t *result = 0 ;
+ struct svn_wc_entry_callbacks2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_entry_callbacks2_t();");
}
{
- result = (svn_wc_entry_callbacks2_t *)calloc(1, sizeof(svn_wc_entry_callbacks2_t));
+ result = (struct svn_wc_entry_callbacks2_t *)calloc(1, sizeof(struct svn_wc_entry_callbacks2_t));
@@ -17713,7 +17861,7 @@ XS(_wrap_new_svn_wc_entry_callbacks2_t) {
XS(_wrap_delete_svn_wc_entry_callbacks2_t) {
{
- svn_wc_entry_callbacks2_t *arg1 = (svn_wc_entry_callbacks2_t *) 0 ;
+ struct svn_wc_entry_callbacks2_t *arg1 = (struct svn_wc_entry_callbacks2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17724,9 +17872,9 @@ XS(_wrap_delete_svn_wc_entry_callbacks2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_callbacks2_t" "', argument " "1"" of type '" "svn_wc_entry_callbacks2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_callbacks2_t" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks2_t *""'");
}
- arg1 = (svn_wc_entry_callbacks2_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks2_t *)(argp1);
{
free((char *) arg1);
@@ -17745,7 +17893,7 @@ XS(_wrap_delete_svn_wc_entry_callbacks2_t) {
XS(_wrap_svn_wc_entry_callbacks_t_found_entry_set) {
{
- svn_wc_entry_callbacks_t *arg1 = (svn_wc_entry_callbacks_t *) 0 ;
+ struct svn_wc_entry_callbacks_t *arg1 = (struct svn_wc_entry_callbacks_t *) 0 ;
svn_error_t *(*arg2)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *) = (svn_error_t *(*)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *)) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -17757,9 +17905,9 @@ XS(_wrap_svn_wc_entry_callbacks_t_found_entry_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks_t_found_entry_set" "', argument " "1"" of type '" "svn_wc_entry_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks_t_found_entry_set" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks_t *""'");
}
- arg1 = (svn_wc_entry_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks_t *)(argp1);
{
int res = SWIG_ConvertFunctionPtr(ST(1), (void**)(&arg2), SWIGTYPE_p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
@@ -17781,7 +17929,7 @@ XS(_wrap_svn_wc_entry_callbacks_t_found_entry_set) {
XS(_wrap_svn_wc_entry_callbacks_t_found_entry_get) {
{
- svn_wc_entry_callbacks_t *arg1 = (svn_wc_entry_callbacks_t *) 0 ;
+ struct svn_wc_entry_callbacks_t *arg1 = (struct svn_wc_entry_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17793,9 +17941,9 @@ XS(_wrap_svn_wc_entry_callbacks_t_found_entry_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks_t_found_entry_get" "', argument " "1"" of type '" "svn_wc_entry_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_entry_callbacks_t_found_entry_get" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks_t *""'");
}
- arg1 = (svn_wc_entry_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks_t *)(argp1);
result = (svn_error_t *(*)(char const *,svn_wc_entry_t const *,void *,apr_pool_t *)) ((arg1)->found_entry);
ST(argvi) = SWIG_NewFunctionPtrObj((void *)(result), SWIGTYPE_p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t); argvi++ ;
@@ -17810,14 +17958,14 @@ XS(_wrap_svn_wc_entry_callbacks_t_found_entry_get) {
XS(_wrap_new_svn_wc_entry_callbacks_t) {
{
int argvi = 0;
- svn_wc_entry_callbacks_t *result = 0 ;
+ struct svn_wc_entry_callbacks_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_entry_callbacks_t();");
}
{
- result = (svn_wc_entry_callbacks_t *)calloc(1, sizeof(svn_wc_entry_callbacks_t));
+ result = (struct svn_wc_entry_callbacks_t *)calloc(1, sizeof(struct svn_wc_entry_callbacks_t));
@@ -17832,7 +17980,7 @@ XS(_wrap_new_svn_wc_entry_callbacks_t) {
XS(_wrap_delete_svn_wc_entry_callbacks_t) {
{
- svn_wc_entry_callbacks_t *arg1 = (svn_wc_entry_callbacks_t *) 0 ;
+ struct svn_wc_entry_callbacks_t *arg1 = (struct svn_wc_entry_callbacks_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -17843,9 +17991,9 @@ XS(_wrap_delete_svn_wc_entry_callbacks_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_entry_callbacks_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_callbacks_t" "', argument " "1"" of type '" "svn_wc_entry_callbacks_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_entry_callbacks_t" "', argument " "1"" of type '" "struct svn_wc_entry_callbacks_t *""'");
}
- arg1 = (svn_wc_entry_callbacks_t *)(argp1);
+ arg1 = (struct svn_wc_entry_callbacks_t *)(argp1);
{
free((char *) arg1);
@@ -18775,7 +18923,7 @@ XS(_wrap_svn_wc_maybe_set_repos_root) {
XS(_wrap_svn_wc_status3_t_kind_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -18789,9 +18937,9 @@ XS(_wrap_svn_wc_status3_t_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_kind_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_kind_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -18812,7 +18960,7 @@ XS(_wrap_svn_wc_status3_t_kind_set) {
XS(_wrap_svn_wc_status3_t_kind_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -18824,9 +18972,9 @@ XS(_wrap_svn_wc_status3_t_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_kind_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_kind_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -18840,7 +18988,7 @@ XS(_wrap_svn_wc_status3_t_kind_get) {
XS(_wrap_svn_wc_status3_t_depth_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_depth_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -18854,9 +19002,9 @@ XS(_wrap_svn_wc_status3_t_depth_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_depth_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_depth_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_depth_set" "', argument " "2"" of type '" "svn_depth_t""'");
@@ -18877,7 +19025,7 @@ XS(_wrap_svn_wc_status3_t_depth_set) {
XS(_wrap_svn_wc_status3_t_depth_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -18889,9 +19037,9 @@ XS(_wrap_svn_wc_status3_t_depth_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_depth_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_depth_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_depth_t) ((arg1)->depth);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -18905,7 +19053,7 @@ XS(_wrap_svn_wc_status3_t_depth_get) {
XS(_wrap_svn_wc_status3_t_filesize_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_filesize_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -18919,9 +19067,9 @@ XS(_wrap_svn_wc_status3_t_filesize_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_filesize_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_filesize_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_filesize_set" "', argument " "2"" of type '" "svn_filesize_t""'");
@@ -18942,7 +19090,7 @@ XS(_wrap_svn_wc_status3_t_filesize_set) {
XS(_wrap_svn_wc_status3_t_filesize_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -18954,9 +19102,9 @@ XS(_wrap_svn_wc_status3_t_filesize_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_filesize_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_filesize_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->filesize);
{
char temp[256];
@@ -18975,7 +19123,7 @@ XS(_wrap_svn_wc_status3_t_filesize_get) {
XS(_wrap_svn_wc_status3_t_versioned_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -18989,9 +19137,9 @@ XS(_wrap_svn_wc_status3_t_versioned_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_versioned_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_versioned_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_versioned_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -19012,7 +19160,7 @@ XS(_wrap_svn_wc_status3_t_versioned_set) {
XS(_wrap_svn_wc_status3_t_versioned_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19024,9 +19172,9 @@ XS(_wrap_svn_wc_status3_t_versioned_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_versioned_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_versioned_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_boolean_t) ((arg1)->versioned);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19040,7 +19188,7 @@ XS(_wrap_svn_wc_status3_t_versioned_get) {
XS(_wrap_svn_wc_status3_t_conflicted_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19054,9 +19202,9 @@ XS(_wrap_svn_wc_status3_t_conflicted_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_conflicted_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_conflicted_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_conflicted_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -19077,7 +19225,7 @@ XS(_wrap_svn_wc_status3_t_conflicted_set) {
XS(_wrap_svn_wc_status3_t_conflicted_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19089,9 +19237,9 @@ XS(_wrap_svn_wc_status3_t_conflicted_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_conflicted_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_conflicted_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_boolean_t) ((arg1)->conflicted);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19105,7 +19253,7 @@ XS(_wrap_svn_wc_status3_t_conflicted_get) {
XS(_wrap_svn_wc_status3_t_node_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19119,9 +19267,9 @@ XS(_wrap_svn_wc_status3_t_node_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_node_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_node_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_node_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -19142,7 +19290,7 @@ XS(_wrap_svn_wc_status3_t_node_status_set) {
XS(_wrap_svn_wc_status3_t_node_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19154,9 +19302,9 @@ XS(_wrap_svn_wc_status3_t_node_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_node_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_node_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->node_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19170,7 +19318,7 @@ XS(_wrap_svn_wc_status3_t_node_status_get) {
XS(_wrap_svn_wc_status3_t_text_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19184,9 +19332,9 @@ XS(_wrap_svn_wc_status3_t_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_text_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -19207,7 +19355,7 @@ XS(_wrap_svn_wc_status3_t_text_status_set) {
XS(_wrap_svn_wc_status3_t_text_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19219,9 +19367,9 @@ XS(_wrap_svn_wc_status3_t_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_text_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19235,7 +19383,7 @@ XS(_wrap_svn_wc_status3_t_text_status_get) {
XS(_wrap_svn_wc_status3_t_prop_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19249,9 +19397,9 @@ XS(_wrap_svn_wc_status3_t_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_prop_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -19272,7 +19420,7 @@ XS(_wrap_svn_wc_status3_t_prop_status_set) {
XS(_wrap_svn_wc_status3_t_prop_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19284,9 +19432,9 @@ XS(_wrap_svn_wc_status3_t_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_prop_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19300,7 +19448,7 @@ XS(_wrap_svn_wc_status3_t_prop_status_get) {
XS(_wrap_svn_wc_status3_t_copied_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19314,9 +19462,9 @@ XS(_wrap_svn_wc_status3_t_copied_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_copied_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_copied_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_copied_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -19337,7 +19485,7 @@ XS(_wrap_svn_wc_status3_t_copied_set) {
XS(_wrap_svn_wc_status3_t_copied_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19349,9 +19497,9 @@ XS(_wrap_svn_wc_status3_t_copied_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_copied_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_copied_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_boolean_t) ((arg1)->copied);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19365,7 +19513,7 @@ XS(_wrap_svn_wc_status3_t_copied_get) {
XS(_wrap_svn_wc_status3_t_revision_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19379,9 +19527,9 @@ XS(_wrap_svn_wc_status3_t_revision_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_revision_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_revision_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_revision_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -19402,7 +19550,7 @@ XS(_wrap_svn_wc_status3_t_revision_set) {
XS(_wrap_svn_wc_status3_t_revision_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19414,9 +19562,9 @@ XS(_wrap_svn_wc_status3_t_revision_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_revision_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_revision_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_revnum_t) ((arg1)->revision);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -19430,7 +19578,7 @@ XS(_wrap_svn_wc_status3_t_revision_get) {
XS(_wrap_svn_wc_status3_t_changed_rev_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19444,9 +19592,9 @@ XS(_wrap_svn_wc_status3_t_changed_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_rev_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_rev_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_changed_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -19467,7 +19615,7 @@ XS(_wrap_svn_wc_status3_t_changed_rev_set) {
XS(_wrap_svn_wc_status3_t_changed_rev_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19479,9 +19627,9 @@ XS(_wrap_svn_wc_status3_t_changed_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_rev_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_rev_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_revnum_t) ((arg1)->changed_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -19495,7 +19643,7 @@ XS(_wrap_svn_wc_status3_t_changed_rev_get) {
XS(_wrap_svn_wc_status3_t_changed_date_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19509,9 +19657,9 @@ XS(_wrap_svn_wc_status3_t_changed_date_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_date_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_date_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_changed_date_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -19532,7 +19680,7 @@ XS(_wrap_svn_wc_status3_t_changed_date_set) {
XS(_wrap_svn_wc_status3_t_changed_date_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19544,9 +19692,9 @@ XS(_wrap_svn_wc_status3_t_changed_date_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_date_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_date_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->changed_date);
{
char temp[256];
@@ -19565,7 +19713,7 @@ XS(_wrap_svn_wc_status3_t_changed_date_get) {
XS(_wrap_svn_wc_status3_t_changed_author_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19580,9 +19728,9 @@ XS(_wrap_svn_wc_status3_t_changed_author_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_author_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_author_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_changed_author_set" "', argument " "2"" of type '" "char const *""'");
@@ -19610,7 +19758,7 @@ XS(_wrap_svn_wc_status3_t_changed_author_set) {
XS(_wrap_svn_wc_status3_t_changed_author_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19622,9 +19770,9 @@ XS(_wrap_svn_wc_status3_t_changed_author_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_author_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changed_author_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->changed_author);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -19638,7 +19786,7 @@ XS(_wrap_svn_wc_status3_t_changed_author_get) {
XS(_wrap_svn_wc_status3_t_repos_root_url_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19653,9 +19801,9 @@ XS(_wrap_svn_wc_status3_t_repos_root_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_root_url_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_root_url_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_repos_root_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -19683,7 +19831,7 @@ XS(_wrap_svn_wc_status3_t_repos_root_url_set) {
XS(_wrap_svn_wc_status3_t_repos_root_url_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19695,9 +19843,9 @@ XS(_wrap_svn_wc_status3_t_repos_root_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_root_url_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_root_url_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->repos_root_url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -19711,7 +19859,7 @@ XS(_wrap_svn_wc_status3_t_repos_root_url_get) {
XS(_wrap_svn_wc_status3_t_repos_uuid_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19726,9 +19874,9 @@ XS(_wrap_svn_wc_status3_t_repos_uuid_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_uuid_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_uuid_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_repos_uuid_set" "', argument " "2"" of type '" "char const *""'");
@@ -19756,7 +19904,7 @@ XS(_wrap_svn_wc_status3_t_repos_uuid_set) {
XS(_wrap_svn_wc_status3_t_repos_uuid_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19768,9 +19916,9 @@ XS(_wrap_svn_wc_status3_t_repos_uuid_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_uuid_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_uuid_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->repos_uuid);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -19784,7 +19932,7 @@ XS(_wrap_svn_wc_status3_t_repos_uuid_get) {
XS(_wrap_svn_wc_status3_t_repos_relpath_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19799,9 +19947,9 @@ XS(_wrap_svn_wc_status3_t_repos_relpath_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_relpath_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_relpath_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_repos_relpath_set" "', argument " "2"" of type '" "char const *""'");
@@ -19829,7 +19977,7 @@ XS(_wrap_svn_wc_status3_t_repos_relpath_set) {
XS(_wrap_svn_wc_status3_t_repos_relpath_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19841,9 +19989,9 @@ XS(_wrap_svn_wc_status3_t_repos_relpath_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_relpath_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_relpath_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->repos_relpath);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -19857,7 +20005,7 @@ XS(_wrap_svn_wc_status3_t_repos_relpath_get) {
XS(_wrap_svn_wc_status3_t_switched_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19871,9 +20019,9 @@ XS(_wrap_svn_wc_status3_t_switched_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_switched_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_switched_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_switched_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -19894,7 +20042,7 @@ XS(_wrap_svn_wc_status3_t_switched_set) {
XS(_wrap_svn_wc_status3_t_switched_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19906,9 +20054,9 @@ XS(_wrap_svn_wc_status3_t_switched_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_switched_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_switched_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_boolean_t) ((arg1)->switched);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19922,7 +20070,7 @@ XS(_wrap_svn_wc_status3_t_switched_get) {
XS(_wrap_svn_wc_status3_t_locked_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -19936,9 +20084,9 @@ XS(_wrap_svn_wc_status3_t_locked_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_locked_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_locked_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_locked_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -19959,7 +20107,7 @@ XS(_wrap_svn_wc_status3_t_locked_set) {
XS(_wrap_svn_wc_status3_t_locked_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -19971,9 +20119,9 @@ XS(_wrap_svn_wc_status3_t_locked_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_locked_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_locked_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_boolean_t) ((arg1)->locked);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -19987,7 +20135,7 @@ XS(_wrap_svn_wc_status3_t_locked_get) {
XS(_wrap_svn_wc_status3_t_lock_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_lock_t *arg2 = (svn_lock_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20001,9 +20149,9 @@ XS(_wrap_svn_wc_status3_t_lock_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_lock_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_lock_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_lock_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_lock_set" "', argument " "2"" of type '" "svn_lock_t const *""'");
@@ -20024,7 +20172,7 @@ XS(_wrap_svn_wc_status3_t_lock_set) {
XS(_wrap_svn_wc_status3_t_lock_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20036,9 +20184,9 @@ XS(_wrap_svn_wc_status3_t_lock_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_lock_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_lock_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_lock_t *) ((arg1)->lock);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_lock_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -20052,7 +20200,7 @@ XS(_wrap_svn_wc_status3_t_lock_get) {
XS(_wrap_svn_wc_status3_t_changelist_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20067,9 +20215,9 @@ XS(_wrap_svn_wc_status3_t_changelist_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changelist_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changelist_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_changelist_set" "', argument " "2"" of type '" "char const *""'");
@@ -20097,7 +20245,7 @@ XS(_wrap_svn_wc_status3_t_changelist_set) {
XS(_wrap_svn_wc_status3_t_changelist_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20109,9 +20257,9 @@ XS(_wrap_svn_wc_status3_t_changelist_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changelist_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_changelist_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->changelist);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -20125,7 +20273,7 @@ XS(_wrap_svn_wc_status3_t_changelist_get) {
XS(_wrap_svn_wc_status3_t_ood_kind_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20139,9 +20287,9 @@ XS(_wrap_svn_wc_status3_t_ood_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_kind_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_kind_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_ood_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -20162,7 +20310,7 @@ XS(_wrap_svn_wc_status3_t_ood_kind_set) {
XS(_wrap_svn_wc_status3_t_ood_kind_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20174,9 +20322,9 @@ XS(_wrap_svn_wc_status3_t_ood_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_kind_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_kind_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->ood_kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20190,7 +20338,7 @@ XS(_wrap_svn_wc_status3_t_ood_kind_get) {
XS(_wrap_svn_wc_status3_t_repos_node_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20204,9 +20352,9 @@ XS(_wrap_svn_wc_status3_t_repos_node_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_node_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_node_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_repos_node_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -20227,7 +20375,7 @@ XS(_wrap_svn_wc_status3_t_repos_node_status_set) {
XS(_wrap_svn_wc_status3_t_repos_node_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20239,9 +20387,9 @@ XS(_wrap_svn_wc_status3_t_repos_node_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_node_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_node_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_node_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20255,7 +20403,7 @@ XS(_wrap_svn_wc_status3_t_repos_node_status_get) {
XS(_wrap_svn_wc_status3_t_repos_text_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20269,9 +20417,9 @@ XS(_wrap_svn_wc_status3_t_repos_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_text_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_repos_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -20292,7 +20440,7 @@ XS(_wrap_svn_wc_status3_t_repos_text_status_set) {
XS(_wrap_svn_wc_status3_t_repos_text_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20304,9 +20452,9 @@ XS(_wrap_svn_wc_status3_t_repos_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_text_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20320,7 +20468,7 @@ XS(_wrap_svn_wc_status3_t_repos_text_status_get) {
XS(_wrap_svn_wc_status3_t_repos_prop_status_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20334,9 +20482,9 @@ XS(_wrap_svn_wc_status3_t_repos_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_prop_status_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_repos_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -20357,7 +20505,7 @@ XS(_wrap_svn_wc_status3_t_repos_prop_status_set) {
XS(_wrap_svn_wc_status3_t_repos_prop_status_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20369,9 +20517,9 @@ XS(_wrap_svn_wc_status3_t_repos_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_prop_status_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20385,7 +20533,7 @@ XS(_wrap_svn_wc_status3_t_repos_prop_status_get) {
XS(_wrap_svn_wc_status3_t_repos_lock_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_lock_t *arg2 = (svn_lock_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20399,9 +20547,9 @@ XS(_wrap_svn_wc_status3_t_repos_lock_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_lock_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_lock_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_lock_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_repos_lock_set" "', argument " "2"" of type '" "svn_lock_t const *""'");
@@ -20422,7 +20570,7 @@ XS(_wrap_svn_wc_status3_t_repos_lock_set) {
XS(_wrap_svn_wc_status3_t_repos_lock_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20434,9 +20582,9 @@ XS(_wrap_svn_wc_status3_t_repos_lock_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_lock_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_repos_lock_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_lock_t *) ((arg1)->repos_lock);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_lock_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -20450,7 +20598,7 @@ XS(_wrap_svn_wc_status3_t_repos_lock_get) {
XS(_wrap_svn_wc_status3_t_ood_changed_rev_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20464,9 +20612,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_rev_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_rev_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_ood_changed_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -20487,7 +20635,7 @@ XS(_wrap_svn_wc_status3_t_ood_changed_rev_set) {
XS(_wrap_svn_wc_status3_t_ood_changed_rev_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20499,9 +20647,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_rev_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_rev_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (svn_revnum_t) ((arg1)->ood_changed_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -20515,7 +20663,7 @@ XS(_wrap_svn_wc_status3_t_ood_changed_rev_get) {
XS(_wrap_svn_wc_status3_t_ood_changed_date_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20529,9 +20677,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_date_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_date_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_date_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_ood_changed_date_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -20552,7 +20700,7 @@ XS(_wrap_svn_wc_status3_t_ood_changed_date_set) {
XS(_wrap_svn_wc_status3_t_ood_changed_date_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20564,9 +20712,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_date_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_date_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_date_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = ((arg1)->ood_changed_date);
{
char temp[256];
@@ -20585,7 +20733,7 @@ XS(_wrap_svn_wc_status3_t_ood_changed_date_get) {
XS(_wrap_svn_wc_status3_t_ood_changed_author_set) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20600,9 +20748,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_author_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_author_set" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_author_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_ood_changed_author_set" "', argument " "2"" of type '" "char const *""'");
@@ -20630,7 +20778,7 @@ XS(_wrap_svn_wc_status3_t_ood_changed_author_set) {
XS(_wrap_svn_wc_status3_t_ood_changed_author_get) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20642,9 +20790,9 @@ XS(_wrap_svn_wc_status3_t_ood_changed_author_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_author_get" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_ood_changed_author_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
result = (char *) ((arg1)->ood_changed_author);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -20656,17 +20804,228 @@ XS(_wrap_svn_wc_status3_t_ood_changed_author_get) {
}
+XS(_wrap_svn_wc_status3_t_moved_from_abspath_set) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_status3_t_moved_from_abspath_set(self,moved_from_abspath);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_moved_from_abspath_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_moved_from_abspath_set" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ apr_size_t len = strlen(arg2) + 1;
+ char *copied;
+ if (arg1->moved_from_abspath) free((char *)arg1->moved_from_abspath);
+ copied = malloc(len);
+ memcpy(copied, arg2, len);
+ arg1->moved_from_abspath = copied;
+ }
+ ST(argvi) = sv_newmortal();
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_moved_from_abspath_get) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ char *result = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_status3_t_moved_from_abspath_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_moved_from_abspath_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ result = (char *) ((arg1)->moved_from_abspath);
+ ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_moved_to_abspath_set) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_status3_t_moved_to_abspath_set(self,moved_to_abspath);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_moved_to_abspath_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status3_t_moved_to_abspath_set" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ apr_size_t len = strlen(arg2) + 1;
+ char *copied;
+ if (arg1->moved_to_abspath) free((char *)arg1->moved_to_abspath);
+ copied = malloc(len);
+ memcpy(copied, arg2, len);
+ arg1->moved_to_abspath = copied;
+ }
+ ST(argvi) = sv_newmortal();
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_moved_to_abspath_get) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ char *result = 0 ;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_status3_t_moved_to_abspath_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_moved_to_abspath_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ result = (char *) ((arg1)->moved_to_abspath);
+ ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_file_external_set) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ svn_boolean_t arg2 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int val2 ;
+ int ecode2 = 0 ;
+ int argvi = 0;
+ dXSARGS;
+
+ if ((items < 2) || (items > 2)) {
+ SWIG_croak("Usage: svn_wc_status3_t_file_external_set(self,file_external);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_file_external_set" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
+ if (!SWIG_IsOK(ecode2)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status3_t_file_external_set" "', argument " "2"" of type '" "svn_boolean_t""'");
+ }
+ arg2 = (svn_boolean_t)(val2);
+ if (arg1) (arg1)->file_external = arg2;
+ ST(argvi) = sv_newmortal();
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ SWIG_croak_null();
+ }
+}
+
+
+XS(_wrap_svn_wc_status3_t_file_external_get) {
+ {
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int argvi = 0;
+ svn_boolean_t result;
+ dXSARGS;
+
+ if ((items < 1) || (items > 1)) {
+ SWIG_croak("Usage: svn_wc_status3_t_file_external_get(self);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status3_t_file_external_get" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
+ }
+ arg1 = (struct svn_wc_status3_t *)(argp1);
+ result = (svn_boolean_t) ((arg1)->file_external);
+ ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
+
+ XSRETURN(argvi);
+ fail:
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_new_svn_wc_status3_t) {
{
int argvi = 0;
- svn_wc_status3_t *result = 0 ;
+ struct svn_wc_status3_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_status3_t();");
}
{
- result = (svn_wc_status3_t *)calloc(1, sizeof(svn_wc_status3_t));
+ result = (struct svn_wc_status3_t *)calloc(1, sizeof(struct svn_wc_status3_t));
@@ -20681,7 +21040,7 @@ XS(_wrap_new_svn_wc_status3_t) {
XS(_wrap_delete_svn_wc_status3_t) {
{
- svn_wc_status3_t *arg1 = (svn_wc_status3_t *) 0 ;
+ struct svn_wc_status3_t *arg1 = (struct svn_wc_status3_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20692,9 +21051,9 @@ XS(_wrap_delete_svn_wc_status3_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status3_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status3_t" "', argument " "1"" of type '" "svn_wc_status3_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status3_t" "', argument " "1"" of type '" "struct svn_wc_status3_t *""'");
}
- arg1 = (svn_wc_status3_t *)(argp1);
+ arg1 = (struct svn_wc_status3_t *)(argp1);
{
free((char *) arg1);
@@ -20713,7 +21072,7 @@ XS(_wrap_delete_svn_wc_status3_t) {
XS(_wrap_svn_wc_status2_t_entry_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_wc_entry_t *arg2 = (svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20727,9 +21086,9 @@ XS(_wrap_svn_wc_status2_t_entry_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_entry_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_entry_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_entry_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status2_t_entry_set" "', argument " "2"" of type '" "svn_wc_entry_t const *""'");
@@ -20750,7 +21109,7 @@ XS(_wrap_svn_wc_status2_t_entry_set) {
XS(_wrap_svn_wc_status2_t_entry_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20762,9 +21121,9 @@ XS(_wrap_svn_wc_status2_t_entry_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_entry_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_entry_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_wc_entry_t *) ((arg1)->entry);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_entry_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -20778,7 +21137,7 @@ XS(_wrap_svn_wc_status2_t_entry_get) {
XS(_wrap_svn_wc_status2_t_text_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20792,9 +21151,9 @@ XS(_wrap_svn_wc_status2_t_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_text_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -20815,7 +21174,7 @@ XS(_wrap_svn_wc_status2_t_text_status_set) {
XS(_wrap_svn_wc_status2_t_text_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20827,9 +21186,9 @@ XS(_wrap_svn_wc_status2_t_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_text_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20843,7 +21202,7 @@ XS(_wrap_svn_wc_status2_t_text_status_get) {
XS(_wrap_svn_wc_status2_t_prop_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20857,9 +21216,9 @@ XS(_wrap_svn_wc_status2_t_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_prop_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -20880,7 +21239,7 @@ XS(_wrap_svn_wc_status2_t_prop_status_set) {
XS(_wrap_svn_wc_status2_t_prop_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20892,9 +21251,9 @@ XS(_wrap_svn_wc_status2_t_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_prop_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20908,7 +21267,7 @@ XS(_wrap_svn_wc_status2_t_prop_status_get) {
XS(_wrap_svn_wc_status2_t_locked_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20922,9 +21281,9 @@ XS(_wrap_svn_wc_status2_t_locked_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_locked_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_locked_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_locked_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -20945,7 +21304,7 @@ XS(_wrap_svn_wc_status2_t_locked_set) {
XS(_wrap_svn_wc_status2_t_locked_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -20957,9 +21316,9 @@ XS(_wrap_svn_wc_status2_t_locked_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_locked_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_locked_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_boolean_t) ((arg1)->locked);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -20973,7 +21332,7 @@ XS(_wrap_svn_wc_status2_t_locked_get) {
XS(_wrap_svn_wc_status2_t_copied_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -20987,9 +21346,9 @@ XS(_wrap_svn_wc_status2_t_copied_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_copied_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_copied_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_copied_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -21010,7 +21369,7 @@ XS(_wrap_svn_wc_status2_t_copied_set) {
XS(_wrap_svn_wc_status2_t_copied_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21022,9 +21381,9 @@ XS(_wrap_svn_wc_status2_t_copied_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_copied_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_copied_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_boolean_t) ((arg1)->copied);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21038,7 +21397,7 @@ XS(_wrap_svn_wc_status2_t_copied_get) {
XS(_wrap_svn_wc_status2_t_switched_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21052,9 +21411,9 @@ XS(_wrap_svn_wc_status2_t_switched_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_switched_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_switched_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_switched_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -21075,7 +21434,7 @@ XS(_wrap_svn_wc_status2_t_switched_set) {
XS(_wrap_svn_wc_status2_t_switched_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21087,9 +21446,9 @@ XS(_wrap_svn_wc_status2_t_switched_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_switched_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_switched_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_boolean_t) ((arg1)->switched);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21103,7 +21462,7 @@ XS(_wrap_svn_wc_status2_t_switched_get) {
XS(_wrap_svn_wc_status2_t_repos_text_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21117,9 +21476,9 @@ XS(_wrap_svn_wc_status2_t_repos_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_text_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_repos_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -21140,7 +21499,7 @@ XS(_wrap_svn_wc_status2_t_repos_text_status_set) {
XS(_wrap_svn_wc_status2_t_repos_text_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21152,9 +21511,9 @@ XS(_wrap_svn_wc_status2_t_repos_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_text_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21168,7 +21527,7 @@ XS(_wrap_svn_wc_status2_t_repos_text_status_get) {
XS(_wrap_svn_wc_status2_t_repos_prop_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21182,9 +21541,9 @@ XS(_wrap_svn_wc_status2_t_repos_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_prop_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_repos_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -21205,7 +21564,7 @@ XS(_wrap_svn_wc_status2_t_repos_prop_status_set) {
XS(_wrap_svn_wc_status2_t_repos_prop_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21217,9 +21576,9 @@ XS(_wrap_svn_wc_status2_t_repos_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_prop_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21233,7 +21592,7 @@ XS(_wrap_svn_wc_status2_t_repos_prop_status_get) {
XS(_wrap_svn_wc_status2_t_repos_lock_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_lock_t *arg2 = (svn_lock_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21247,9 +21606,9 @@ XS(_wrap_svn_wc_status2_t_repos_lock_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_lock_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_lock_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_lock_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status2_t_repos_lock_set" "', argument " "2"" of type '" "svn_lock_t *""'");
@@ -21270,7 +21629,7 @@ XS(_wrap_svn_wc_status2_t_repos_lock_set) {
XS(_wrap_svn_wc_status2_t_repos_lock_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21282,9 +21641,9 @@ XS(_wrap_svn_wc_status2_t_repos_lock_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_lock_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_repos_lock_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_lock_t *) ((arg1)->repos_lock);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_lock_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -21298,7 +21657,7 @@ XS(_wrap_svn_wc_status2_t_repos_lock_get) {
XS(_wrap_svn_wc_status2_t_url_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21313,9 +21672,9 @@ XS(_wrap_svn_wc_status2_t_url_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_url_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_url_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status2_t_url_set" "', argument " "2"" of type '" "char const *""'");
@@ -21343,7 +21702,7 @@ XS(_wrap_svn_wc_status2_t_url_set) {
XS(_wrap_svn_wc_status2_t_url_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21355,9 +21714,9 @@ XS(_wrap_svn_wc_status2_t_url_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_url_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_url_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (char *) ((arg1)->url);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -21371,7 +21730,7 @@ XS(_wrap_svn_wc_status2_t_url_get) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21385,9 +21744,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_rev_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_rev_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_ood_last_cmt_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -21408,7 +21767,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_set) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21420,9 +21779,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_rev_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_rev_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_revnum_t) ((arg1)->ood_last_cmt_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -21436,7 +21795,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_rev_get) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
apr_time_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21450,9 +21809,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_date_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_date_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_long_SS_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_ood_last_cmt_date_set" "', argument " "2"" of type '" "apr_time_t""'");
@@ -21473,7 +21832,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_set) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21485,9 +21844,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_date_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_date_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = ((arg1)->ood_last_cmt_date);
{
char temp[256];
@@ -21506,7 +21865,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_date_get) {
XS(_wrap_svn_wc_status2_t_ood_kind_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_node_kind_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21520,9 +21879,9 @@ XS(_wrap_svn_wc_status2_t_ood_kind_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_kind_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_kind_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_ood_kind_set" "', argument " "2"" of type '" "svn_node_kind_t""'");
@@ -21543,7 +21902,7 @@ XS(_wrap_svn_wc_status2_t_ood_kind_set) {
XS(_wrap_svn_wc_status2_t_ood_kind_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21555,9 +21914,9 @@ XS(_wrap_svn_wc_status2_t_ood_kind_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_kind_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_kind_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_node_kind_t) ((arg1)->ood_kind);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21571,7 +21930,7 @@ XS(_wrap_svn_wc_status2_t_ood_kind_get) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
char *arg2 = (char *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21586,9 +21945,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_author_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_author_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status2_t_ood_last_cmt_author_set" "', argument " "2"" of type '" "char const *""'");
@@ -21616,7 +21975,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_set) {
XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21628,9 +21987,9 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_author_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_ood_last_cmt_author_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (char *) ((arg1)->ood_last_cmt_author);
ST(argvi) = SWIG_FromCharPtr((const char *)result); argvi++ ;
@@ -21644,7 +22003,7 @@ XS(_wrap_svn_wc_status2_t_ood_last_cmt_author_get) {
XS(_wrap_svn_wc_status2_t_tree_conflict_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_wc_conflict_description_t *arg2 = (svn_wc_conflict_description_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21658,9 +22017,9 @@ XS(_wrap_svn_wc_status2_t_tree_conflict_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_tree_conflict_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_tree_conflict_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_conflict_description_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status2_t_tree_conflict_set" "', argument " "2"" of type '" "svn_wc_conflict_description_t *""'");
@@ -21681,7 +22040,7 @@ XS(_wrap_svn_wc_status2_t_tree_conflict_set) {
XS(_wrap_svn_wc_status2_t_tree_conflict_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21693,9 +22052,9 @@ XS(_wrap_svn_wc_status2_t_tree_conflict_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_tree_conflict_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_tree_conflict_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_wc_conflict_description_t *) ((arg1)->tree_conflict);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_conflict_description_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -21709,7 +22068,7 @@ XS(_wrap_svn_wc_status2_t_tree_conflict_get) {
XS(_wrap_svn_wc_status2_t_file_external_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21723,9 +22082,9 @@ XS(_wrap_svn_wc_status2_t_file_external_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_file_external_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_file_external_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_file_external_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -21746,7 +22105,7 @@ XS(_wrap_svn_wc_status2_t_file_external_set) {
XS(_wrap_svn_wc_status2_t_file_external_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21758,9 +22117,9 @@ XS(_wrap_svn_wc_status2_t_file_external_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_file_external_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_file_external_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (svn_boolean_t) ((arg1)->file_external);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21774,7 +22133,7 @@ XS(_wrap_svn_wc_status2_t_file_external_get) {
XS(_wrap_svn_wc_status2_t_pristine_text_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21788,9 +22147,9 @@ XS(_wrap_svn_wc_status2_t_pristine_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_text_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_pristine_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -21811,7 +22170,7 @@ XS(_wrap_svn_wc_status2_t_pristine_text_status_set) {
XS(_wrap_svn_wc_status2_t_pristine_text_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21823,9 +22182,9 @@ XS(_wrap_svn_wc_status2_t_pristine_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_text_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->pristine_text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21839,7 +22198,7 @@ XS(_wrap_svn_wc_status2_t_pristine_text_status_get) {
XS(_wrap_svn_wc_status2_t_pristine_prop_status_set) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21853,9 +22212,9 @@ XS(_wrap_svn_wc_status2_t_pristine_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_prop_status_set" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status2_t_pristine_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -21876,7 +22235,7 @@ XS(_wrap_svn_wc_status2_t_pristine_prop_status_set) {
XS(_wrap_svn_wc_status2_t_pristine_prop_status_get) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21888,9 +22247,9 @@ XS(_wrap_svn_wc_status2_t_pristine_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_prop_status_get" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status2_t_pristine_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->pristine_prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -21905,14 +22264,14 @@ XS(_wrap_svn_wc_status2_t_pristine_prop_status_get) {
XS(_wrap_new_svn_wc_status2_t) {
{
int argvi = 0;
- svn_wc_status2_t *result = 0 ;
+ struct svn_wc_status2_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_status2_t();");
}
{
- result = (svn_wc_status2_t *)calloc(1, sizeof(svn_wc_status2_t));
+ result = (struct svn_wc_status2_t *)calloc(1, sizeof(struct svn_wc_status2_t));
@@ -21927,7 +22286,7 @@ XS(_wrap_new_svn_wc_status2_t) {
XS(_wrap_delete_svn_wc_status2_t) {
{
- svn_wc_status2_t *arg1 = (svn_wc_status2_t *) 0 ;
+ struct svn_wc_status2_t *arg1 = (struct svn_wc_status2_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -21938,9 +22297,9 @@ XS(_wrap_delete_svn_wc_status2_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status2_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status2_t" "', argument " "1"" of type '" "svn_wc_status2_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status2_t" "', argument " "1"" of type '" "struct svn_wc_status2_t *""'");
}
- arg1 = (svn_wc_status2_t *)(argp1);
+ arg1 = (struct svn_wc_status2_t *)(argp1);
{
free((char *) arg1);
@@ -21959,7 +22318,7 @@ XS(_wrap_delete_svn_wc_status2_t) {
XS(_wrap_svn_wc_status_t_entry_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
svn_wc_entry_t *arg2 = (svn_wc_entry_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -21973,9 +22332,9 @@ XS(_wrap_svn_wc_status_t_entry_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_entry_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_entry_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
res2 = SWIG_ConvertPtr(ST(1), &argp2,SWIGTYPE_p_svn_wc_entry_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_status_t_entry_set" "', argument " "2"" of type '" "svn_wc_entry_t const *""'");
@@ -21996,7 +22355,7 @@ XS(_wrap_svn_wc_status_t_entry_set) {
XS(_wrap_svn_wc_status_t_entry_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22008,9 +22367,9 @@ XS(_wrap_svn_wc_status_t_entry_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_entry_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_entry_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (svn_wc_entry_t *) ((arg1)->entry);
ST(argvi) = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_wc_entry_t, 0 | SWIG_SHADOW); argvi++ ;
@@ -22024,7 +22383,7 @@ XS(_wrap_svn_wc_status_t_entry_get) {
XS(_wrap_svn_wc_status_t_text_status_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22038,9 +22397,9 @@ XS(_wrap_svn_wc_status_t_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_text_status_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -22061,7 +22420,7 @@ XS(_wrap_svn_wc_status_t_text_status_set) {
XS(_wrap_svn_wc_status_t_text_status_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22073,9 +22432,9 @@ XS(_wrap_svn_wc_status_t_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_text_status_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22089,7 +22448,7 @@ XS(_wrap_svn_wc_status_t_text_status_get) {
XS(_wrap_svn_wc_status_t_prop_status_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22103,9 +22462,9 @@ XS(_wrap_svn_wc_status_t_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_prop_status_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -22126,7 +22485,7 @@ XS(_wrap_svn_wc_status_t_prop_status_set) {
XS(_wrap_svn_wc_status_t_prop_status_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22138,9 +22497,9 @@ XS(_wrap_svn_wc_status_t_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_prop_status_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22154,7 +22513,7 @@ XS(_wrap_svn_wc_status_t_prop_status_get) {
XS(_wrap_svn_wc_status_t_locked_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22168,9 +22527,9 @@ XS(_wrap_svn_wc_status_t_locked_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_locked_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_locked_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_locked_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -22191,7 +22550,7 @@ XS(_wrap_svn_wc_status_t_locked_set) {
XS(_wrap_svn_wc_status_t_locked_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22203,9 +22562,9 @@ XS(_wrap_svn_wc_status_t_locked_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_locked_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_locked_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->locked);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22219,7 +22578,7 @@ XS(_wrap_svn_wc_status_t_locked_get) {
XS(_wrap_svn_wc_status_t_copied_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22233,9 +22592,9 @@ XS(_wrap_svn_wc_status_t_copied_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_copied_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_copied_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_copied_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -22256,7 +22615,7 @@ XS(_wrap_svn_wc_status_t_copied_set) {
XS(_wrap_svn_wc_status_t_copied_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22268,9 +22627,9 @@ XS(_wrap_svn_wc_status_t_copied_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_copied_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_copied_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->copied);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22284,7 +22643,7 @@ XS(_wrap_svn_wc_status_t_copied_get) {
XS(_wrap_svn_wc_status_t_switched_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22298,9 +22657,9 @@ XS(_wrap_svn_wc_status_t_switched_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_switched_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_switched_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_switched_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -22321,7 +22680,7 @@ XS(_wrap_svn_wc_status_t_switched_set) {
XS(_wrap_svn_wc_status_t_switched_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22333,9 +22692,9 @@ XS(_wrap_svn_wc_status_t_switched_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_switched_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_switched_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->switched);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22349,7 +22708,7 @@ XS(_wrap_svn_wc_status_t_switched_get) {
XS(_wrap_svn_wc_status_t_repos_text_status_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22363,9 +22722,9 @@ XS(_wrap_svn_wc_status_t_repos_text_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_text_status_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_text_status_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_repos_text_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -22386,7 +22745,7 @@ XS(_wrap_svn_wc_status_t_repos_text_status_set) {
XS(_wrap_svn_wc_status_t_repos_text_status_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22398,9 +22757,9 @@ XS(_wrap_svn_wc_status_t_repos_text_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_text_status_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_text_status_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_text_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22414,7 +22773,7 @@ XS(_wrap_svn_wc_status_t_repos_text_status_get) {
XS(_wrap_svn_wc_status_t_repos_prop_status_set) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
enum svn_wc_status_kind arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -22428,9 +22787,9 @@ XS(_wrap_svn_wc_status_t_repos_prop_status_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_prop_status_set" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_prop_status_set" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_status_t_repos_prop_status_set" "', argument " "2"" of type '" "enum svn_wc_status_kind""'");
@@ -22451,7 +22810,7 @@ XS(_wrap_svn_wc_status_t_repos_prop_status_set) {
XS(_wrap_svn_wc_status_t_repos_prop_status_get) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22463,9 +22822,9 @@ XS(_wrap_svn_wc_status_t_repos_prop_status_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_prop_status_get" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_status_t_repos_prop_status_get" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
result = (enum svn_wc_status_kind) ((arg1)->repos_prop_status);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -22480,14 +22839,14 @@ XS(_wrap_svn_wc_status_t_repos_prop_status_get) {
XS(_wrap_new_svn_wc_status_t) {
{
int argvi = 0;
- svn_wc_status_t *result = 0 ;
+ struct svn_wc_status_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_status_t();");
}
{
- result = (svn_wc_status_t *)calloc(1, sizeof(svn_wc_status_t));
+ result = (struct svn_wc_status_t *)calloc(1, sizeof(struct svn_wc_status_t));
@@ -22502,7 +22861,7 @@ XS(_wrap_new_svn_wc_status_t) {
XS(_wrap_delete_svn_wc_status_t) {
{
- svn_wc_status_t *arg1 = (svn_wc_status_t *) 0 ;
+ struct svn_wc_status_t *arg1 = (struct svn_wc_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -22513,9 +22872,9 @@ XS(_wrap_delete_svn_wc_status_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_status_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status_t" "', argument " "1"" of type '" "svn_wc_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_status_t" "', argument " "1"" of type '" "struct svn_wc_status_t *""'");
}
- arg1 = (svn_wc_status_t *)(argp1);
+ arg1 = (struct svn_wc_status_t *)(argp1);
{
free((char *) arg1);
@@ -23316,7 +23675,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
int ecode9 = 0 ;
void *argp10 = 0 ;
int res10 = 0 ;
- int res12 ;
int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
@@ -23331,7 +23689,7 @@ XS(_wrap_svn_wc_get_status_editor4) {
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_status_editor4(anchor,target,depth,get_all,no_ignore,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -23365,31 +23723,25 @@ XS(_wrap_svn_wc_get_status_editor4) {
}
arg10 = (apr_array_header_t *)(argp10);
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg11), SWIGTYPE_p_f_p_void_p_q_const__char_p_svn_wc_status2_t_p_apr_pool_t__p_svn_error_t);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor4" "', argument " "11"" of type '" "svn_wc_status_func3_t""'");
- }
- }
- res12 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg12), 0, 0);
- if (!SWIG_IsOK(res12)) {
- SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_get_status_editor4" "', argument " "12"" of type '" "void *""'");
+ arg11 = svn_swig_pl_status_func3;
+ arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor4" "', argument " "13"" of type '" "svn_cancel_func_t""'");
}
}
- res14 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg14), 0, 0);
+ res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor4" "', argument " "14"" of type '" "void *""'");
}
- res15 = SWIG_ConvertPtr(ST(10), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor4" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -23443,8 +23795,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
-
-
XSRETURN(argvi);
fail:
@@ -23461,8 +23811,6 @@ XS(_wrap_svn_wc_get_status_editor4) {
-
-
SWIG_croak_null();
}
}
@@ -23505,7 +23853,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
int ecode9 = 0 ;
void *argp10 = 0 ;
int res10 = 0 ;
- int res12 ;
int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
@@ -23520,7 +23867,7 @@ XS(_wrap_svn_wc_get_status_editor3) {
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_status_editor3(anchor,target,depth,get_all,no_ignore,ignore_patterns,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -23554,31 +23901,25 @@ XS(_wrap_svn_wc_get_status_editor3) {
}
arg10 = (apr_array_header_t *)(argp10);
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg11), SWIGTYPE_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor3" "', argument " "11"" of type '" "svn_wc_status_func2_t""'");
- }
- }
- res12 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg12), 0, 0);
- if (!SWIG_IsOK(res12)) {
- SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_get_status_editor3" "', argument " "12"" of type '" "void *""'");
+ arg11 = svn_swig_pl_status_func2;
+ arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor3" "', argument " "13"" of type '" "svn_cancel_func_t""'");
}
}
- res14 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg14), 0, 0);
+ res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor3" "', argument " "14"" of type '" "void *""'");
}
- res15 = SWIG_ConvertPtr(ST(10), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor3" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -23632,8 +23973,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
-
-
XSRETURN(argvi);
fail:
@@ -23650,8 +23989,6 @@ XS(_wrap_svn_wc_get_status_editor3) {
-
-
SWIG_croak_null();
}
}
@@ -23692,7 +24029,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
int ecode9 = 0 ;
int val10 ;
int ecode10 = 0 ;
- int res12 ;
int res14 ;
void *argp15 = 0 ;
int res15 = 0 ;
@@ -23707,7 +24043,7 @@ XS(_wrap_svn_wc_get_status_editor2) {
arg2 = &temp2;
arg3 = &temp3;
arg4 = &temp4;
- if ((items < 11) || (items > 12)) {
+ if ((items < 10) || (items > 11)) {
SWIG_croak("Usage: svn_wc_get_status_editor2(anchor,target,config,recurse,get_all,no_ignore,status_func,status_baton,cancel_func,cancel_baton,traversal_info,pool);");
}
res5 = SWIG_ConvertPtr(ST(0), &argp5,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
@@ -23740,31 +24076,25 @@ XS(_wrap_svn_wc_get_status_editor2) {
}
arg10 = (svn_boolean_t)(val10);
{
- int res = SWIG_ConvertFunctionPtr(ST(6), (void**)(&arg11), SWIGTYPE_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void);
- if (!SWIG_IsOK(res)) {
- SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor2" "', argument " "11"" of type '" "svn_wc_status_func2_t""'");
- }
- }
- res12 = SWIG_ConvertPtr(ST(7),SWIG_as_voidptrptr(&arg12), 0, 0);
- if (!SWIG_IsOK(res12)) {
- SWIG_exception_fail(SWIG_ArgError(res12), "in method '" "svn_wc_get_status_editor2" "', argument " "12"" of type '" "void *""'");
+ arg11 = svn_swig_pl_status_func2;
+ arg12 = ST(6);
}
{
- int res = SWIG_ConvertFunctionPtr(ST(8), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ int res = SWIG_ConvertFunctionPtr(ST(7), (void**)(&arg13), SWIGTYPE_p_f_p_void__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_get_status_editor2" "', argument " "13"" of type '" "svn_cancel_func_t""'");
}
}
- res14 = SWIG_ConvertPtr(ST(9),SWIG_as_voidptrptr(&arg14), 0, 0);
+ res14 = SWIG_ConvertPtr(ST(8),SWIG_as_voidptrptr(&arg14), 0, 0);
if (!SWIG_IsOK(res14)) {
SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_get_status_editor2" "', argument " "14"" of type '" "void *""'");
}
- res15 = SWIG_ConvertPtr(ST(10), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
+ res15 = SWIG_ConvertPtr(ST(9), &argp15,SWIGTYPE_p_svn_wc_traversal_info_t, 0 | 0 );
if (!SWIG_IsOK(res15)) {
SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_get_status_editor2" "', argument " "15"" of type '" "svn_wc_traversal_info_t *""'");
}
arg15 = (svn_wc_traversal_info_t *)(argp15);
- if (items > 11) {
+ if (items > 10) {
}
{
@@ -23818,8 +24148,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
-
-
XSRETURN(argvi);
fail:
@@ -23836,8 +24164,6 @@ XS(_wrap_svn_wc_get_status_editor2) {
-
-
SWIG_croak_null();
}
}
@@ -25005,6 +25331,100 @@ XS(_wrap_svn_wc_delete) {
}
+XS(_wrap_svn_wc_add_from_disk2) {
+ {
+ svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
+ char *arg2 = (char *) 0 ;
+ apr_hash_t *arg3 = (apr_hash_t *) 0 ;
+ svn_wc_notify_func2_t arg4 = (svn_wc_notify_func2_t) 0 ;
+ void *arg5 = (void *) 0 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ void *argp1 = 0 ;
+ int res1 = 0 ;
+ int res2 ;
+ char *buf2 = 0 ;
+ int alloc2 = 0 ;
+ int res5 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ if ((items < 5) || (items > 6)) {
+ SWIG_croak("Usage: svn_wc_add_from_disk2(wc_ctx,local_abspath,props,notify_func,notify_baton,scratch_pool);");
+ }
+ res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res1)) {
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_add_from_disk2" "', argument " "1"" of type '" "svn_wc_context_t *""'");
+ }
+ arg1 = (svn_wc_context_t *)(argp1);
+ res2 = SWIG_AsCharPtrAndSize(ST(1), &buf2, NULL, &alloc2);
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_add_from_disk2" "', argument " "2"" of type '" "char const *""'");
+ }
+ arg2 = (char *)(buf2);
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg3 = svn_swig_pl_hash_to_prophash(ST(2), _global_pool);
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(3), (void**)(&arg4), SWIGTYPE_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_add_from_disk2" "', argument " "4"" of type '" "svn_wc_notify_func2_t""'");
+ }
+ }
+ res5 = SWIG_ConvertPtr(ST(4),SWIG_as_voidptrptr(&arg5), 0, 0);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_add_from_disk2" "', argument " "5"" of type '" "void *""'");
+ }
+ if (items > 5) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_add_from_disk2(arg1,(char const *)arg2,(apr_hash_t 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++;
+ }
+ }
+ }
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+ if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_add_from_disk) {
{
svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
@@ -25626,10 +26046,6 @@ XS(_wrap_svn_wc_add_repos_file4) {
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
- void *argp5 = 0 ;
- int res5 = 0 ;
- void *argp6 = 0 ;
- int res6 = 0 ;
int res7 ;
char *buf7 = 0 ;
int alloc7 = 0 ;
@@ -25662,16 +26078,16 @@ XS(_wrap_svn_wc_add_repos_file4) {
{
svn_swig_pl_make_stream (&arg4, ST(3));
}
- res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_add_repos_file4" "', argument " "5"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
- arg5 = (apr_hash_t *)(argp5);
- res6 = SWIG_ConvertPtr(ST(5), &argp6,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add_repos_file4" "', argument " "6"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
- arg6 = (apr_hash_t *)(argp6);
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_add_repos_file4" "', argument " "7"" of type '" "char const *""'");
@@ -25767,10 +26183,6 @@ XS(_wrap_svn_wc_add_repos_file3) {
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
- void *argp5 = 0 ;
- int res5 = 0 ;
- void *argp6 = 0 ;
- int res6 = 0 ;
int res7 ;
char *buf7 = 0 ;
int alloc7 = 0 ;
@@ -25804,16 +26216,16 @@ XS(_wrap_svn_wc_add_repos_file3) {
{
svn_swig_pl_make_stream (&arg4, ST(3));
}
- res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_add_repos_file3" "', argument " "5"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
- arg5 = (apr_hash_t *)(argp5);
- res6 = SWIG_ConvertPtr(ST(5), &argp6,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add_repos_file3" "', argument " "6"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
- arg6 = (apr_hash_t *)(argp6);
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_add_repos_file3" "', argument " "7"" of type '" "char const *""'");
@@ -25925,10 +26337,6 @@ XS(_wrap_svn_wc_add_repos_file2) {
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
- void *argp5 = 0 ;
- int res5 = 0 ;
- void *argp6 = 0 ;
- int res6 = 0 ;
int res7 ;
char *buf7 = 0 ;
int alloc7 = 0 ;
@@ -25964,16 +26372,16 @@ XS(_wrap_svn_wc_add_repos_file2) {
SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_add_repos_file2" "', argument " "4"" of type '" "char const *""'");
}
arg4 = (char *)(buf4);
- res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res5)) {
- SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_add_repos_file2" "', argument " "5"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg5 = svn_swig_pl_hash_to_prophash(ST(4), _global_pool);
}
- arg5 = (apr_hash_t *)(argp5);
- res6 = SWIG_ConvertPtr(ST(5), &argp6,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_add_repos_file2" "', argument " "6"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
- arg6 = (apr_hash_t *)(argp6);
res7 = SWIG_AsCharPtrAndSize(ST(6), &buf7, NULL, &alloc7);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_add_repos_file2" "', argument " "7"" of type '" "char const *""'");
@@ -26052,8 +26460,6 @@ XS(_wrap_svn_wc_add_repos_file) {
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
int res5 ;
char *buf5 = 0 ;
int alloc5 = 0 ;
@@ -26084,11 +26490,11 @@ XS(_wrap_svn_wc_add_repos_file) {
SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_add_repos_file" "', argument " "3"" of type '" "char const *""'");
}
arg3 = (char *)(buf3);
- 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_wc_add_repos_file" "', 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);
res5 = SWIG_AsCharPtrAndSize(ST(4), &buf5, NULL, &alloc5);
if (!SWIG_IsOK(res5)) {
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_add_repos_file" "', argument " "5"" of type '" "char const *""'");
@@ -27172,7 +27578,7 @@ XS(_wrap_svn_wc_queue_committed3) {
}
{
- result = (svn_error_t *)svn_wc_queue_committed3(arg1,arg2,(char const *)arg3,arg4,(apr_array_header_t const *)arg5,arg6,arg7,(svn_checksum_t const *)arg8,arg9);
+ result = (svn_error_t *)svn_wc_queue_committed3(arg1,arg2,(char const *)arg3,arg4,(apr_array_header_t const *)arg5,arg6,arg7,(struct svn_checksum_t const *)arg8,arg9);
@@ -27301,7 +27707,7 @@ XS(_wrap_svn_wc_queue_committed2) {
}
{
- result = (svn_error_t *)svn_wc_queue_committed2(arg1,(char const *)arg2,arg3,arg4,(apr_array_header_t const *)arg5,arg6,arg7,(svn_checksum_t const *)arg8,arg9);
+ result = (svn_error_t *)svn_wc_queue_committed2(arg1,(char const *)arg2,arg3,arg4,(apr_array_header_t const *)arg5,arg6,arg7,(struct svn_checksum_t const *)arg8,arg9);
@@ -29003,6 +29409,111 @@ XS(_wrap_svn_wc_crawl_revisions) {
}
+XS(_wrap_svn_wc_check_root) {
+ {
+ svn_boolean_t *arg1 = (svn_boolean_t *) 0 ;
+ svn_boolean_t *arg2 = (svn_boolean_t *) 0 ;
+ svn_node_kind_t *arg3 = (svn_node_kind_t *) 0 ;
+ svn_wc_context_t *arg4 = (svn_wc_context_t *) 0 ;
+ char *arg5 = (char *) 0 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_boolean_t temp1 ;
+ int res1 = SWIG_TMPOBJ ;
+ svn_boolean_t temp2 ;
+ int res2 = SWIG_TMPOBJ ;
+ svn_node_kind_t temp3 ;
+ int res3 = SWIG_TMPOBJ ;
+ void *argp4 = 0 ;
+ int res4 = 0 ;
+ int res5 ;
+ char *buf5 = 0 ;
+ int alloc5 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ arg2 = &temp2;
+ arg3 = &temp3;
+ if ((items < 2) || (items > 3)) {
+ SWIG_croak("Usage: svn_wc_check_root(wc_ctx,local_abspath,scratch_pool);");
+ }
+ res4 = SWIG_ConvertPtr(ST(0), &argp4,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_check_root" "', argument " "4"" of type '" "svn_wc_context_t *""'");
+ }
+ arg4 = (svn_wc_context_t *)(argp4);
+ res5 = SWIG_AsCharPtrAndSize(ST(1), &buf5, NULL, &alloc5);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_check_root" "', argument " "5"" of type '" "char const *""'");
+ }
+ arg5 = (char *)(buf5);
+ if (items > 2) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_check_root(arg1,arg2,arg3,arg4,(char const *)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++;
+ }
+ }
+ }
+ if (SWIG_IsTmpObj(res1)) {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((*arg1)); argvi++ ;
+ } else {
+ int new_flags = SWIG_IsNewObj(res1) ? (SWIG_POINTER_OWN | 0) : 0;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_int, new_flags); argvi++ ;
+ }
+ if (SWIG_IsTmpObj(res2)) {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((*arg2)); argvi++ ;
+ } else {
+ int new_flags = SWIG_IsNewObj(res2) ? (SWIG_POINTER_OWN | 0) : 0;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj((void*)(arg2), SWIGTYPE_p_int, new_flags); argvi++ ;
+ }
+ if (SWIG_IsTmpObj(res3)) {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((*arg3)); argvi++ ;
+ } else {
+ int new_flags = SWIG_IsNewObj(res3) ? (SWIG_POINTER_OWN | 0) : 0;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj((void*)(arg3), SWIGTYPE_p_svn_node_kind_t, new_flags); argvi++ ;
+ }
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_is_wc_root2) {
{
svn_boolean_t *arg1 = (svn_boolean_t *) 0 ;
@@ -34160,6 +34671,257 @@ XS(_wrap_svn_wc_get_prop_diffs) {
}
+XS(_wrap_svn_wc_merge5) {
+ {
+ enum svn_wc_merge_outcome_t *arg1 = (enum svn_wc_merge_outcome_t *) 0 ;
+ enum svn_wc_notify_state_t *arg2 = (enum svn_wc_notify_state_t *) 0 ;
+ svn_wc_context_t *arg3 = (svn_wc_context_t *) 0 ;
+ char *arg4 = (char *) 0 ;
+ char *arg5 = (char *) 0 ;
+ char *arg6 = (char *) 0 ;
+ char *arg7 = (char *) 0 ;
+ char *arg8 = (char *) 0 ;
+ char *arg9 = (char *) 0 ;
+ svn_wc_conflict_version_t *arg10 = (svn_wc_conflict_version_t *) 0 ;
+ svn_wc_conflict_version_t *arg11 = (svn_wc_conflict_version_t *) 0 ;
+ svn_boolean_t arg12 ;
+ char *arg13 = (char *) 0 ;
+ apr_array_header_t *arg14 = (apr_array_header_t *) 0 ;
+ apr_hash_t *arg15 = (apr_hash_t *) 0 ;
+ apr_array_header_t *arg16 = (apr_array_header_t *) 0 ;
+ svn_wc_conflict_resolver_func2_t arg17 = (svn_wc_conflict_resolver_func2_t) 0 ;
+ void *arg18 = (void *) 0 ;
+ svn_cancel_func_t arg19 = (svn_cancel_func_t) 0 ;
+ void *arg20 = (void *) 0 ;
+ apr_pool_t *arg21 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ enum svn_wc_merge_outcome_t temp1 ;
+ int res1 = SWIG_TMPOBJ ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ void *argp3 = 0 ;
+ int res3 = 0 ;
+ int res4 ;
+ char *buf4 = 0 ;
+ int alloc4 = 0 ;
+ int res5 ;
+ char *buf5 = 0 ;
+ int alloc5 = 0 ;
+ int res6 ;
+ char *buf6 = 0 ;
+ int alloc6 = 0 ;
+ int res7 ;
+ char *buf7 = 0 ;
+ int alloc7 = 0 ;
+ int res8 ;
+ char *buf8 = 0 ;
+ int alloc8 = 0 ;
+ int res9 ;
+ char *buf9 = 0 ;
+ int alloc9 = 0 ;
+ void *argp10 = 0 ;
+ int res10 = 0 ;
+ void *argp11 = 0 ;
+ int res11 = 0 ;
+ int val12 ;
+ int ecode12 = 0 ;
+ int res13 ;
+ char *buf13 = 0 ;
+ int alloc13 = 0 ;
+ void *argp14 = 0 ;
+ int res14 = 0 ;
+ void *argp15 = 0 ;
+ int res15 = 0 ;
+ void *argp16 = 0 ;
+ int res16 = 0 ;
+ int res18 ;
+ int res20 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg21 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 19) || (items > 20)) {
+ SWIG_croak("Usage: svn_wc_merge5(merge_props_state,wc_ctx,left_abspath,right_abspath,target_abspath,left_label,right_label,target_label,left_version,right_version,dry_run,diff3_cmd,merge_options,original_props,prop_diff,conflict_func,conflict_baton,cancel_func,cancel_baton,scratch_pool);");
+ }
+ res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_notify_state_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_merge5" "', argument " "2"" of type '" "enum svn_wc_notify_state_t *""'");
+ }
+ arg2 = (enum svn_wc_notify_state_t *)(argp2);
+ res3 = SWIG_ConvertPtr(ST(1), &argp3,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_merge5" "', argument " "3"" of type '" "svn_wc_context_t *""'");
+ }
+ arg3 = (svn_wc_context_t *)(argp3);
+ res4 = SWIG_AsCharPtrAndSize(ST(2), &buf4, NULL, &alloc4);
+ if (!SWIG_IsOK(res4)) {
+ SWIG_exception_fail(SWIG_ArgError(res4), "in method '" "svn_wc_merge5" "', argument " "4"" of type '" "char const *""'");
+ }
+ arg4 = (char *)(buf4);
+ res5 = SWIG_AsCharPtrAndSize(ST(3), &buf5, NULL, &alloc5);
+ if (!SWIG_IsOK(res5)) {
+ SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_merge5" "', argument " "5"" of type '" "char const *""'");
+ }
+ arg5 = (char *)(buf5);
+ res6 = SWIG_AsCharPtrAndSize(ST(4), &buf6, NULL, &alloc6);
+ if (!SWIG_IsOK(res6)) {
+ SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_merge5" "', argument " "6"" of type '" "char const *""'");
+ }
+ arg6 = (char *)(buf6);
+ res7 = SWIG_AsCharPtrAndSize(ST(5), &buf7, NULL, &alloc7);
+ if (!SWIG_IsOK(res7)) {
+ SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_merge5" "', argument " "7"" of type '" "char const *""'");
+ }
+ arg7 = (char *)(buf7);
+ res8 = SWIG_AsCharPtrAndSize(ST(6), &buf8, NULL, &alloc8);
+ if (!SWIG_IsOK(res8)) {
+ SWIG_exception_fail(SWIG_ArgError(res8), "in method '" "svn_wc_merge5" "', argument " "8"" of type '" "char const *""'");
+ }
+ arg8 = (char *)(buf8);
+ res9 = SWIG_AsCharPtrAndSize(ST(7), &buf9, NULL, &alloc9);
+ if (!SWIG_IsOK(res9)) {
+ SWIG_exception_fail(SWIG_ArgError(res9), "in method '" "svn_wc_merge5" "', argument " "9"" of type '" "char const *""'");
+ }
+ arg9 = (char *)(buf9);
+ res10 = SWIG_ConvertPtr(ST(8), &argp10,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
+ if (!SWIG_IsOK(res10)) {
+ SWIG_exception_fail(SWIG_ArgError(res10), "in method '" "svn_wc_merge5" "', argument " "10"" of type '" "svn_wc_conflict_version_t const *""'");
+ }
+ arg10 = (svn_wc_conflict_version_t *)(argp10);
+ res11 = SWIG_ConvertPtr(ST(9), &argp11,SWIGTYPE_p_svn_wc_conflict_version_t, 0 | 0 );
+ if (!SWIG_IsOK(res11)) {
+ SWIG_exception_fail(SWIG_ArgError(res11), "in method '" "svn_wc_merge5" "', argument " "11"" of type '" "svn_wc_conflict_version_t const *""'");
+ }
+ arg11 = (svn_wc_conflict_version_t *)(argp11);
+ ecode12 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(10), &val12);
+ if (!SWIG_IsOK(ecode12)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode12), "in method '" "svn_wc_merge5" "', argument " "12"" of type '" "svn_boolean_t""'");
+ }
+ arg12 = (svn_boolean_t)(val12);
+ res13 = SWIG_AsCharPtrAndSize(ST(11), &buf13, NULL, &alloc13);
+ if (!SWIG_IsOK(res13)) {
+ SWIG_exception_fail(SWIG_ArgError(res13), "in method '" "svn_wc_merge5" "', argument " "13"" of type '" "char const *""'");
+ }
+ arg13 = (char *)(buf13);
+ res14 = SWIG_ConvertPtr(ST(12), &argp14,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ if (!SWIG_IsOK(res14)) {
+ SWIG_exception_fail(SWIG_ArgError(res14), "in method '" "svn_wc_merge5" "', argument " "14"" of type '" "apr_array_header_t const *""'");
+ }
+ arg14 = (apr_array_header_t *)(argp14);
+ res15 = SWIG_ConvertPtr(ST(13), &argp15,SWIGTYPE_p_apr_hash_t, 0 | 0 );
+ if (!SWIG_IsOK(res15)) {
+ SWIG_exception_fail(SWIG_ArgError(res15), "in method '" "svn_wc_merge5" "', argument " "15"" of type '" "apr_hash_t *""'");
+ }
+ arg15 = (apr_hash_t *)(argp15);
+ res16 = SWIG_ConvertPtr(ST(14), &argp16,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
+ if (!SWIG_IsOK(res16)) {
+ SWIG_exception_fail(SWIG_ArgError(res16), "in method '" "svn_wc_merge5" "', argument " "16"" of type '" "apr_array_header_t const *""'");
+ }
+ arg16 = (apr_array_header_t *)(argp16);
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(15), (void**)(&arg17), SWIGTYPE_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description2_t_p_void_p_apr_pool_t_p_apr_pool_t__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_merge5" "', argument " "17"" of type '" "svn_wc_conflict_resolver_func2_t""'");
+ }
+ }
+ res18 = SWIG_ConvertPtr(ST(16),SWIG_as_voidptrptr(&arg18), 0, 0);
+ if (!SWIG_IsOK(res18)) {
+ SWIG_exception_fail(SWIG_ArgError(res18), "in method '" "svn_wc_merge5" "', argument " "18"" of type '" "void *""'");
+ }
+ {
+ int res = SWIG_ConvertFunctionPtr(ST(17), (void**)(&arg19), SWIGTYPE_p_f_p_void__p_svn_error_t);
+ if (!SWIG_IsOK(res)) {
+ SWIG_exception_fail(SWIG_ArgError(res), "in method '" "svn_wc_merge5" "', argument " "19"" of type '" "svn_cancel_func_t""'");
+ }
+ }
+ res20 = SWIG_ConvertPtr(ST(18),SWIG_as_voidptrptr(&arg20), 0, 0);
+ if (!SWIG_IsOK(res20)) {
+ SWIG_exception_fail(SWIG_ArgError(res20), "in method '" "svn_wc_merge5" "', argument " "20"" of type '" "void *""'");
+ }
+ if (items > 19) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_merge5(arg1,arg2,arg3,(char const *)arg4,(char const *)arg5,(char const *)arg6,(char const *)arg7,(char const *)arg8,(char const *)arg9,(struct svn_wc_conflict_version_t const *)arg10,(struct svn_wc_conflict_version_t const *)arg11,arg12,(char const *)arg13,(apr_array_header_t const *)arg14,arg15,(apr_array_header_t const *)arg16,arg17,arg18,arg19,arg20,arg21);
+
+
+
+ }
+ {
+ 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 (SWIG_IsTmpObj(res1)) {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((*arg1)); argvi++ ;
+ } else {
+ int new_flags = SWIG_IsNewObj(res1) ? (SWIG_POINTER_OWN | 0) : 0;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_svn_wc_merge_outcome_t, new_flags); argvi++ ;
+ }
+
+
+
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+ if (alloc8 == SWIG_NEWOBJ) free((char*)buf8);
+ if (alloc9 == SWIG_NEWOBJ) free((char*)buf9);
+
+
+
+ if (alloc13 == SWIG_NEWOBJ) free((char*)buf13);
+
+
+
+
+
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+
+ if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
+ if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
+ if (alloc6 == SWIG_NEWOBJ) free((char*)buf6);
+ if (alloc7 == SWIG_NEWOBJ) free((char*)buf7);
+ if (alloc8 == SWIG_NEWOBJ) free((char*)buf8);
+ if (alloc9 == SWIG_NEWOBJ) free((char*)buf9);
+
+
+
+ if (alloc13 == SWIG_NEWOBJ) free((char*)buf13);
+
+
+
+
+
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_merge4) {
{
enum svn_wc_merge_outcome_t *arg1 = (enum svn_wc_merge_outcome_t *) 0 ;
@@ -34936,8 +35698,6 @@ XS(_wrap_svn_wc_merge_props3) {
int res4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
- void *argp6 = 0 ;
- int res6 = 0 ;
void *argp7 = 0 ;
int res7 = 0 ;
int val8 ;
@@ -34979,11 +35739,11 @@ XS(_wrap_svn_wc_merge_props3) {
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_merge_props3" "', argument " "5"" of type '" "svn_wc_conflict_version_t const *""'");
}
arg5 = (svn_wc_conflict_version_t *)(argp5);
- res6 = SWIG_ConvertPtr(ST(5), &argp6,SWIGTYPE_p_apr_hash_t, 0 | 0 );
- if (!SWIG_IsOK(res6)) {
- SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "svn_wc_merge_props3" "', argument " "6"" of type '" "apr_hash_t *""'");
+ {
+ if (_global_pool == NULL)
+ _global_pool = svn_swig_pl_make_pool((SV *)NULL);
+ arg6 = svn_swig_pl_hash_to_prophash(ST(5), _global_pool);
}
- arg6 = (apr_hash_t *)(argp6);
res7 = SWIG_ConvertPtr(ST(6), &argp7,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), "in method '" "svn_wc_merge_props3" "', argument " "7"" of type '" "apr_array_header_t const *""'");
@@ -35092,8 +35852,6 @@ XS(_wrap_svn_wc_merge_props2) {
int alloc2 = 0 ;
void *argp3 = 0 ;
int res3 = 0 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
int val6 ;
@@ -35126,11 +35884,11 @@ XS(_wrap_svn_wc_merge_props2) {
SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_merge_props2" "', argument " "3"" of type '" "svn_wc_adm_access_t *""'");
}
arg3 = (svn_wc_adm_access_t *)(argp3);
- 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_wc_merge_props2" "', 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);
res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
if (!SWIG_IsOK(res5)) {
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_merge_props2" "', argument " "5"" of type '" "apr_array_header_t const *""'");
@@ -35226,8 +35984,6 @@ XS(_wrap_svn_wc_merge_props) {
int alloc2 = 0 ;
void *argp3 = 0 ;
int res3 = 0 ;
- void *argp4 = 0 ;
- int res4 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
int val6 ;
@@ -35259,11 +36015,11 @@ XS(_wrap_svn_wc_merge_props) {
SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_merge_props" "', argument " "3"" of type '" "svn_wc_adm_access_t *""'");
}
arg3 = (svn_wc_adm_access_t *)(argp3);
- 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_wc_merge_props" "', 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);
res5 = SWIG_ConvertPtr(ST(4), &argp5,SWIGTYPE_p_apr_array_header_t, 0 | 0 );
if (!SWIG_IsOK(res5)) {
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "svn_wc_merge_props" "', argument " "5"" of type '" "apr_array_header_t const *""'");
@@ -37630,7 +38386,7 @@ XS(_wrap_svn_wc_transmit_text_deltas3) {
}
{
- result = (svn_error_t *)svn_wc_transmit_text_deltas3((svn_checksum_t const **)arg1,(svn_checksum_t const **)arg2,arg3,(char const *)arg4,arg5,(struct svn_delta_editor_t const *)arg6,arg7,arg8,arg9);
+ result = (svn_error_t *)svn_wc_transmit_text_deltas3((struct svn_checksum_t const **)arg1,(struct svn_checksum_t const **)arg2,arg3,(char const *)arg4,arg5,(struct svn_delta_editor_t const *)arg6,arg7,arg8,arg9);
@@ -37773,7 +38529,7 @@ XS(_wrap_svn_wc_transmit_text_deltas2) {
}
}
{
- /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,59,%append_output@*/ if (argvi >= items) EXTEND(sp,1); /*@SWIG:/home/pm/sw/subversion/release/prefix/share/swig/2.0.4/perl5/perltypemaps.swg,56,%set_output@*/ ST(argvi) = sv_2mortal(newSVpv(svn_md5_digest_to_cstring(arg2,
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,59,%append_output@*/ if (argvi >= items) EXTEND(sp,1); /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,56,%set_output@*/ ST(argvi) = sv_2mortal(newSVpv(svn_md5_digest_to_cstring(arg2,
_global_pool),
0)); argvi++ /*@SWIG@*/
@@ -38644,7 +39400,7 @@ XS(_wrap_svn_wc_remove_lock) {
XS(_wrap_svn_wc_revision_status_t_min_rev_set) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -38658,9 +39414,9 @@ XS(_wrap_svn_wc_revision_status_t_min_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_min_rev_set" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_min_rev_set" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_revision_status_t_min_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -38681,7 +39437,7 @@ XS(_wrap_svn_wc_revision_status_t_min_rev_set) {
XS(_wrap_svn_wc_revision_status_t_min_rev_get) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -38693,9 +39449,9 @@ XS(_wrap_svn_wc_revision_status_t_min_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_min_rev_get" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_min_rev_get" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
result = (svn_revnum_t) ((arg1)->min_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -38709,7 +39465,7 @@ XS(_wrap_svn_wc_revision_status_t_min_rev_get) {
XS(_wrap_svn_wc_revision_status_t_max_rev_set) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
svn_revnum_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -38723,9 +39479,9 @@ XS(_wrap_svn_wc_revision_status_t_max_rev_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_max_rev_set" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_max_rev_set" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
ecode2 = SWIG_AsVal_long SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_revision_status_t_max_rev_set" "', argument " "2"" of type '" "svn_revnum_t""'");
@@ -38746,7 +39502,7 @@ XS(_wrap_svn_wc_revision_status_t_max_rev_set) {
XS(_wrap_svn_wc_revision_status_t_max_rev_get) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -38758,9 +39514,9 @@ XS(_wrap_svn_wc_revision_status_t_max_rev_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_max_rev_get" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_max_rev_get" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
result = (svn_revnum_t) ((arg1)->max_rev);
ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((long)(result)); argvi++ ;
@@ -38774,7 +39530,7 @@ XS(_wrap_svn_wc_revision_status_t_max_rev_get) {
XS(_wrap_svn_wc_revision_status_t_switched_set) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -38788,9 +39544,9 @@ XS(_wrap_svn_wc_revision_status_t_switched_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_switched_set" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_switched_set" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_revision_status_t_switched_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -38811,7 +39567,7 @@ XS(_wrap_svn_wc_revision_status_t_switched_set) {
XS(_wrap_svn_wc_revision_status_t_switched_get) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -38823,9 +39579,9 @@ XS(_wrap_svn_wc_revision_status_t_switched_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_switched_get" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_switched_get" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->switched);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -38839,7 +39595,7 @@ XS(_wrap_svn_wc_revision_status_t_switched_get) {
XS(_wrap_svn_wc_revision_status_t_modified_set) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -38853,9 +39609,9 @@ XS(_wrap_svn_wc_revision_status_t_modified_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_modified_set" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_modified_set" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_revision_status_t_modified_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -38876,7 +39632,7 @@ XS(_wrap_svn_wc_revision_status_t_modified_set) {
XS(_wrap_svn_wc_revision_status_t_modified_get) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -38888,9 +39644,9 @@ XS(_wrap_svn_wc_revision_status_t_modified_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_modified_get" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_modified_get" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->modified);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -38904,7 +39660,7 @@ XS(_wrap_svn_wc_revision_status_t_modified_get) {
XS(_wrap_svn_wc_revision_status_t_sparse_checkout_set) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
svn_boolean_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
@@ -38918,9 +39674,9 @@ XS(_wrap_svn_wc_revision_status_t_sparse_checkout_set) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_sparse_checkout_set" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_sparse_checkout_set" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
ecode2 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(1), &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "svn_wc_revision_status_t_sparse_checkout_set" "', argument " "2"" of type '" "svn_boolean_t""'");
@@ -38941,7 +39697,7 @@ XS(_wrap_svn_wc_revision_status_t_sparse_checkout_set) {
XS(_wrap_svn_wc_revision_status_t_sparse_checkout_get) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -38953,9 +39709,9 @@ XS(_wrap_svn_wc_revision_status_t_sparse_checkout_get) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_sparse_checkout_get" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "svn_wc_revision_status_t_sparse_checkout_get" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
result = (svn_boolean_t) ((arg1)->sparse_checkout);
ST(argvi) = SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(result)); argvi++ ;
@@ -38970,14 +39726,14 @@ XS(_wrap_svn_wc_revision_status_t_sparse_checkout_get) {
XS(_wrap_new_svn_wc_revision_status_t) {
{
int argvi = 0;
- svn_wc_revision_status_t *result = 0 ;
+ struct svn_wc_revision_status_t *result = 0 ;
dXSARGS;
if ((items < 0) || (items > 0)) {
SWIG_croak("Usage: new_svn_wc_revision_status_t();");
}
{
- result = (svn_wc_revision_status_t *)calloc(1, sizeof(svn_wc_revision_status_t));
+ result = (struct svn_wc_revision_status_t *)calloc(1, sizeof(struct svn_wc_revision_status_t));
@@ -38992,7 +39748,7 @@ XS(_wrap_new_svn_wc_revision_status_t) {
XS(_wrap_delete_svn_wc_revision_status_t) {
{
- svn_wc_revision_status_t *arg1 = (svn_wc_revision_status_t *) 0 ;
+ struct svn_wc_revision_status_t *arg1 = (struct svn_wc_revision_status_t *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
int argvi = 0;
@@ -39003,9 +39759,9 @@ XS(_wrap_delete_svn_wc_revision_status_t) {
}
res1 = SWIG_ConvertPtr(ST(0), &argp1,SWIGTYPE_p_svn_wc_revision_status_t, SWIG_POINTER_DISOWN | 0 );
if (!SWIG_IsOK(res1)) {
- SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_revision_status_t" "', argument " "1"" of type '" "svn_wc_revision_status_t *""'");
+ SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "delete_svn_wc_revision_status_t" "', argument " "1"" of type '" "struct svn_wc_revision_status_t *""'");
}
- arg1 = (svn_wc_revision_status_t *)(argp1);
+ arg1 = (struct svn_wc_revision_status_t *)(argp1);
{
free((char *) arg1);
@@ -39951,6 +40707,107 @@ XS(_wrap_svn_wc_exclude) {
}
+XS(_wrap_svn_wc_read_kind2) {
+ {
+ svn_node_kind_t *arg1 = (svn_node_kind_t *) 0 ;
+ svn_wc_context_t *arg2 = (svn_wc_context_t *) 0 ;
+ char *arg3 = (char *) 0 ;
+ svn_boolean_t arg4 ;
+ svn_boolean_t arg5 ;
+ apr_pool_t *arg6 = (apr_pool_t *) 0 ;
+ apr_pool_t *_global_pool ;
+ svn_node_kind_t temp1 ;
+ int res1 = SWIG_TMPOBJ ;
+ void *argp2 = 0 ;
+ int res2 = 0 ;
+ int res3 ;
+ char *buf3 = 0 ;
+ int alloc3 = 0 ;
+ int val4 ;
+ int ecode4 = 0 ;
+ int val5 ;
+ int ecode5 = 0 ;
+ int argvi = 0;
+ svn_error_t *result = 0 ;
+ dXSARGS;
+
+ {
+ _global_pool = arg6 = svn_swig_pl_make_pool (ST(items-1));
+ }
+ arg1 = &temp1;
+ if ((items < 4) || (items > 5)) {
+ SWIG_croak("Usage: svn_wc_read_kind2(wc_ctx,local_abspath,show_deleted,show_hidden,scratch_pool);");
+ }
+ res2 = SWIG_ConvertPtr(ST(0), &argp2,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
+ if (!SWIG_IsOK(res2)) {
+ SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "svn_wc_read_kind2" "', argument " "2"" of type '" "svn_wc_context_t *""'");
+ }
+ arg2 = (svn_wc_context_t *)(argp2);
+ res3 = SWIG_AsCharPtrAndSize(ST(1), &buf3, NULL, &alloc3);
+ if (!SWIG_IsOK(res3)) {
+ SWIG_exception_fail(SWIG_ArgError(res3), "in method '" "svn_wc_read_kind2" "', argument " "3"" of type '" "char const *""'");
+ }
+ arg3 = (char *)(buf3);
+ ecode4 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(2), &val4);
+ if (!SWIG_IsOK(ecode4)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "svn_wc_read_kind2" "', argument " "4"" of type '" "svn_boolean_t""'");
+ }
+ arg4 = (svn_boolean_t)(val4);
+ ecode5 = SWIG_AsVal_int SWIG_PERL_CALL_ARGS_2(ST(3), &val5);
+ if (!SWIG_IsOK(ecode5)) {
+ SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "svn_wc_read_kind2" "', argument " "5"" of type '" "svn_boolean_t""'");
+ }
+ arg5 = (svn_boolean_t)(val5);
+ if (items > 4) {
+
+ }
+ {
+ result = (svn_error_t *)svn_wc_read_kind2(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++;
+ }
+ }
+ }
+ if (SWIG_IsTmpObj(res1)) {
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_From_long SWIG_PERL_CALL_ARGS_1((*arg1)); argvi++ ;
+ } else {
+ int new_flags = SWIG_IsNewObj(res1) ? (SWIG_POINTER_OWN | 0) : 0;
+ if (argvi >= items) EXTEND(sp,1); ST(argvi) = SWIG_NewPointerObj((void*)(arg1), SWIGTYPE_p_svn_node_kind_t, new_flags); argvi++ ;
+ }
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ XSRETURN(argvi);
+ fail:
+
+
+ if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
+
+
+
+ SWIG_croak_null();
+ }
+}
+
+
XS(_wrap_svn_wc_read_kind) {
{
svn_node_kind_t *arg1 = (svn_node_kind_t *) 0 ;
@@ -45769,7 +46626,7 @@ XS(_wrap_svn_wc_swig_init_asp_dot_net_hack) {
/* -------- 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};
@@ -45826,7 +46683,7 @@ static swig_type_info _swigt__p_p_apr_array_header_t = {"_p_p_apr_array_header_t
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 **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_char = {"_p_p_char", "char **", 0, 0, (void*)0, 0};
-static swig_type_info _swigt__p_p_svn_checksum_t = {"_p_p_svn_checksum_t", "svn_checksum_t **", 0, 0, (void*)0, 0};
+static swig_type_info _swigt__p_p_svn_checksum_t = {"_p_p_svn_checksum_t", "struct svn_checksum_t **|svn_checksum_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_delta_editor_t = {"_p_p_svn_delta_editor_t", "struct svn_delta_editor_t **|svn_delta_editor_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};
@@ -45851,7 +46708,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_t = {"_p_svn_checksum_t", "svn_checksum_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};
@@ -45887,6 +46746,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};
@@ -45905,6 +46765,9 @@ 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_adm_access_t = {"_p_svn_wc_adm_access_t", "struct svn_wc_adm_access_t *|svn_wc_adm_access_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_wc_committed_queue_t = {"_p_svn_wc_committed_queue_t", "struct svn_wc_committed_queue_t *|svn_wc_committed_queue_t *", 0, 0, (void*)0, 0};
@@ -46026,6 +46889,8 @@ 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,
@@ -46062,6 +46927,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,
@@ -46080,6 +46946,9 @@ 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_adm_access_t,
&_swigt__p_svn_wc_committed_queue_t,
@@ -46201,6 +47070,8 @@ 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}};
@@ -46237,6 +47108,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}};
@@ -46255,6 +47127,9 @@ 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_adm_access_t[] = { {&_swigt__p_svn_wc_adm_access_t, 0, 0, 0},{0, 0, 0, 0}};
static swig_cast_info _swigc__p_svn_wc_committed_queue_t[] = { {&_swigt__p_svn_wc_committed_queue_t, 0, 0, 0},{0, 0, 0, 0}};
@@ -46376,6 +47251,8 @@ 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,
@@ -46412,6 +47289,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,
@@ -46430,6 +47308,9 @@ 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_adm_access_t,
_swigc__p_svn_wc_committed_queue_t,
@@ -46520,6 +47401,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_external_item2_t_peg_revision_get", _wrap_svn_wc_external_item2_t_peg_revision_get},
{"SVN::_Wc::new_svn_wc_external_item2_t", _wrap_new_svn_wc_external_item2_t},
{"SVN::_Wc::delete_svn_wc_external_item2_t", _wrap_delete_svn_wc_external_item2_t},
+{"SVN::_Wc::svn_wc_external_item2_create", _wrap_svn_wc_external_item2_create},
{"SVN::_Wc::svn_wc_external_item_create", _wrap_svn_wc_external_item_create},
{"SVN::_Wc::svn_wc_external_item2_dup", _wrap_svn_wc_external_item2_dup},
{"SVN::_Wc::svn_wc_external_item_t_target_dir_set", _wrap_svn_wc_external_item_t_target_dir_set},
@@ -46593,8 +47475,11 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_conflict_version_t_path_in_repos_get", _wrap_svn_wc_conflict_version_t_path_in_repos_get},
{"SVN::_Wc::svn_wc_conflict_version_t_node_kind_set", _wrap_svn_wc_conflict_version_t_node_kind_set},
{"SVN::_Wc::svn_wc_conflict_version_t_node_kind_get", _wrap_svn_wc_conflict_version_t_node_kind_get},
+{"SVN::_Wc::svn_wc_conflict_version_t_repos_uuid_set", _wrap_svn_wc_conflict_version_t_repos_uuid_set},
+{"SVN::_Wc::svn_wc_conflict_version_t_repos_uuid_get", _wrap_svn_wc_conflict_version_t_repos_uuid_get},
{"SVN::_Wc::new_svn_wc_conflict_version_t", _wrap_new_svn_wc_conflict_version_t},
{"SVN::_Wc::delete_svn_wc_conflict_version_t", _wrap_delete_svn_wc_conflict_version_t},
+{"SVN::_Wc::svn_wc_conflict_version_create2", _wrap_svn_wc_conflict_version_create2},
{"SVN::_Wc::svn_wc_conflict_version_create", _wrap_svn_wc_conflict_version_create},
{"SVN::_Wc::svn_wc_conflict_version_dup", _wrap_svn_wc_conflict_version_dup},
{"SVN::_Wc::svn_wc_conflict_description2_t_local_abspath_set", _wrap_svn_wc_conflict_description2_t_local_abspath_set},
@@ -46855,6 +47740,10 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_info_t_conflicts_get", _wrap_svn_wc_info_t_conflicts_get},
{"SVN::_Wc::svn_wc_info_t_wcroot_abspath_set", _wrap_svn_wc_info_t_wcroot_abspath_set},
{"SVN::_Wc::svn_wc_info_t_wcroot_abspath_get", _wrap_svn_wc_info_t_wcroot_abspath_get},
+{"SVN::_Wc::svn_wc_info_t_moved_from_abspath_set", _wrap_svn_wc_info_t_moved_from_abspath_set},
+{"SVN::_Wc::svn_wc_info_t_moved_from_abspath_get", _wrap_svn_wc_info_t_moved_from_abspath_get},
+{"SVN::_Wc::svn_wc_info_t_moved_to_abspath_set", _wrap_svn_wc_info_t_moved_to_abspath_set},
+{"SVN::_Wc::svn_wc_info_t_moved_to_abspath_get", _wrap_svn_wc_info_t_moved_to_abspath_get},
{"SVN::_Wc::new_svn_wc_info_t", _wrap_new_svn_wc_info_t},
{"SVN::_Wc::delete_svn_wc_info_t", _wrap_delete_svn_wc_info_t},
{"SVN::_Wc::svn_wc_info_dup", _wrap_svn_wc_info_dup},
@@ -46937,6 +47826,12 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_status3_t_ood_changed_date_get", _wrap_svn_wc_status3_t_ood_changed_date_get},
{"SVN::_Wc::svn_wc_status3_t_ood_changed_author_set", _wrap_svn_wc_status3_t_ood_changed_author_set},
{"SVN::_Wc::svn_wc_status3_t_ood_changed_author_get", _wrap_svn_wc_status3_t_ood_changed_author_get},
+{"SVN::_Wc::svn_wc_status3_t_moved_from_abspath_set", _wrap_svn_wc_status3_t_moved_from_abspath_set},
+{"SVN::_Wc::svn_wc_status3_t_moved_from_abspath_get", _wrap_svn_wc_status3_t_moved_from_abspath_get},
+{"SVN::_Wc::svn_wc_status3_t_moved_to_abspath_set", _wrap_svn_wc_status3_t_moved_to_abspath_set},
+{"SVN::_Wc::svn_wc_status3_t_moved_to_abspath_get", _wrap_svn_wc_status3_t_moved_to_abspath_get},
+{"SVN::_Wc::svn_wc_status3_t_file_external_set", _wrap_svn_wc_status3_t_file_external_set},
+{"SVN::_Wc::svn_wc_status3_t_file_external_get", _wrap_svn_wc_status3_t_file_external_get},
{"SVN::_Wc::new_svn_wc_status3_t", _wrap_new_svn_wc_status3_t},
{"SVN::_Wc::delete_svn_wc_status3_t", _wrap_delete_svn_wc_status3_t},
{"SVN::_Wc::svn_wc_status2_t_entry_set", _wrap_svn_wc_status2_t_entry_set},
@@ -47016,6 +47911,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_delete3", _wrap_svn_wc_delete3},
{"SVN::_Wc::svn_wc_delete2", _wrap_svn_wc_delete2},
{"SVN::_Wc::svn_wc_delete", _wrap_svn_wc_delete},
+{"SVN::_Wc::svn_wc_add_from_disk2", _wrap_svn_wc_add_from_disk2},
{"SVN::_Wc::svn_wc_add_from_disk", _wrap_svn_wc_add_from_disk},
{"SVN::_Wc::svn_wc_add4", _wrap_svn_wc_add4},
{"SVN::_Wc::svn_wc_add3", _wrap_svn_wc_add3},
@@ -47047,6 +47943,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_crawl_revisions3", _wrap_svn_wc_crawl_revisions3},
{"SVN::_Wc::svn_wc_crawl_revisions2", _wrap_svn_wc_crawl_revisions2},
{"SVN::_Wc::svn_wc_crawl_revisions", _wrap_svn_wc_crawl_revisions},
+{"SVN::_Wc::svn_wc_check_root", _wrap_svn_wc_check_root},
{"SVN::_Wc::svn_wc_is_wc_root2", _wrap_svn_wc_is_wc_root2},
{"SVN::_Wc::svn_wc_is_wc_root", _wrap_svn_wc_is_wc_root},
{"SVN::_Wc::svn_wc_get_actual_target2", _wrap_svn_wc_get_actual_target2},
@@ -47086,6 +47983,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_diff", _wrap_svn_wc_diff},
{"SVN::_Wc::svn_wc_get_prop_diffs2", _wrap_svn_wc_get_prop_diffs2},
{"SVN::_Wc::svn_wc_get_prop_diffs", _wrap_svn_wc_get_prop_diffs},
+{"SVN::_Wc::svn_wc_merge5", _wrap_svn_wc_merge5},
{"SVN::_Wc::svn_wc_merge4", _wrap_svn_wc_merge4},
{"SVN::_Wc::svn_wc_merge3", _wrap_svn_wc_merge3},
{"SVN::_Wc::svn_wc_merge2", _wrap_svn_wc_merge2},
@@ -47148,6 +48046,7 @@ static swig_command_info swig_commands[] = {
{"SVN::_Wc::svn_wc_crop_tree2", _wrap_svn_wc_crop_tree2},
{"SVN::_Wc::svn_wc_crop_tree", _wrap_svn_wc_crop_tree},
{"SVN::_Wc::svn_wc_exclude", _wrap_svn_wc_exclude},
+{"SVN::_Wc::svn_wc_read_kind2", _wrap_svn_wc_read_kind2},
{"SVN::_Wc::svn_wc_read_kind", _wrap_svn_wc_read_kind},
{"SVN::_Wc::svn_wc_diff_callbacks4_invoke_file_opened", _wrap_svn_wc_diff_callbacks4_invoke_file_opened},
{"SVN::_Wc::svn_wc_diff_callbacks4_invoke_file_changed", _wrap_svn_wc_diff_callbacks4_invoke_file_changed},
@@ -47260,8 +48159,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 */
@@ -47452,25 +48349,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);
@@ -47479,7 +48381,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);
@@ -47493,697 +48395,747 @@ 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_WC_TRANSLATE_FROM_NF", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000000)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_TRANSLATE_TO_NF", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000001)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_TRANSLATE_FORCE_EOL_REPAIR", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000002)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_TRANSLATE_NO_OUTPUT_CLEANUP", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000004)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_TRANSLATE_FORCE_COPY", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000008)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_TRANSLATE_USE_GLOBAL_TMP", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(0x00000010)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_ADM_DIR_NAME", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr(".svn"));
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_wc_notify_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_copy", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_copy)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_restore", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_restore)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_revert", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revert)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_revert", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_revert)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_resolved", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_resolved)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_skip", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_skip)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_status_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_status_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_status_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_status_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_postfix_txdelta", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_postfix_txdelta)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_blame_revision", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_blame_revision)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_unlocked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_unlocked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_lock", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_lock)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_unlock", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_unlock)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_exists", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_exists)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_changelist_set", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_set)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_changelist_clear", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_clear)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_changelist_moved", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_changelist_moved)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_merge_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_foreign_merge_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_foreign_merge_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_property_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_property_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_property_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_property_deleted_nonexistent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_property_deleted_nonexistent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_revprop_set", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revprop_set)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_revprop_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_revprop_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_merge_completed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_completed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_tree_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_tree_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_started", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_started)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_skip_obstruction", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_obstruction)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_skip_working_only", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_working_only)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_skip_access_denied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_skip_access_denied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_external_removed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_external_removed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_shadowed_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_shadowed_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_shadowed_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_shadowed_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_merge_record_info", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_record_info)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_upgraded_path", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_upgraded_path)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_merge_record_info_begin", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_record_info_begin)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_merge_elide_info", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_merge_elide_info)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_patch", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_patch_applied_hunk", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_applied_hunk)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_patch_rejected_hunk", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_rejected_hunk)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_patch_hunk_already_applied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_patch_hunk_already_applied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_copied", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_copied)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_commit_copied_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_commit_copied_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_url_redirect", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_url_redirect)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_path_nonexistent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_path_nonexistent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_exclude", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_exclude)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_out_of_date", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_out_of_date)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_no_parent", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_no_parent)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_failed_forbidden_by_server", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_forbidden_by_server)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_skip_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_skip_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_update_broken_lock", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_update_broken_lock)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_failed_obstruction", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_failed_obstruction)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_conflict_resolver_starting", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_conflict_resolver_starting)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_conflict_resolver_done", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_conflict_resolver_done)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_left_local_modifications", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_left_local_modifications)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_foreign_copy_begin", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_foreign_copy_begin)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_move_broken", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_move_broken)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_notify_state_inapplicable", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_inapplicable)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_unknown", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_unknown)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_changed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_changed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_state_source_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_state_source_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_lock_state_inapplicable", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_inapplicable)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_lock_state_unknown", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unknown)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_lock_state_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_lock_state_locked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_locked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_notify_lock_state_unlocked", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_notify_lock_state_unlocked)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_action_edit", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_edit)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_action_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_action_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_action_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_action_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_edited", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_edited)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_unversioned", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_unversioned)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_reason_moved_away", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_moved_away)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
+ SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_reason_moved_here", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_reason_moved_here)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_conflict_kind_text", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_text)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_kind_property", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_property)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_kind_tree", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_kind_tree)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_operation_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_operation_update", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_update)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_operation_switch", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_switch)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_operation_merge", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_operation_merge)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_postpone", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_postpone)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_base", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_base)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_theirs_full", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_theirs_full)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_mine_full", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_mine_full)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_theirs_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_theirs_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_mine_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_mine_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_conflict_choose_unspecified", TRUE | 0x2 | GV_ADDMULTI);
+ sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_conflict_choose_unspecified)));
+ SvREADONLY_on(sv);
+ } while(0) /*@SWIG@*/;
+ /*@SWIG:/tmp/svnrm/prefix/share/swig/2.0.9/perl5/perltypemaps.swg,65,%set_constant@*/ do {
SV *sv = get_sv((char*) SWIG_prefix "svn_wc_schedule_normal", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_normal)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_schedule_add", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_add)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_schedule_delete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_delete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_schedule_replace", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_schedule_replace)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_ENTRY_WORKING_SIZE_UNKNOWN", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)((-1))));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_WC_ENTRY_THIS_DIR", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_FromCharPtr(""));
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_wc_status_none", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_none)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_unversioned", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_unversioned)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_normal", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_normal)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_added", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_added)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_missing", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_missing)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_deleted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_deleted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_replaced", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_replaced)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_modified", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_modified)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_conflicted", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_conflicted)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_ignored", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_ignored)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_obstructed", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_obstructed)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_external", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_external)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_status_incomplete", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_status_incomplete)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_merge_unchanged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_unchanged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_merge_merged", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_merged)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_merge_conflict", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_conflict)));
SvREADONLY_on(sv);
} while(0) /*@SWIG@*/;
- /*@SWIG:/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_wc_merge_no_merge", TRUE | 0x2 | GV_ADDMULTI);
sv_setsv(sv, SWIG_From_int SWIG_PERL_CALL_ARGS_1((int)(svn_wc_merge_no_merge)));
SvREADONLY_on(sv);