52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
/**
|
|
*******************************************************************************
|
|
* @file charsetTable.h
|
|
* @brief Editeur De N'ours : Table of all charset convertions (Header)
|
|
* @author Edouard DUPIN
|
|
* @date 06/06/2011
|
|
* @par Project
|
|
* Edn
|
|
*
|
|
* @par Copyright
|
|
* Copyright 2010 Edouard DUPIN, all right reserved
|
|
*
|
|
* This software is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY.
|
|
*
|
|
* Licence summary :
|
|
* You can modify and redistribute the sources code and binaries.
|
|
* You can send me the bug-fix
|
|
* You can not earn money with this Software (if the source extract from Edn
|
|
* represent less than 50% of original Sources)
|
|
* Term of the licence in in the file licence.txt.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef __CHARSET_TABLE_H__
|
|
#define __CHARSET_TABLE_H__
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern const int32_t TableIso8859_1[];
|
|
extern const int32_t TableIso8859_2[];
|
|
extern const int32_t TableIso8859_3[];
|
|
extern const int32_t TableIso8859_4[];
|
|
extern const int32_t TableIso8859_5[];
|
|
extern const int32_t TableIso8859_6[];
|
|
extern const int32_t TableIso8859_7[];
|
|
extern const int32_t TableIso8859_8[];
|
|
extern const int32_t TableIso8859_9[];
|
|
extern const int32_t TableIso8859_10[];
|
|
extern const int32_t TableIso8859_11[];
|
|
extern const int32_t TableIso8859_13[];
|
|
extern const int32_t TableIso8859_14[];
|
|
extern const int32_t TableIso8859_15[];
|
|
|
|
;
|
|
}
|
|
|
|
#endif
|