Prepare for Unicode 3.1 support.
[libiconv.git] / libcharset / include / libcharset.h.msvc-shared
blobac5689531f392c7b7d0bca9f325a735cc5dc4789
1 /* Copyright (C) 2000-2001 Free Software Foundation, Inc.
2    This file is part of the GNU CHARSET Library.
4    The GNU CHARSET Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    License, or (at your option) any later version.
9    The GNU CHARSET Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Library General Public License for more details.
14    You should have received a copy of the GNU Library General Public License
15    along with the GNU CHARSET Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
19 #ifndef _LIBCHARSET_H
20 #define _LIBCHARSET_H
22 #ifdef BUILDING_LIBCHARSET
23 #define LIBCHARSET_DLL_EXPORTED __declspec(dllexport)
24 #else
25 #define LIBCHARSET_DLL_EXPORTED __declspec(dllimport)
26 #endif
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
34 /* Determine the current locale's character encoding, and canonicalize it
35    into one of the canonical names listed in config.charset.
36    The result must not be freed; it is statically allocated.
37    If the canonical name cannot be determined, the result is a non-canonical
38    name.  */
39 extern LIBCHARSET_DLL_EXPORTED const char * locale_charset (void);
42 #ifdef __cplusplus
44 #endif
47 #endif /* _LIBCHARSET_H */