51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/**
|
|
*******************************************************************************
|
|
* @file unicodeTable.h
|
|
* @brief ETK : Table of all charset convertions (Header)
|
|
* @author Edouard DUPIN
|
|
* @date 18/01/2012
|
|
* @par Project
|
|
* Ewol TK
|
|
*
|
|
* @par Copyright
|
|
* Copyright 2011 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
|
|
*
|
|
* Term of the licence in in the file licence.txt.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef __UNICODE_TABLE_H__
|
|
#define __UNICODE_TABLE_H__
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
extern const uniChar_t TableIso8859_1[];
|
|
extern const uniChar_t TableIso8859_2[];
|
|
extern const uniChar_t TableIso8859_3[];
|
|
extern const uniChar_t TableIso8859_4[];
|
|
extern const uniChar_t TableIso8859_5[];
|
|
extern const uniChar_t TableIso8859_6[];
|
|
extern const uniChar_t TableIso8859_7[];
|
|
extern const uniChar_t TableIso8859_8[];
|
|
extern const uniChar_t TableIso8859_9[];
|
|
extern const uniChar_t TableIso8859_10[];
|
|
extern const uniChar_t TableIso8859_11[];
|
|
extern const uniChar_t TableIso8859_13[];
|
|
extern const uniChar_t TableIso8859_14[];
|
|
extern const uniChar_t TableIso8859_15[];
|
|
|
|
;
|
|
}
|
|
|
|
#endif
|