File: libbfio_codepage.h

package info (click to toggle)
libolecf 20181231-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,476 kB
  • sloc: ansic: 182,255; sh: 6,096; makefile: 1,356; python: 325; sed: 16
file content (90 lines) | stat: -rw-r--r-- 2,616 bytes parent folder | download | duplicates (35)
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
/*
 * Codepage functions
 *
 * Copyright (C) 2009-2018, 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( _LIBBFIO_INTERNAL_CODEPAGE_H )
#define _LIBBFIO_INTERNAL_CODEPAGE_H

#include <common.h>
#include <types.h>

#if defined( __cplusplus )
extern "C" {
#endif

#if !defined( HAVE_LOCAL_LIBBFIO )

#include <libbfio/codepage.h>

/* Define HAVE_LOCAL_LIBBFIO for local use of libbfio
 * The definitions in <libbfio/codepage.h> are copied here
 * for local use of libbfio
 */
#else

/* The codepage definitions
 */
enum LIBBFIO_CODEPAGES
{
	LIBBFIO_CODEPAGE_ASCII		= 20127,

	LIBBFIO_CODEPAGE_ISO_8859_1	= 28591,
	LIBBFIO_CODEPAGE_ISO_8859_2	= 28592,
	LIBBFIO_CODEPAGE_ISO_8859_3	= 28593,
	LIBBFIO_CODEPAGE_ISO_8859_4	= 28594,
	LIBBFIO_CODEPAGE_ISO_8859_5	= 28595,
	LIBBFIO_CODEPAGE_ISO_8859_6	= 28596,
	LIBBFIO_CODEPAGE_ISO_8859_7	= 28597,
	LIBBFIO_CODEPAGE_ISO_8859_8	= 28598,
	LIBBFIO_CODEPAGE_ISO_8859_9	= 28599,
	LIBBFIO_CODEPAGE_ISO_8859_10	= 28600,
	LIBBFIO_CODEPAGE_ISO_8859_11	= 28601,
	LIBBFIO_CODEPAGE_ISO_8859_13	= 28603,
	LIBBFIO_CODEPAGE_ISO_8859_14	= 28604,
	LIBBFIO_CODEPAGE_ISO_8859_15	= 28605,
	LIBBFIO_CODEPAGE_ISO_8859_16	= 28606,

	LIBBFIO_CODEPAGE_KOI8_R		= 20866,
	LIBBFIO_CODEPAGE_KOI8_U		= 21866,

	LIBBFIO_CODEPAGE_WINDOWS_874	= 874,
	LIBBFIO_CODEPAGE_WINDOWS_932	= 932,
	LIBBFIO_CODEPAGE_WINDOWS_936	= 936,
	LIBBFIO_CODEPAGE_WINDOWS_949	= 949,
	LIBBFIO_CODEPAGE_WINDOWS_950	= 950,
	LIBBFIO_CODEPAGE_WINDOWS_1250	= 1250,
	LIBBFIO_CODEPAGE_WINDOWS_1251	= 1251,
	LIBBFIO_CODEPAGE_WINDOWS_1252	= 1252,
	LIBBFIO_CODEPAGE_WINDOWS_1253	= 1253,
	LIBBFIO_CODEPAGE_WINDOWS_1254	= 1254,
	LIBBFIO_CODEPAGE_WINDOWS_1255	= 1255,
	LIBBFIO_CODEPAGE_WINDOWS_1256	= 1256,
	LIBBFIO_CODEPAGE_WINDOWS_1257	= 1257,
	LIBBFIO_CODEPAGE_WINDOWS_1258	= 1258
};

#endif /* !defined( HAVE_LOCAL_LIBBFIO ) */

#if defined( __cplusplus )
}
#endif

#endif /* !defined( _LIBBFIO_INTERNAL_CODEPAGE_H ) */