1251881Speter/*
2251881Speter * deprecated.c:  holding file for all deprecated APIs.
3251881Speter *                "we can't lose 'em, but we can shun 'em!"
4251881Speter *
5251881Speter * ====================================================================
6251881Speter *    Licensed to the Apache Software Foundation (ASF) under one
7251881Speter *    or more contributor license agreements.  See the NOTICE file
8251881Speter *    distributed with this work for additional information
9251881Speter *    regarding copyright ownership.  The ASF licenses this file
10251881Speter *    to you under the Apache License, Version 2.0 (the
11251881Speter *    "License"); you may not use this file except in compliance
12251881Speter *    with the License.  You may obtain a copy of the License at
13251881Speter *
14251881Speter *      http://www.apache.org/licenses/LICENSE-2.0
15251881Speter *
16251881Speter *    Unless required by applicable law or agreed to in writing,
17251881Speter *    software distributed under the License is distributed on an
18251881Speter *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
19251881Speter *    KIND, either express or implied.  See the License for the
20251881Speter *    specific language governing permissions and limitations
21251881Speter *    under the License.
22251881Speter * ====================================================================
23251881Speter */
24251881Speter
25251881Speter/* We define this here to remove any further warnings about the usage of
26251881Speter   deprecated functions in this file. */
27251881Speter#define SVN_DEPRECATED
28251881Speter
29251881Speter#include "svn_delta.h"
30251881Speter#include "svn_sorts.h"
31251881Speter
32251881Speter
33251881Spetersvn_error_t *
34251881Spetersvn_delta_path_driver(const svn_delta_editor_t *editor,
35251881Speter                      void *edit_baton,
36251881Speter                      svn_revnum_t revision,
37251881Speter                      const apr_array_header_t *paths,
38251881Speter                      svn_delta_path_driver_cb_func_t callback_func,
39251881Speter                      void *callback_baton,
40251881Speter                      apr_pool_t *scratch_pool)
41251881Speter{
42251881Speter  /* REVISION is dropped on the floor.  */
43251881Speter
44251881Speter  return svn_error_trace(svn_delta_path_driver2(editor, edit_baton, paths,
45251881Speter                                                TRUE,
46251881Speter                                                callback_func, callback_baton,
47251881Speter                                                scratch_pool));
48251881Speter}
49