1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*
* Codepage functions
*
* Copyright (c) 2010-2012, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This software is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined( _LIBCLOCALE_CODEPAGE_H )
#define _LIBCLOCALE_CODEPAGE_H
#include <common.h>
#include <types.h>
#include "libclocale_extern.h"
#include "libclocale_libcerror.h"
#if defined( __cplusplus )
extern "C" {
#endif
/* The codepage feature flag definitions
*/
enum LIBCLOCALE_CODEPAGE_FEATURE_FLAGS
{
LIBCLOCALE_CODEPAGE_FEATURE_FLAG_HAVE_ISO_8859 = 0x00000001UL,
LIBCLOCALE_CODEPAGE_FEATURE_FLAG_HAVE_KOI8 = 0x00000002UL,
LIBCLOCALE_CODEPAGE_FEATURE_FLAG_HAVE_WINDOWS = 0x00000004UL,
};
/* The codepage set definitions
*/
enum LIBCLOCALE_CODEPAGE_SETS
{
LIBCLOCALE_CODEPAGE_SET_GENERIC = 1,
LIBCLOCALE_CODEPAGE_SET_ISO_8859 = (int) 'i',
LIBCLOCALE_CODEPAGE_SET_KOI8 = (int) 'k',
LIBCLOCALE_CODEPAGE_SET_WINDOWS = (int) 'w'
};
/* The codepage definitions
*/
enum LIBCLOCALE_CODEPAGES
{
LIBCLOCALE_CODEPAGE_ASCII = 20127,
LIBCLOCALE_CODEPAGE_ISO_8859_1 = 28591,
LIBCLOCALE_CODEPAGE_ISO_8859_2 = 28592,
LIBCLOCALE_CODEPAGE_ISO_8859_3 = 28593,
LIBCLOCALE_CODEPAGE_ISO_8859_4 = 28594,
LIBCLOCALE_CODEPAGE_ISO_8859_5 = 28595,
LIBCLOCALE_CODEPAGE_ISO_8859_6 = 28596,
LIBCLOCALE_CODEPAGE_ISO_8859_7 = 28597,
LIBCLOCALE_CODEPAGE_ISO_8859_8 = 28598,
LIBCLOCALE_CODEPAGE_ISO_8859_9 = 28599,
LIBCLOCALE_CODEPAGE_ISO_8859_10 = 28600,
LIBCLOCALE_CODEPAGE_ISO_8859_11 = 28601,
LIBCLOCALE_CODEPAGE_ISO_8859_13 = 28603,
LIBCLOCALE_CODEPAGE_ISO_8859_14 = 28604,
LIBCLOCALE_CODEPAGE_ISO_8859_15 = 28605,
LIBCLOCALE_CODEPAGE_ISO_8859_16 = 28606,
LIBCLOCALE_CODEPAGE_KOI8_R = 20866,
LIBCLOCALE_CODEPAGE_KOI8_U = 21866,
LIBCLOCALE_CODEPAGE_WINDOWS_874 = 874,
LIBCLOCALE_CODEPAGE_WINDOWS_932 = 932,
LIBCLOCALE_CODEPAGE_WINDOWS_936 = 936,
LIBCLOCALE_CODEPAGE_WINDOWS_949 = 949,
LIBCLOCALE_CODEPAGE_WINDOWS_950 = 950,
LIBCLOCALE_CODEPAGE_WINDOWS_1250 = 1250,
LIBCLOCALE_CODEPAGE_WINDOWS_1251 = 1251,
LIBCLOCALE_CODEPAGE_WINDOWS_1252 = 1252,
LIBCLOCALE_CODEPAGE_WINDOWS_1253 = 1253,
LIBCLOCALE_CODEPAGE_WINDOWS_1254 = 1254,
LIBCLOCALE_CODEPAGE_WINDOWS_1255 = 1255,
LIBCLOCALE_CODEPAGE_WINDOWS_1256 = 1256,
LIBCLOCALE_CODEPAGE_WINDOWS_1257 = 1257,
LIBCLOCALE_CODEPAGE_WINDOWS_1258 = 1258
};
LIBCLOCALE_EXTERN \
int libclocale_codepage;
LIBCLOCALE_EXTERN \
int libclocale_codepage_get(
int *codepage,
libcerror_error_t **error );
LIBCLOCALE_EXTERN \
int libclocale_codepage_set(
int codepage,
libcerror_error_t **error );
LIBCLOCALE_EXTERN \
int libclocale_codepage_copy_from_string(
int *codepage,
const char *string,
size_t string_length,
uint32_t feature_flags,
libcerror_error_t **error );
#if defined( HAVE_WIDE_CHARACTER_TYPE )
LIBCLOCALE_EXTERN \
int libclocale_codepage_copy_from_string_wide(
int *codepage,
const wchar_t *string,
size_t string_length,
uint32_t feature_flags,
libcerror_error_t **error );
#endif /* defined( HAVE_WIDE_CHARACTER_TYPE ) */
#if defined( __cplusplus )
}
#endif
#endif
|