1333347Speter/*
2333347Speter* libsvn_fs_x/fs_init.h:  Exported function of libsvn_fs_x
3333347Speter*
4333347Speter* ====================================================================
5333347Speter*    Licensed to the Apache Software Foundation (ASF) under one
6333347Speter*    or more contributor license agreements.  See the NOTICE file
7333347Speter*    distributed with this work for additional information
8333347Speter*    regarding copyright ownership.  The ASF licenses this file
9333347Speter*    to you under the Apache License, Version 2.0 (the
10333347Speter*    "License"); you may not use this file except in compliance
11333347Speter*    with the License.  You may obtain a copy of the License at
12333347Speter*
13333347Speter*      http://www.apache.org/licenses/LICENSE-2.0
14333347Speter*
15333347Speter*    Unless required by applicable law or agreed to in writing,
16333347Speter*    software distributed under the License is distributed on an
17333347Speter*    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18333347Speter*    KIND, either express or implied.  See the License for the
19333347Speter*    specific language governing permissions and limitations
20333347Speter*    under the License.
21333347Speter* ====================================================================
22333347Speter*/
23333347Speter
24333347Speter#ifndef LIBSVN_FS_LOADER_H
25333347Speter#error Please include libsvn_fs/fs_loader.h instead of this file
26333347Speter#else
27333347Speter
28333347Spetersvn_error_t *svn_fs_x__init(const svn_version_t *loader_version,
29333347Speter  fs_library_vtable_t **vtable,
30333347Speter  apr_pool_t* common_pool);
31333347Speter
32333347Speter#endif
33333347Speter
34