Subversion
svn_nls.h
Go to the documentation of this file.
00001 /**
00002  * @copyright
00003  * ====================================================================
00004  *    Licensed to the Apache Software Foundation (ASF) under one
00005  *    or more contributor license agreements.  See the NOTICE file
00006  *    distributed with this work for additional information
00007  *    regarding copyright ownership.  The ASF licenses this file
00008  *    to you under the Apache License, Version 2.0 (the
00009  *    "License"); you may not use this file except in compliance
00010  *    with the License.  You may obtain a copy of the License at
00011  *
00012  *      http://www.apache.org/licenses/LICENSE-2.0
00013  *
00014  *    Unless required by applicable law or agreed to in writing,
00015  *    software distributed under the License is distributed on an
00016  *    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
00017  *    KIND, either express or implied.  See the License for the
00018  *    specific language governing permissions and limitations
00019  *    under the License.
00020  * ====================================================================
00021  * @endcopyright
00022  *
00023  * @file svn_nls.h
00024  * @brief Support functions for NLS programs
00025  */
00026 
00027 
00028 
00029 #ifndef SVN_NLS_H
00030 #define SVN_NLS_H
00031 
00032 #include "svn_types.h"
00033 
00034 #ifdef __cplusplus
00035 extern "C" {
00036 #endif /* __cplusplus */
00037 
00038 /** Set up the NLS.
00039  * Return the error @c APR_EINVAL or @c APR_INCOMPLETE if an
00040  * error occurs.
00041  *
00042  * @note This function is for bindings. You should usually
00043  *       use svn_cmdline_init() instead of calling this
00044  *       function directly. This function should be called
00045  *       after initializing APR.
00046  *
00047  * @since New in 1.3.
00048  */
00049 svn_error_t *
00050 svn_nls_init(void);
00051 
00052 #ifdef __cplusplus
00053 }
00054 #endif /* __cplusplus */
00055 
00056 #endif /* SVN_NLS_H */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines