/** * @copyright * ==================================================================== * Copyright (c) 2007 CollabNet. All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at http://subversion.tigris.org/license-1.html. * If newer versions of this license are posted there, you may use a * newer version instead, at your option. * * This software consists of voluntary contributions made by many * individuals. For exact contribution history, see the revision * history and logs, available at http://subversion.tigris.org/. * ==================================================================== * @endcopyright * * @file svn_ra_private.h * @brief The Subversion repository access library - Internal routines */ #ifndef SVN_RA_PRIVATE_H #define SVN_RA_PRIVATE_H #include #include "svn_error.h" #include "svn_ra.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /* Return an error with code SVN_ERR_UNSUPPORTED_FEATURE, and an error message referencing PATH_OR_URL, if the "server" pointed to be RA_SESSION doesn't support Merge Tracking (e.g. is pre-1.5). Perform temporary allocations in POOL. */ svn_error_t * svn_ra__assert_mergeinfo_capable_server(svn_ra_session_t *ra_session, const char *path_or_url, apr_pool_t *pool); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_RA_PRIVATE_H */