Mark many merge tests as skip-against-old-server.
[svn.git] / subversion / libsvn_fs_base / uuid.h
blob7486bea71775f7af7eacfb4ef3a73548e7ec104c
1 /* uuid.h : internal interface to uuid functions
3 * ====================================================================
4 * Copyright (c) 2000-2004 CollabNet. All rights reserved.
6 * This software is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at http://subversion.tigris.org/license-1.html.
9 * If newer versions of this license are posted there, you may use a
10 * newer version instead, at your option.
12 * This software consists of voluntary contributions made by many
13 * individuals. For exact contribution history, see the revision
14 * history and logs, available at http://subversion.tigris.org/.
15 * ====================================================================
18 #ifndef SVN_LIBSVN_FS_UUID_H
19 #define SVN_LIBSVN_FS_UUID_H
21 #ifdef __cplusplus
22 extern "C" {
23 #endif /* __cplusplus */
27 /* These functions implement some of the calls in the FS loader
28 library's fs vtable. */
30 svn_error_t *svn_fs_base__get_uuid(svn_fs_t *fs, const char **uuid,
31 apr_pool_t *pool);
33 svn_error_t *svn_fs_base__set_uuid(svn_fs_t *fs, const char *uuid,
34 apr_pool_t *pool);
37 #ifdef __cplusplus
39 #endif /* __cplusplus */
41 #endif /* SVN_LIBSVN_FS_UUID_H */