/*============================================================================== Copyright (C) 2008 Martin Furter This file is part of svntar svntar is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. svntar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with svntar; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ==============================================================================*/ #ifndef SVN_SUPPORT_H #define SVN_SUPPORT_H #include "svn_client.h" #include "svn_pools.h" #ifndef _ #define _(x) x #endif svn_error_t* svntar_init_client_context( svn_client_ctx_t** pctx, apr_pool_t* pool ); svn_error_t* svntar_start_cmd( apr_proc_t* cmd_proc, const char* const* args, apr_file_t* outfile, apr_pool_t* pool ); #endif /* SVN_SUPPORT_H */