juegos de caracteres
This commit is contained in:
parent
d03743b75f
commit
b1e3b88e16
12
dlls/src/text/juegos de caracteres.txt
Normal file
12
dlls/src/text/juegos de caracteres.txt
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
JUEGOS DE CARACTERES SOPORTADOS POR TEXT.DLL
|
||||||
|
----------------------------------------------
|
||||||
|
|
||||||
|
referencia: http://www.iana.org/assignments/character-sets
|
||||||
|
|
||||||
|
FIXME: hacer latin1 el verdadero latin1! (y quizás un fichero nuevo para windows-1252)
|
||||||
|
|
||||||
|
MIBenum Nombre Fichero Notas
|
||||||
|
------- ------ ------- -----
|
||||||
|
4 ISO-8859-1 latin1 En realidad es 2252/windows-1252!!
|
||||||
|
(aka WinLatin1, parcialmente compatible con latin1)
|
||||||
|
2011 IBM437 msdos Juego de caracteres de DIV (IBM codepage 437)
|
|
@ -31,6 +31,12 @@ int ExportaFuncs(EXPORTAFUNCS_PARAMS)
|
||||||
{
|
{
|
||||||
CONST("all_text",0);
|
CONST("all_text",0);
|
||||||
|
|
||||||
|
/* ver juegos de caracteres.txt (son los MIBenum) */
|
||||||
|
CONST("charset_latin1",4);
|
||||||
|
CONST("charset_msdos",2011);
|
||||||
|
|
||||||
|
GLOBAL("charset",2011);
|
||||||
|
|
||||||
FUNCTION("load_fnt",1,eDiv_LoadFnt) ;
|
FUNCTION("load_fnt",1,eDiv_LoadFnt) ;
|
||||||
FUNCTION("write",5,eDiv_Write) ;
|
FUNCTION("write",5,eDiv_Write) ;
|
||||||
FUNCTION("write_int",5,eDiv_WriteInt) ;
|
FUNCTION("write_int",5,eDiv_WriteInt) ;
|
||||||
|
|
Loading…
Reference in a new issue