Subversion
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
svn_nls.h
Go to the documentation of this file.
1 /**
2  * @copyright
3  * ====================================================================
4  * Copyright (c) 2000-2005, 2008 CollabNet. All rights reserved.
5  *
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.
11  *
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  * ====================================================================
16  * @endcopyright
17  *
18  * @file svn_nls.h
19  * @brief Support functions for NLS programs
20  */
21 
22 
23 
24 #ifndef SVN_NLS_H
25 #define SVN_NLS_H
26 
27 #include "svn_types.h"
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32 
33 /** Set up the NLS.
34  * Return the error @c APR_EINVAL or @c APR_INCOMPLETE if an
35  * error occurs.
36  *
37  * @note This function is for bindings. You should usually
38  * use svn_cmdline_init() instead of calling this
39  * function directly. This function should be called
40  * after initializing APR.
41  *
42  * @since New in 1.3.
43  */
45 svn_nls_init(void);
46 
47 #ifdef __cplusplus
48 }
49 #endif /* __cplusplus */
50 
51 #endif /* SVN_NLS_H */