Alien-SVN
view release on metacpan or search on metacpan
src/subversion/subversion/bindings/swig/ruby/svn_wc.c view on Meta::CPAN
static void svn_wc_invoke_notify_func2(
svn_wc_notify_func2_t _obj, void *baton, const svn_wc_notify_t *notify, apr_pool_t *pool) {
_obj(baton, notify, pool);
}
static void svn_wc_invoke_notify_func(
svn_wc_notify_func_t _obj, void *baton, const char *path, svn_wc_notify_action_t action, svn_node_kind_t kind, const char *mime_type, svn_wc_notify_state_t content_state, svn_wc_notify_state_t prop_state, svn_revnum_t revision) {
_obj(baton, path, action, kind, mime_type, content_state, prop_state, revision);
}
static svn_error_t * svn_wc_invoke_conflict_resolver_func2(
svn_wc_conflict_resolver_func2_t _obj, svn_wc_conflict_result_t **result, const svn_wc_conflict_description2_t *description, void *baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) {
return _obj(result, description, baton, result_pool, scratch_pool);
}
static svn_error_t * svn_wc_invoke_conflict_resolver_func(
svn_wc_conflict_resolver_func_t _obj, svn_wc_conflict_result_t **result, const svn_wc_conflict_description_t *description, void *baton, apr_pool_t *pool) {
return _obj(result, description, baton, pool);
}
static svn_error_t * svn_wc_invoke_status_func4(
svn_wc_status_func4_t _obj, void *baton, const char *local_abspath, const svn_wc_status3_t *status, apr_pool_t *scratch_pool) {
return _obj(baton, local_abspath, status, scratch_pool);
}
static svn_error_t * svn_wc_invoke_status_func3(
svn_wc_status_func3_t _obj, void *baton, const char *path, svn_wc_status2_t *status, apr_pool_t *pool) {
return _obj(baton, path, status, pool);
}
static void svn_wc_invoke_status_func2(
svn_wc_status_func2_t _obj, void *baton, const char *path, svn_wc_status2_t *status) {
_obj(baton, path, status);
}
static void svn_wc_invoke_status_func(
svn_wc_status_func_t _obj, void *baton, const char *path, svn_wc_status_t *status) {
_obj(baton, path, status);
}
static svn_error_t * svn_wc_invoke_get_file(
svn_wc_get_file_t _obj, void *baton, const char *path, svn_revnum_t revision, svn_stream_t *stream, svn_revnum_t *fetched_rev, apr_hash_t **props, apr_pool_t *pool) {
return _obj(baton, path, revision, stream, fetched_rev, props, pool);
}
static svn_error_t * svn_wc_invoke_dirents_func(
svn_wc_dirents_func_t _obj, void *baton, apr_hash_t **dirents, const char *repos_root_url, const char *repos_relpath, apr_pool_t *result_pool, apr_pool_t *scratch_pool) {
return _obj(baton, dirents, repos_root_url, repos_relpath, result_pool, scratch_pool);
}
static svn_error_t * svn_wc_invoke_canonicalize_svn_prop_get_file(
svn_wc_canonicalize_svn_prop_get_file_t _obj, const svn_string_t **mime_type, svn_stream_t *stream, void *baton, apr_pool_t *pool) {
return _obj(mime_type, stream, baton, pool);
}
static svn_error_t * svn_wc_invoke_upgrade_get_repos_info(
svn_wc_upgrade_get_repos_info_t _obj, const char **repos_root, const char **repos_uuid, void *baton, const char *url, apr_pool_t *result_pool, apr_pool_t *scratch_pool) {
return _obj(repos_root, repos_uuid, baton, url, result_pool, scratch_pool);
}
static svn_error_t * svn_wc_invoke_relocation_validator3(
svn_wc_relocation_validator3_t _obj, void *baton, const char *uuid, const char *url, const char *root_url, apr_pool_t *pool) {
return _obj(baton, uuid, url, root_url, pool);
}
static svn_error_t * svn_wc_invoke_relocation_validator2(
svn_wc_relocation_validator2_t _obj, void *baton, const char *uuid, const char *url, svn_boolean_t root, apr_pool_t *pool) {
return _obj(baton, uuid, url, root, pool);
}
static svn_error_t * svn_wc_invoke_relocation_validator(
svn_wc_relocation_validator_t _obj, void *baton, const char *uuid, const char *url) {
return _obj(baton, uuid, url);
}
static svn_error_t * svn_changelist_invoke_receiver(
svn_changelist_receiver_t _obj, void *baton, const char *path, const char *changelist, apr_pool_t *pool) {
return _obj(baton, path, changelist, pool);
}
static svn_error_t *
svn_wc_swig_init_asp_dot_net_hack (apr_pool_t *pool)
{
#if defined(WIN32) || defined(__CYGWIN__)
if (getenv ("SVN_ASP_DOT_NET_HACK"))
SVN_ERR (svn_wc_set_adm_dir("_svn", pool));
#endif /* WIN32 */
return SVN_NO_ERROR;
}
SWIGINTERN struct svn_wc_committed_queue_t *new_svn_wc_committed_queue_t(apr_pool_t *pool){
return svn_wc_committed_queue_create(pool);
}
SWIGINTERN struct svn_wc_traversal_info_t *new_svn_wc_traversal_info_t(apr_pool_t *pool){
return svn_wc_init_traversal_info(pool);
}
SWIGINTERN VALUE
_wrap_svn_wc_version(int argc, VALUE *argv, VALUE self) {
svn_version_t *result = 0 ;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
{
result = (svn_version_t *)svn_wc_version();
}
vresult = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_svn_version_t, 0 | 0 );
return vresult;
fail:
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_context_create(int argc, VALUE *argv, VALUE self) {
svn_wc_context_t **arg1 = (svn_wc_context_t **) 0 ;
svn_config_t *arg2 = (svn_config_t *) 0 ;
apr_pool_t *arg3 = (apr_pool_t *) 0 ;
apr_pool_t *arg4 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
svn_wc_context_t *temp1 ;
void *argp2 = 0 ;
int res2 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
src/subversion/subversion/bindings/swig/ruby/svn_wc.c view on Meta::CPAN
int res = SWIG_ConvertFunctionPtr(argv[2], (void**)(&arg3), SWIGTYPE_p_f_p_p_q_const__char_p_p_q_const__char_p_void_p_q_const__char_p_apr_pool_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_upgrade_get_repos_info_t","svn_wc_upgrade", 3, argv[2] ));
}
}
res4 = SWIG_ConvertPtr(argv[3],SWIG_as_voidptrptr(&arg4), 0, 0);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "void *","svn_wc_upgrade", 4, argv[3] ));
}
{
arg5 = svn_swig_rb_cancel_func;
arg6 = (void *)svn_swig_rb_make_baton(argv[4], _global_svn_swig_rb_pool);
}
{
arg7 = svn_swig_rb_notify_func2;
arg8 = (void *)svn_swig_rb_make_baton(argv[5], _global_svn_swig_rb_pool);
}
if (argc > 6) {
}
{
result = (svn_error_t *)svn_wc_upgrade(arg1,(char const *)arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
{
svn_swig_rb_set_baton(vresult, (VALUE)arg6);
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_relocate4(int argc, VALUE *argv, VALUE self) {
svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
char *arg2 = (char *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
svn_wc_relocation_validator3_t arg5 = (svn_wc_relocation_validator3_t) 0 ;
void *arg6 = (void *) 0 ;
apr_pool_t *arg7 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
void *argp1 = 0 ;
int res1 = 0 ;
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg7);
_global_pool = arg7;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 5) || (argc > 6)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 5)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(argv[0], &argp1,SWIGTYPE_p_svn_wc_context_t, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "svn_wc_context_t *","svn_wc_relocate4", 1, argv[0] ));
}
arg1 = (svn_wc_context_t *)(argp1);
res2 = SWIG_AsCharPtrAndSize(argv[1], &buf2, NULL, &alloc2);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate4", 2, argv[1] ));
}
arg2 = (char *)(buf2);
res3 = SWIG_AsCharPtrAndSize(argv[2], &buf3, NULL, &alloc3);
if (!SWIG_IsOK(res3)) {
SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate4", 3, argv[2] ));
}
arg3 = (char *)(buf3);
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate4", 4, argv[3] ));
}
arg4 = (char *)(buf4);
{
arg5 = svn_swig_rb_wc_relocation_validator3;
arg6 = (void *)svn_swig_rb_make_baton(argv[4], _global_svn_swig_rb_pool);
}
if (argc > 5) {
}
{
result = (svn_error_t *)svn_wc_relocate4(arg1,(char const *)arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc2 == SWIG_NEWOBJ) free((char*)buf2);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_relocate3(int argc, VALUE *argv, VALUE self) {
char *arg1 = (char *) 0 ;
svn_wc_adm_access_t *arg2 = (svn_wc_adm_access_t *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
svn_boolean_t arg5 ;
svn_wc_relocation_validator3_t arg6 = (svn_wc_relocation_validator3_t) 0 ;
void *arg7 = (void *) 0 ;
apr_pool_t *arg8 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res1 ;
char *buf1 = 0 ;
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg8);
_global_pool = arg8;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 6) || (argc > 7)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 6)",argc); SWIG_fail;
}
res1 = SWIG_AsCharPtrAndSize(argv[0], &buf1, NULL, &alloc1);
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate3", 1, argv[0] ));
}
arg1 = (char *)(buf1);
res2 = SWIG_ConvertPtr(argv[1], &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "svn_wc_adm_access_t *","svn_wc_relocate3", 2, argv[1] ));
}
arg2 = (svn_wc_adm_access_t *)(argp2);
res3 = SWIG_AsCharPtrAndSize(argv[2], &buf3, NULL, &alloc3);
if (!SWIG_IsOK(res3)) {
SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate3", 3, argv[2] ));
}
arg3 = (char *)(buf3);
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate3", 4, argv[3] ));
}
arg4 = (char *)(buf4);
arg5 = RTEST(argv[4]);
{
arg6 = svn_swig_rb_wc_relocation_validator3;
arg7 = (void *)svn_swig_rb_make_baton(argv[5], _global_svn_swig_rb_pool);
}
if (argc > 6) {
}
{
result = (svn_error_t *)svn_wc_relocate3((char const *)arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7,arg8);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_relocate2(int argc, VALUE *argv, VALUE self) {
char *arg1 = (char *) 0 ;
svn_wc_adm_access_t *arg2 = (svn_wc_adm_access_t *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
svn_boolean_t arg5 ;
svn_wc_relocation_validator2_t arg6 = (svn_wc_relocation_validator2_t) 0 ;
void *arg7 = (void *) 0 ;
apr_pool_t *arg8 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res1 ;
char *buf1 = 0 ;
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
int res7 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg8);
_global_pool = arg8;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 7) || (argc > 8)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 7)",argc); SWIG_fail;
}
res1 = SWIG_AsCharPtrAndSize(argv[0], &buf1, NULL, &alloc1);
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate2", 1, argv[0] ));
}
arg1 = (char *)(buf1);
res2 = SWIG_ConvertPtr(argv[1], &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "svn_wc_adm_access_t *","svn_wc_relocate2", 2, argv[1] ));
}
arg2 = (svn_wc_adm_access_t *)(argp2);
res3 = SWIG_AsCharPtrAndSize(argv[2], &buf3, NULL, &alloc3);
if (!SWIG_IsOK(res3)) {
SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate2", 3, argv[2] ));
}
arg3 = (char *)(buf3);
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate2", 4, argv[3] ));
}
arg4 = (char *)(buf4);
arg5 = RTEST(argv[4]);
{
int res = SWIG_ConvertFunctionPtr(argv[5], (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_relocation_validator2_t","svn_wc_relocate2", 6, argv[5] ));
}
}
res7 = SWIG_ConvertPtr(argv[6],SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), Ruby_Format_TypeError( "", "void *","svn_wc_relocate2", 7, argv[6] ));
}
if (argc > 7) {
}
{
result = (svn_error_t *)svn_wc_relocate2((char const *)arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7,arg8);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_relocate(int argc, VALUE *argv, VALUE self) {
char *arg1 = (char *) 0 ;
svn_wc_adm_access_t *arg2 = (svn_wc_adm_access_t *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
svn_boolean_t arg5 ;
svn_wc_relocation_validator_t arg6 = (svn_wc_relocation_validator_t) 0 ;
void *arg7 = (void *) 0 ;
apr_pool_t *arg8 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res1 ;
char *buf1 = 0 ;
int alloc1 = 0 ;
void *argp2 = 0 ;
int res2 = 0 ;
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
int res7 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg8);
_global_pool = arg8;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 7) || (argc > 8)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 7)",argc); SWIG_fail;
}
res1 = SWIG_AsCharPtrAndSize(argv[0], &buf1, NULL, &alloc1);
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate", 1, argv[0] ));
}
arg1 = (char *)(buf1);
res2 = SWIG_ConvertPtr(argv[1], &argp2,SWIGTYPE_p_svn_wc_adm_access_t, 0 | 0 );
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "svn_wc_adm_access_t *","svn_wc_relocate", 2, argv[1] ));
}
arg2 = (svn_wc_adm_access_t *)(argp2);
res3 = SWIG_AsCharPtrAndSize(argv[2], &buf3, NULL, &alloc3);
if (!SWIG_IsOK(res3)) {
SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate", 3, argv[2] ));
}
arg3 = (char *)(buf3);
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_relocate", 4, argv[3] ));
}
arg4 = (char *)(buf4);
arg5 = RTEST(argv[4]);
{
int res = SWIG_ConvertFunctionPtr(argv[5], (void**)(&arg6), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_relocation_validator_t","svn_wc_relocate", 6, argv[5] ));
}
}
res7 = SWIG_ConvertPtr(argv[6],SWIG_as_voidptrptr(&arg7), 0, 0);
if (!SWIG_IsOK(res7)) {
SWIG_exception_fail(SWIG_ArgError(res7), Ruby_Format_TypeError( "", "void *","svn_wc_relocate", 7, argv[6] ));
}
if (argc > 7) {
}
{
result = (svn_error_t *)svn_wc_relocate((char const *)arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6,arg7,arg8);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc1 == SWIG_NEWOBJ) free((char*)buf1);
if (alloc3 == SWIG_NEWOBJ) free((char*)buf3);
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_revert4(int argc, VALUE *argv, VALUE self) {
svn_wc_context_t *arg1 = (svn_wc_context_t *) 0 ;
char *arg2 = (char *) 0 ;
svn_depth_t arg3 ;
svn_boolean_t arg4 ;
apr_array_header_t *arg5 = (apr_array_header_t *) 0 ;
svn_cancel_func_t arg6 = (svn_cancel_func_t) 0 ;
void *arg7 = (void *) 0 ;
svn_wc_notify_func2_t arg8 = (svn_wc_notify_func2_t) 0 ;
void *arg9 = (void *) 0 ;
apr_pool_t *arg10 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
void *argp1 = 0 ;
int res1 = 0 ;
int res2 ;
char *buf2 = 0 ;
int alloc2 = 0 ;
void *argp5 = 0 ;
int res5 = 0 ;
svn_error_t *result = 0 ;
src/subversion/subversion/bindings/swig/ruby/svn_wc.c view on Meta::CPAN
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
{
if (*arg2) {
vresult = SWIG_Ruby_AppendOutput(vresult, rb_str_new2(*arg2));
} else {
vresult = SWIG_Ruby_AppendOutput(vresult, Qnil);
}
}
{
if (*arg3) {
vresult = SWIG_Ruby_AppendOutput(vresult, rb_str_new2(*arg3));
} else {
vresult = SWIG_Ruby_AppendOutput(vresult, Qnil);
}
}
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_invoke_relocation_validator3(int argc, VALUE *argv, VALUE self) {
svn_wc_relocation_validator3_t arg1 = (svn_wc_relocation_validator3_t) 0 ;
void *arg2 = (void *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
char *arg5 = (char *) 0 ;
apr_pool_t *arg6 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res2 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
int res5 ;
char *buf5 = 0 ;
int alloc5 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg6);
_global_pool = arg6;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 5) || (argc > 6)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 5)",argc); SWIG_fail;
}
{
int res = SWIG_ConvertFunctionPtr(argv[0], (void**)(&arg1), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_relocation_validator3_t","svn_wc_invoke_relocation_validator3", 1, argv[0] ));
}
}
res2 = SWIG_ConvertPtr(argv[1],SWIG_as_voidptrptr(&arg2), 0, 0);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "void *","svn_wc_invoke_relocation_validator3", 2, argv[1] ));
}
{
if (NIL_P(argv[2])) {
arg3 = NULL;
} else {
arg3 = StringValuePtr(argv[2]);
}
}
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_invoke_relocation_validator3", 4, argv[3] ));
}
arg4 = (char *)(buf4);
res5 = SWIG_AsCharPtrAndSize(argv[4], &buf5, NULL, &alloc5);
if (!SWIG_IsOK(res5)) {
SWIG_exception_fail(SWIG_ArgError(res5), Ruby_Format_TypeError( "", "char const *","svn_wc_invoke_relocation_validator3", 5, argv[4] ));
}
arg5 = (char *)(buf5);
if (argc > 5) {
}
{
result = (svn_error_t *)svn_wc_invoke_relocation_validator3(arg1,arg2,(char const *)arg3,(char const *)arg4,(char const *)arg5,arg6);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
if (alloc5 == SWIG_NEWOBJ) free((char*)buf5);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_invoke_relocation_validator2(int argc, VALUE *argv, VALUE self) {
svn_wc_relocation_validator2_t arg1 = (svn_wc_relocation_validator2_t) 0 ;
void *arg2 = (void *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
svn_boolean_t arg5 ;
apr_pool_t *arg6 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res2 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg6);
_global_pool = arg6;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 5) || (argc > 6)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 5)",argc); SWIG_fail;
}
{
int res = SWIG_ConvertFunctionPtr(argv[0], (void**)(&arg1), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_relocation_validator2_t","svn_wc_invoke_relocation_validator2", 1, argv[0] ));
}
}
res2 = SWIG_ConvertPtr(argv[1],SWIG_as_voidptrptr(&arg2), 0, 0);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "void *","svn_wc_invoke_relocation_validator2", 2, argv[1] ));
}
{
if (NIL_P(argv[2])) {
arg3 = NULL;
} else {
arg3 = StringValuePtr(argv[2]);
}
}
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_invoke_relocation_validator2", 4, argv[3] ));
}
arg4 = (char *)(buf4);
arg5 = RTEST(argv[4]);
if (argc > 5) {
}
{
result = (svn_error_t *)svn_wc_invoke_relocation_validator2(arg1,arg2,(char const *)arg3,(char const *)arg4,arg5,arg6);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return vresult;
fail:
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
{
VALUE target;
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_wc_invoke_relocation_validator(int argc, VALUE *argv, VALUE self) {
svn_wc_relocation_validator_t arg1 = (svn_wc_relocation_validator_t) 0 ;
void *arg2 = (void *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
int res2 ;
int res4 ;
char *buf4 = 0 ;
int alloc4 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
if ((argc < 4) || (argc > 4)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc); SWIG_fail;
}
{
int res = SWIG_ConvertFunctionPtr(argv[0], (void**)(&arg1), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_wc_relocation_validator_t","svn_wc_invoke_relocation_validator", 1, argv[0] ));
}
}
res2 = SWIG_ConvertPtr(argv[1],SWIG_as_voidptrptr(&arg2), 0, 0);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "void *","svn_wc_invoke_relocation_validator", 2, argv[1] ));
}
{
if (NIL_P(argv[2])) {
arg3 = NULL;
} else {
arg3 = StringValuePtr(argv[2]);
}
}
res4 = SWIG_AsCharPtrAndSize(argv[3], &buf4, NULL, &alloc4);
if (!SWIG_IsOK(res4)) {
SWIG_exception_fail(SWIG_ArgError(res4), Ruby_Format_TypeError( "", "char const *","svn_wc_invoke_relocation_validator", 4, argv[3] ));
}
arg4 = (char *)(buf4);
{
result = (svn_error_t *)svn_wc_invoke_relocation_validator(arg1,arg2,(char const *)arg3,(char const *)arg4);
}
{
if (result) {
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
svn_swig_rb_handle_svn_error(result);
}
vresult = Qnil;
}
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
return vresult;
fail:
if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
return Qnil;
}
SWIGINTERN VALUE
_wrap_svn_changelist_invoke_receiver(int argc, VALUE *argv, VALUE self) {
svn_changelist_receiver_t arg1 = (svn_changelist_receiver_t) 0 ;
void *arg2 = (void *) 0 ;
char *arg3 = (char *) 0 ;
char *arg4 = (char *) 0 ;
apr_pool_t *arg5 = (apr_pool_t *) 0 ;
VALUE _global_svn_swig_rb_pool ;
apr_pool_t *_global_pool ;
int res2 ;
int res3 ;
char *buf3 = 0 ;
int alloc3 = 0 ;
svn_error_t *result = 0 ;
VALUE vresult = Qnil;
{
svn_swig_rb_get_pool(argc, argv, self, &_global_svn_swig_rb_pool, &arg5);
_global_pool = arg5;
svn_swig_rb_push_pool(_global_svn_swig_rb_pool);
}
if ((argc < 4) || (argc > 5)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 4)",argc); SWIG_fail;
}
{
int res = SWIG_ConvertFunctionPtr(argv[0], (void**)(&arg1), SWIGTYPE_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t);
if (!SWIG_IsOK(res)) {
SWIG_exception_fail(SWIG_ArgError(res), Ruby_Format_TypeError( "", "svn_changelist_receiver_t","svn_changelist_invoke_receiver", 1, argv[0] ));
}
}
res2 = SWIG_ConvertPtr(argv[1],SWIG_as_voidptrptr(&arg2), 0, 0);
if (!SWIG_IsOK(res2)) {
SWIG_exception_fail(SWIG_ArgError(res2), Ruby_Format_TypeError( "", "void *","svn_changelist_invoke_receiver", 2, argv[1] ));
}
res3 = SWIG_AsCharPtrAndSize(argv[2], &buf3, NULL, &alloc3);
if (!SWIG_IsOK(res3)) {
SWIG_exception_fail(SWIG_ArgError(res3), Ruby_Format_TypeError( "", "char const *","svn_changelist_invoke_receiver", 3, argv[2] ));
}
arg3 = (char *)(buf3);
{
src/subversion/subversion/bindings/swig/ruby/svn_wc.c view on Meta::CPAN
target = _global_vresult_address == &vresult ? self : vresult;
if (!svn_swig_rb_set_pool(target, _global_svn_swig_rb_pool))
svn_swig_rb_destroy_pool(_global_svn_swig_rb_pool);
svn_swig_rb_pop_pool(_global_svn_swig_rb_pool);
}
return Qnil;
}
SWIGINTERN void delete_svn_wc_traversal_info_t(struct svn_wc_traversal_info_t *self){
}
SWIGINTERN void
free_svn_wc_traversal_info_t(struct svn_wc_traversal_info_t *arg1) {
delete_svn_wc_traversal_info_t(arg1);
}
/* -------- 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 *|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};
static swig_type_info _swigt__p_apr_int64_t = {"_p_apr_int64_t", "apr_int64_t *|svn_filesize_t *|apr_time_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_off_t = {"_p_apr_off_t", "apr_off_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_apr_pool_t = {"_p_apr_pool_t", "apr_pool_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_char = {"_p_char", "char *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_apr_getopt_t_p_void_p_apr_pool_t__p_svn_error_t", "svn_opt_subcommand_t *|struct svn_error_t *(*)(apr_getopt_t *,void *,apr_pool_t *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_p_q_const__char_p_p_q_const__char_p_void_p_q_const__char_p_apr_pool_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_q_const__char_p_p_q_const__char_p_void_p_q_const__char_p_apr_pool_t_p_apr_pool_t__p_svn_error_t", "stru...
static swig_type_info _swigt__p_f_p_p_q_const__svn_string_t_p_svn_stream_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_q_const__svn_string_t_p_svn_stream_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(svn_string_t const **,svn_st...
static swig_type_info _swigt__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 = {"_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description2_t_p_void_p_apr_pool...
static swig_type_info _swigt__p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_p_svn_wc_conflict_result_t_p_q_const__svn_wc_conflict_description_t_p_void_p_apr_pool_t__p_svn_error...
static swig_type_info _swigt__p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_q_const__char_p_q_const__svn_wc_entry_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(char const *,svn_wc_entry_...
static swig_type_info _swigt__p_f_p_q_const__char_p_svn_error_t_p_void_p_apr_pool_t__p_svn_error_t = {"_p_f_p_q_const__char_p_svn_error_t_p_void_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(char const *,svn_error_t *,void *,apr_pool_t *)|sv...
static swig_type_info _swigt__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 = {"_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", "svn_error_t ...
static swig_type_info _swigt__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 = {"_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_...
static swig_type_info _swigt__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 = {"_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", "svn_error_t *(*)(svn_wc_ad...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_q_const__apr_arr...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__ch...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_no...
static swig_type_info _swigt__p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_q_const__char_p_void__p_svn_error_t", "struct svn_error_t *(*)(svn_wc_adm_a...
static swig_type_info _swigt__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 = {"_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", "struct svn...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc...
static swig_type_info _swigt__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 = {"_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", "stru...
static swig_type_info _swigt__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 = {"_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_v...
static swig_type_info _swigt__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...
static swig_type_info _swigt__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_hea...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_adm_access_t_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t...
static swig_type_info _swigt__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 = {"_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", "struct svn_error_t *(*...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__char_svn...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_notify_state_t_p_svn_boolean_t_p_...
static swig_type_info _swigt__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_v...
static swig_type_info _swigt__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_ar...
static swig_type_info _swigt__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 = {"_p_f_p_svn_wc_notify_state_t_p_svn_wc_notify_state_t_p_svn_boolean_t_p_q_const__cha...
static swig_type_info _swigt__p_f_p_void__p_svn_error_t = {"_p_f_p_void__p_svn_error_t", "svn_cancel_func_t|struct svn_error_t *(*)(void *)", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_f_p_void_p_p_apr_hash_t_p_q_const__char_p_q_const__char_p_apr_pool_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_p_apr_hash_t_p_q_const__char_p_q_const__char_p_apr_pool_t_p_apr_pool_t__p_svn_error_t", "struct svn_err...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enum_svn_node_kind_t_p_q_const__char_enum_svn_wc_notify_state_t_enum_svn_wc_notify_state_t_long__void = {"_p_f_p_void_p_q_const__char_enum_svn_wc_notify_action_t_enu...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__char__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__char__p_svn_error_t", "svn_wc_relocation_validator_t|struct svn_error_t *(*)(void *,char const *,char const *)", 0, 0, ...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,char const *,apr_pool_t *)...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__char_p_q_const__char_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char co...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__char_svn_boolean_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const ...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__svn_string_t_p_q_const__svn_string_t_svn_depth_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__svn_string_t_p_q_const__svn_string_t_svn_depth_t_p_apr_pool_t_...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_q_const__svn_wc_status3_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_q_const__svn_wc_status3_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,sv...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void = {"_p_f_p_void_p_q_const__char_p_struct_svn_wc_status2_t__void", "void (*)(void *,char const *,struct svn_wc_status2_t *)|svn_wc_status_func2_t", 0, 0, (void*)0...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void = {"_p_f_p_void_p_q_const__char_p_struct_svn_wc_status_t__void", "void (*)(void *,char const *,struct svn_wc_status_t *)|svn_wc_status_func_t", 0, 0, (void*)0, 0}...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_p_svn_wc_status2_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_p_svn_wc_status2_t_p_apr_pool_t__p_svn_error_t", "struct svn_error_t *(*)(void *,char const *,svn_wc_status2_t *,a...
static swig_type_info _swigt__p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_stream_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_svn_error_t = {"_p_f_p_void_p_q_const__char_svn_revnum_t_p_svn_stream_t_p_svn_revnum_t_p_p_apr_hash_t_p_apr_pool_t__p_s...
static swig_type_info _swigt__p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void = {"_p_f_p_void_p_q_const__struct_svn_wc_notify_t_p_apr_pool_t__void", "svn_wc_notify_func2_t|void (*)(void *,struct svn_wc_notify_t const *,apr_pool_t *)",...
static swig_type_info _swigt__p_int = {"_p_int", "int *|svn_boolean_t *|apr_status_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_long = {"_p_long", "long *|svn_revnum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_apr_array_header_t = {"_p_p_apr_array_header_t", "apr_array_header_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_apr_file_t = {"_p_p_apr_file_t", "apr_file_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_apr_hash_t = {"_p_p_apr_hash_t", "apr_hash_t **", 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", "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};
static swig_type_info _swigt__p_p_svn_wc_adm_access_t = {"_p_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_p_svn_wc_committed_queue_t = {"_p_p_svn_wc_committed_queue_t", "struct svn_wc_committed_queue_t **|svn_wc_committed_queue_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_conflict_result_t = {"_p_p_svn_wc_conflict_result_t", "struct svn_wc_conflict_result_t **|svn_wc_conflict_result_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_context_t = {"_p_p_svn_wc_context_t", "struct svn_wc_context_t **|svn_wc_context_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_revision_status_t = {"_p_p_svn_wc_revision_status_t", "struct svn_wc_revision_status_t **|svn_wc_revision_status_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_status2_t = {"_p_p_svn_wc_status2_t", "struct svn_wc_status2_t **|svn_wc_status2_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_status3_t = {"_p_p_svn_wc_status3_t", "struct svn_wc_status3_t **|svn_wc_status3_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_svn_wc_status_t = {"_p_p_svn_wc_status_t", "struct svn_wc_status_t **|svn_wc_status_t **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_p_void = {"_p_p_void", "void **", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_baton_t = {"_p_svn_auth_baton_t", "struct svn_auth_baton_t *|svn_auth_baton_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_cred_simple_t = {"_p_svn_auth_cred_simple_t", "struct svn_auth_cred_simple_t *|svn_auth_cred_simple_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_cred_ssl_client_cert_pw_t = {"_p_svn_auth_cred_ssl_client_cert_pw_t", "struct svn_auth_cred_ssl_client_cert_pw_t *|svn_auth_cred_ssl_client_cert_pw_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_cred_ssl_client_cert_t = {"_p_svn_auth_cred_ssl_client_cert_t", "struct svn_auth_cred_ssl_client_cert_t *|svn_auth_cred_ssl_client_cert_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_cred_ssl_server_trust_t = {"_p_svn_auth_cred_ssl_server_trust_t", "struct svn_auth_cred_ssl_server_trust_t *|svn_auth_cred_ssl_server_trust_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_cred_username_t = {"_p_svn_auth_cred_username_t", "struct svn_auth_cred_username_t *|svn_auth_cred_username_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_iterstate_t = {"_p_svn_auth_iterstate_t", "struct svn_auth_iterstate_t *|svn_auth_iterstate_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_provider_object_t = {"_p_svn_auth_provider_object_t", "struct svn_auth_provider_object_t *|svn_auth_provider_object_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_provider_t = {"_p_svn_auth_provider_t", "struct svn_auth_provider_t *|svn_auth_provider_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_auth_ssl_server_cert_info_t = {"_p_svn_auth_ssl_server_cert_info_t", "struct svn_auth_ssl_server_cert_info_t *|svn_auth_ssl_server_cert_info_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_checksum_ctx_t = {"_p_svn_checksum_ctx_t", "struct svn_checksum_ctx_t *|svn_checksum_ctx_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_checksum_kind_t = {"_p_svn_checksum_kind_t", "enum svn_checksum_kind_t *|svn_checksum_kind_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_checksum_t = {"_p_svn_checksum_t", "struct svn_checksum_t *|svn_checksum_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_commit_info_t = {"_p_svn_commit_info_t", "struct svn_commit_info_t *|svn_commit_info_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_config_t = {"_p_svn_config_t", "struct svn_config_t *|svn_config_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_delta_editor_t = {"_p_svn_delta_editor_t", "struct svn_delta_editor_t *|svn_delta_editor_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_depth_t = {"_p_svn_depth_t", "enum svn_depth_t *|svn_depth_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_conflict_display_style_t = {"_p_svn_diff_conflict_display_style_t", "enum svn_diff_conflict_display_style_t *|svn_diff_conflict_display_style_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_datasource_e = {"_p_svn_diff_datasource_e", "enum svn_diff_datasource_e *|svn_diff_datasource_e *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_file_ignore_space_t = {"_p_svn_diff_file_ignore_space_t", "enum svn_diff_file_ignore_space_t *|svn_diff_file_ignore_space_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_file_options_t = {"_p_svn_diff_file_options_t", "struct svn_diff_file_options_t *|svn_diff_file_options_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_fns2_t = {"_p_svn_diff_fns2_t", "struct svn_diff_fns2_t *|svn_diff_fns2_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_fns_t = {"_p_svn_diff_fns_t", "struct svn_diff_fns_t *|svn_diff_fns_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_hunk_t = {"_p_svn_diff_hunk_t", "struct svn_diff_hunk_t *|svn_diff_hunk_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_operation_kind_e = {"_p_svn_diff_operation_kind_e", "svn_diff_operation_kind_t *|enum svn_diff_operation_kind_e *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_output_fns_t = {"_p_svn_diff_output_fns_t", "struct svn_diff_output_fns_t *|svn_diff_output_fns_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_diff_t = {"_p_svn_diff_t", "struct svn_diff_t *|svn_diff_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_dirent_t = {"_p_svn_dirent_t", "struct svn_dirent_t *|svn_dirent_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_errno_t = {"_p_svn_errno_t", "enum svn_errno_t *|svn_errno_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_error_t = {"_p_svn_error_t", "struct svn_error_t *|svn_error_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_io_dirent2_t = {"_p_svn_io_dirent2_t", "struct svn_io_dirent2_t *|svn_io_dirent2_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_io_dirent_t = {"_p_svn_io_dirent_t", "struct svn_io_dirent_t *|svn_io_dirent_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_io_file_del_t = {"_p_svn_io_file_del_t", "enum svn_io_file_del_t *|svn_io_file_del_t *", 0, 0, (void*)0, 0};
static swig_type_info _swigt__p_svn_location_segment_t = {"_p_svn_location_segment_t", "struct svn_location_segment_t *|svn_location_segment_t *", 0, 0, (void*)0, 0};
src/subversion/subversion/bindings/swig/ruby/svn_wc.c view on Meta::CPAN
rb_define_module_function(mWc, "svn_wc_check_root", _wrap_svn_wc_check_root, -1);
rb_define_module_function(mWc, "svn_wc_is_wc_root2", _wrap_svn_wc_is_wc_root2, -1);
rb_define_module_function(mWc, "svn_wc_is_wc_root", _wrap_svn_wc_is_wc_root, -1);
rb_define_module_function(mWc, "svn_wc_get_actual_target2", _wrap_svn_wc_get_actual_target2, -1);
rb_define_module_function(mWc, "svn_wc_get_actual_target", _wrap_svn_wc_get_actual_target, -1);
rb_define_module_function(mWc, "svn_wc_get_update_editor4", _wrap_svn_wc_get_update_editor4, -1);
rb_define_module_function(mWc, "svn_wc_get_update_editor3", _wrap_svn_wc_get_update_editor3, -1);
rb_define_module_function(mWc, "svn_wc_get_update_editor2", _wrap_svn_wc_get_update_editor2, -1);
rb_define_module_function(mWc, "svn_wc_get_update_editor", _wrap_svn_wc_get_update_editor, -1);
rb_define_module_function(mWc, "svn_wc_get_switch_editor4", _wrap_svn_wc_get_switch_editor4, -1);
rb_define_module_function(mWc, "svn_wc_get_switch_editor3", _wrap_svn_wc_get_switch_editor3, -1);
rb_define_module_function(mWc, "svn_wc_get_switch_editor2", _wrap_svn_wc_get_switch_editor2, -1);
rb_define_module_function(mWc, "svn_wc_get_switch_editor", _wrap_svn_wc_get_switch_editor, -1);
rb_define_module_function(mWc, "svn_wc_prop_list2", _wrap_svn_wc_prop_list2, -1);
rb_define_module_function(mWc, "svn_wc_prop_list", _wrap_svn_wc_prop_list, -1);
rb_define_module_function(mWc, "svn_wc_get_pristine_props", _wrap_svn_wc_get_pristine_props, -1);
rb_define_module_function(mWc, "svn_wc_prop_get2", _wrap_svn_wc_prop_get2, -1);
rb_define_module_function(mWc, "svn_wc_prop_get", _wrap_svn_wc_prop_get, -1);
rb_define_module_function(mWc, "svn_wc_prop_set4", _wrap_svn_wc_prop_set4, -1);
rb_define_module_function(mWc, "svn_wc_prop_set3", _wrap_svn_wc_prop_set3, -1);
rb_define_module_function(mWc, "svn_wc_prop_set2", _wrap_svn_wc_prop_set2, -1);
rb_define_module_function(mWc, "svn_wc_prop_set", _wrap_svn_wc_prop_set, -1);
rb_define_module_function(mWc, "svn_wc_is_normal_prop", _wrap_svn_wc_is_normal_prop, -1);
rb_define_module_function(mWc, "svn_wc_is_wc_prop", _wrap_svn_wc_is_wc_prop, -1);
rb_define_module_function(mWc, "svn_wc_is_entry_prop", _wrap_svn_wc_is_entry_prop, -1);
rb_define_module_function(mWc, "svn_wc_canonicalize_svn_prop", _wrap_svn_wc_canonicalize_svn_prop, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor6", _wrap_svn_wc_get_diff_editor6, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor5", _wrap_svn_wc_get_diff_editor5, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor4", _wrap_svn_wc_get_diff_editor4, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor3", _wrap_svn_wc_get_diff_editor3, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor2", _wrap_svn_wc_get_diff_editor2, -1);
rb_define_module_function(mWc, "svn_wc_get_diff_editor", _wrap_svn_wc_get_diff_editor, -1);
rb_define_module_function(mWc, "svn_wc_diff6", _wrap_svn_wc_diff6, -1);
rb_define_module_function(mWc, "svn_wc_diff5", _wrap_svn_wc_diff5, -1);
rb_define_module_function(mWc, "svn_wc_diff4", _wrap_svn_wc_diff4, -1);
rb_define_module_function(mWc, "svn_wc_diff3", _wrap_svn_wc_diff3, -1);
rb_define_module_function(mWc, "svn_wc_diff2", _wrap_svn_wc_diff2, -1);
rb_define_module_function(mWc, "svn_wc_diff", _wrap_svn_wc_diff, -1);
rb_define_module_function(mWc, "svn_wc_get_prop_diffs2", _wrap_svn_wc_get_prop_diffs2, -1);
rb_define_module_function(mWc, "svn_wc_get_prop_diffs", _wrap_svn_wc_get_prop_diffs, -1);
rb_define_const(mWc, "Svn_wc_merge_unchanged", SWIG_From_int((int)(svn_wc_merge_unchanged)));
rb_define_const(mWc, "Svn_wc_merge_merged", SWIG_From_int((int)(svn_wc_merge_merged)));
rb_define_const(mWc, "Svn_wc_merge_conflict", SWIG_From_int((int)(svn_wc_merge_conflict)));
rb_define_const(mWc, "Svn_wc_merge_no_merge", SWIG_From_int((int)(svn_wc_merge_no_merge)));
rb_define_module_function(mWc, "svn_wc_merge5", _wrap_svn_wc_merge5, -1);
rb_define_module_function(mWc, "svn_wc_merge4", _wrap_svn_wc_merge4, -1);
rb_define_module_function(mWc, "svn_wc_merge3", _wrap_svn_wc_merge3, -1);
rb_define_module_function(mWc, "svn_wc_merge2", _wrap_svn_wc_merge2, -1);
rb_define_module_function(mWc, "svn_wc_merge", _wrap_svn_wc_merge, -1);
rb_define_module_function(mWc, "svn_wc_merge_props3", _wrap_svn_wc_merge_props3, -1);
rb_define_module_function(mWc, "svn_wc_merge_props2", _wrap_svn_wc_merge_props2, -1);
rb_define_module_function(mWc, "svn_wc_merge_props", _wrap_svn_wc_merge_props, -1);
rb_define_module_function(mWc, "svn_wc_merge_prop_diffs", _wrap_svn_wc_merge_prop_diffs, -1);
rb_define_module_function(mWc, "svn_wc_get_pristine_contents2", _wrap_svn_wc_get_pristine_contents2, -1);
rb_define_module_function(mWc, "svn_wc_get_pristine_contents", _wrap_svn_wc_get_pristine_contents, -1);
rb_define_module_function(mWc, "svn_wc_get_pristine_copy_path", _wrap_svn_wc_get_pristine_copy_path, -1);
rb_define_module_function(mWc, "svn_wc_cleanup3", _wrap_svn_wc_cleanup3, -1);
rb_define_module_function(mWc, "svn_wc_cleanup2", _wrap_svn_wc_cleanup2, -1);
rb_define_module_function(mWc, "svn_wc_cleanup", _wrap_svn_wc_cleanup, -1);
rb_define_module_function(mWc, "svn_wc_upgrade", _wrap_svn_wc_upgrade, -1);
rb_define_module_function(mWc, "svn_wc_relocate4", _wrap_svn_wc_relocate4, -1);
rb_define_module_function(mWc, "svn_wc_relocate3", _wrap_svn_wc_relocate3, -1);
rb_define_module_function(mWc, "svn_wc_relocate2", _wrap_svn_wc_relocate2, -1);
rb_define_module_function(mWc, "svn_wc_relocate", _wrap_svn_wc_relocate, -1);
rb_define_module_function(mWc, "svn_wc_revert4", _wrap_svn_wc_revert4, -1);
rb_define_module_function(mWc, "svn_wc_revert3", _wrap_svn_wc_revert3, -1);
rb_define_module_function(mWc, "svn_wc_revert2", _wrap_svn_wc_revert2, -1);
rb_define_module_function(mWc, "svn_wc_revert", _wrap_svn_wc_revert, -1);
rb_define_module_function(mWc, "svn_wc_restore", _wrap_svn_wc_restore, -1);
rb_define_module_function(mWc, "svn_wc_create_tmp_file2", _wrap_svn_wc_create_tmp_file2, -1);
rb_define_module_function(mWc, "svn_wc_create_tmp_file", _wrap_svn_wc_create_tmp_file, -1);
rb_define_module_function(mWc, "svn_wc_translated_file2", _wrap_svn_wc_translated_file2, -1);
rb_define_module_function(mWc, "svn_wc_translated_file", _wrap_svn_wc_translated_file, -1);
rb_define_module_function(mWc, "svn_wc_translated_stream", _wrap_svn_wc_translated_stream, -1);
rb_define_module_function(mWc, "svn_wc_transmit_text_deltas3", _wrap_svn_wc_transmit_text_deltas3, -1);
rb_define_module_function(mWc, "svn_wc_transmit_text_deltas2", _wrap_svn_wc_transmit_text_deltas2, -1);
rb_define_module_function(mWc, "svn_wc_transmit_text_deltas", _wrap_svn_wc_transmit_text_deltas, -1);
rb_define_module_function(mWc, "svn_wc_transmit_prop_deltas2", _wrap_svn_wc_transmit_prop_deltas2, -1);
rb_define_module_function(mWc, "svn_wc_transmit_prop_deltas", _wrap_svn_wc_transmit_prop_deltas, -1);
rb_define_module_function(mWc, "svn_wc_get_default_ignores", _wrap_svn_wc_get_default_ignores, -1);
rb_define_module_function(mWc, "svn_wc_get_ignores2", _wrap_svn_wc_get_ignores2, -1);
rb_define_module_function(mWc, "svn_wc_get_ignores", _wrap_svn_wc_get_ignores, -1);
rb_define_module_function(mWc, "svn_wc_match_ignore_list", _wrap_svn_wc_match_ignore_list, -1);
rb_define_module_function(mWc, "svn_wc_add_lock2", _wrap_svn_wc_add_lock2, -1);
rb_define_module_function(mWc, "svn_wc_add_lock", _wrap_svn_wc_add_lock, -1);
rb_define_module_function(mWc, "svn_wc_remove_lock2", _wrap_svn_wc_remove_lock2, -1);
rb_define_module_function(mWc, "svn_wc_remove_lock", _wrap_svn_wc_remove_lock, -1);
SwigClassSvn_wc_revision_status_t.klass = rb_define_class_under(mWc, "Svn_wc_revision_status_t", rb_cObject);
SWIG_TypeClientData(SWIGTYPE_p_svn_wc_revision_status_t, (void *) &SwigClassSvn_wc_revision_status_t);
rb_define_alloc_func(SwigClassSvn_wc_revision_status_t.klass, _wrap_svn_wc_revision_status_t_allocate);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "initialize", _wrap_new_svn_wc_revision_status_t, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "min_rev=", _wrap_svn_wc_revision_status_t_min_rev_set, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "min_rev", _wrap_svn_wc_revision_status_t_min_rev_get, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "max_rev=", _wrap_svn_wc_revision_status_t_max_rev_set, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "max_rev", _wrap_svn_wc_revision_status_t_max_rev_get, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "switched=", _wrap_svn_wc_revision_status_t_switched_set, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "switched", _wrap_svn_wc_revision_status_t_switched_get, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "modified=", _wrap_svn_wc_revision_status_t_modified_set, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "modified", _wrap_svn_wc_revision_status_t_modified_get, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "sparse_checkout=", _wrap_svn_wc_revision_status_t_sparse_checkout_set, -1);
rb_define_method(SwigClassSvn_wc_revision_status_t.klass, "sparse_checkout", _wrap_svn_wc_revision_status_t_sparse_checkout_get, -1);
SwigClassSvn_wc_revision_status_t.mark = 0;
SwigClassSvn_wc_revision_status_t.destroy = (void (*)(void *)) free_svn_wc_revision_status_t;
SwigClassSvn_wc_revision_status_t.trackObjects = 0;
rb_define_module_function(mWc, "svn_wc_revision_status2", _wrap_svn_wc_revision_status2, -1);
rb_define_module_function(mWc, "svn_wc_set_changelist2", _wrap_svn_wc_set_changelist2, -1);
rb_define_module_function(mWc, "svn_wc_set_changelist", _wrap_svn_wc_set_changelist, -1);
rb_define_module_function(mWc, "svn_wc_get_changelists", _wrap_svn_wc_get_changelists, -1);
rb_define_module_function(mWc, "svn_wc_crop_tree2", _wrap_svn_wc_crop_tree2, -1);
rb_define_module_function(mWc, "svn_wc_crop_tree", _wrap_svn_wc_crop_tree, -1);
rb_define_module_function(mWc, "svn_wc_exclude", _wrap_svn_wc_exclude, -1);
rb_define_module_function(mWc, "svn_wc_read_kind2", _wrap_svn_wc_read_kind2, -1);
rb_define_module_function(mWc, "svn_wc_read_kind", _wrap_svn_wc_read_kind, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_file_opened", _wrap_svn_wc_diff_callbacks4_invoke_file_opened, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_file_changed", _wrap_svn_wc_diff_callbacks4_invoke_file_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_file_added", _wrap_svn_wc_diff_callbacks4_invoke_file_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_file_deleted", _wrap_svn_wc_diff_callbacks4_invoke_file_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_dir_deleted", _wrap_svn_wc_diff_callbacks4_invoke_dir_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_dir_opened", _wrap_svn_wc_diff_callbacks4_invoke_dir_opened, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_dir_added", _wrap_svn_wc_diff_callbacks4_invoke_dir_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_dir_props_changed", _wrap_svn_wc_diff_callbacks4_invoke_dir_props_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks4_invoke_dir_closed", _wrap_svn_wc_diff_callbacks4_invoke_dir_closed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_file_changed", _wrap_svn_wc_diff_callbacks3_invoke_file_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_file_added", _wrap_svn_wc_diff_callbacks3_invoke_file_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_file_deleted", _wrap_svn_wc_diff_callbacks3_invoke_file_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_dir_added", _wrap_svn_wc_diff_callbacks3_invoke_dir_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_dir_deleted", _wrap_svn_wc_diff_callbacks3_invoke_dir_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_dir_props_changed", _wrap_svn_wc_diff_callbacks3_invoke_dir_props_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_dir_opened", _wrap_svn_wc_diff_callbacks3_invoke_dir_opened, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks3_invoke_dir_closed", _wrap_svn_wc_diff_callbacks3_invoke_dir_closed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_file_changed", _wrap_svn_wc_diff_callbacks2_invoke_file_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_file_added", _wrap_svn_wc_diff_callbacks2_invoke_file_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_file_deleted", _wrap_svn_wc_diff_callbacks2_invoke_file_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_dir_added", _wrap_svn_wc_diff_callbacks2_invoke_dir_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_dir_deleted", _wrap_svn_wc_diff_callbacks2_invoke_dir_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks2_invoke_dir_props_changed", _wrap_svn_wc_diff_callbacks2_invoke_dir_props_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_file_changed", _wrap_svn_wc_diff_callbacks_invoke_file_changed, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_file_added", _wrap_svn_wc_diff_callbacks_invoke_file_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_file_deleted", _wrap_svn_wc_diff_callbacks_invoke_file_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_dir_added", _wrap_svn_wc_diff_callbacks_invoke_dir_added, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_dir_deleted", _wrap_svn_wc_diff_callbacks_invoke_dir_deleted, -1);
rb_define_module_function(mWc, "svn_wc_diff_callbacks_invoke_props_changed", _wrap_svn_wc_diff_callbacks_invoke_props_changed, -1);
rb_define_module_function(mWc, "svn_wc_entry_callbacks2_invoke_found_entry", _wrap_svn_wc_entry_callbacks2_invoke_found_entry, -1);
rb_define_module_function(mWc, "svn_wc_entry_callbacks2_invoke_handle_error", _wrap_svn_wc_entry_callbacks2_invoke_handle_error, -1);
rb_define_module_function(mWc, "svn_wc_entry_callbacks_invoke_found_entry", _wrap_svn_wc_entry_callbacks_invoke_found_entry, -1);
rb_define_module_function(mWc, "svn_wc_invoke_external_update", _wrap_svn_wc_invoke_external_update, -1);
rb_define_module_function(mWc, "svn_wc_invoke_notify_func2", _wrap_svn_wc_invoke_notify_func2, -1);
rb_define_module_function(mWc, "svn_wc_invoke_notify_func", _wrap_svn_wc_invoke_notify_func, -1);
rb_define_module_function(mWc, "svn_wc_invoke_conflict_resolver_func2", _wrap_svn_wc_invoke_conflict_resolver_func2, -1);
rb_define_module_function(mWc, "svn_wc_invoke_conflict_resolver_func", _wrap_svn_wc_invoke_conflict_resolver_func, -1);
rb_define_module_function(mWc, "svn_wc_invoke_status_func4", _wrap_svn_wc_invoke_status_func4, -1);
rb_define_module_function(mWc, "svn_wc_invoke_status_func3", _wrap_svn_wc_invoke_status_func3, -1);
rb_define_module_function(mWc, "svn_wc_invoke_status_func2", _wrap_svn_wc_invoke_status_func2, -1);
rb_define_module_function(mWc, "svn_wc_invoke_status_func", _wrap_svn_wc_invoke_status_func, -1);
rb_define_module_function(mWc, "svn_wc_invoke_get_file", _wrap_svn_wc_invoke_get_file, -1);
rb_define_module_function(mWc, "svn_wc_invoke_dirents_func", _wrap_svn_wc_invoke_dirents_func, -1);
rb_define_module_function(mWc, "svn_wc_invoke_canonicalize_svn_prop_get_file", _wrap_svn_wc_invoke_canonicalize_svn_prop_get_file, -1);
rb_define_module_function(mWc, "svn_wc_invoke_upgrade_get_repos_info", _wrap_svn_wc_invoke_upgrade_get_repos_info, -1);
rb_define_module_function(mWc, "svn_wc_invoke_relocation_validator3", _wrap_svn_wc_invoke_relocation_validator3, -1);
rb_define_module_function(mWc, "svn_wc_invoke_relocation_validator2", _wrap_svn_wc_invoke_relocation_validator2, -1);
rb_define_module_function(mWc, "svn_wc_invoke_relocation_validator", _wrap_svn_wc_invoke_relocation_validator, -1);
rb_define_module_function(mWc, "svn_changelist_invoke_receiver", _wrap_svn_changelist_invoke_receiver, -1);
rb_define_module_function(mWc, "svn_wc_swig_init_asp_dot_net_hack", _wrap_svn_wc_swig_init_asp_dot_net_hack, -1);
SwigClassSvn_wc_committed_queue_t.klass = rb_define_class_under(mWc, "Svn_wc_committed_queue_t", rb_cObject);
SWIG_TypeClientData(SWIGTYPE_p_svn_wc_committed_queue_t, (void *) &SwigClassSvn_wc_committed_queue_t);
rb_define_alloc_func(SwigClassSvn_wc_committed_queue_t.klass, _wrap_svn_wc_committed_queue_t_allocate);
rb_define_method(SwigClassSvn_wc_committed_queue_t.klass, "initialize", _wrap_new_svn_wc_committed_queue_t, -1);
SwigClassSvn_wc_committed_queue_t.mark = 0;
SwigClassSvn_wc_committed_queue_t.destroy = (void (*)(void *)) free_svn_wc_committed_queue_t;
SwigClassSvn_wc_committed_queue_t.trackObjects = 0;
SwigClassSvn_wc_traversal_info_t.klass = rb_define_class_under(mWc, "Svn_wc_traversal_info_t", rb_cObject);
SWIG_TypeClientData(SWIGTYPE_p_svn_wc_traversal_info_t, (void *) &SwigClassSvn_wc_traversal_info_t);
rb_define_alloc_func(SwigClassSvn_wc_traversal_info_t.klass, _wrap_svn_wc_traversal_info_t_allocate);
rb_define_method(SwigClassSvn_wc_traversal_info_t.klass, "initialize", _wrap_new_svn_wc_traversal_info_t, -1);
SwigClassSvn_wc_traversal_info_t.mark = 0;
SwigClassSvn_wc_traversal_info_t.destroy = (void (*)(void *)) free_svn_wc_traversal_info_t;
SwigClassSvn_wc_traversal_info_t.trackObjects = 0;
}
( run in 0.635 second using v1.01-cache-2.11-cpan-71847e10f99 )