mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-12 06:58:12 +02:00
Don't issue messages when setting the CODEPAGE from Hercifc, as they can wind up in the stream, corrupting data exchange with Hercules.
33 lines
1.7 KiB
C
33 lines
1.7 KiB
C
/* CODEPAGE.H (C) Copyright Jan Jaeger, 1999-2012 */
|
|
/* (C) Copyright TurboHercules, SAS 2010-2011 */
|
|
/* Code Page conversion */
|
|
/* */
|
|
/* Released under "The Q Public License Version 1" */
|
|
/* (http://www.hercules-390.org/herclic.html) as modifications to */
|
|
/* Hercules. */
|
|
|
|
#ifndef _HERCULES_CODEPAGE_H
|
|
#define _HERCULES_CODEPAGE_H
|
|
|
|
#include "hercules.h"
|
|
|
|
COD_DLL_IMPORT const char* query_codepage();
|
|
COD_DLL_IMPORT bool valid_codepage_name( const char* name );
|
|
COD_DLL_IMPORT void set_codepage( const char *name);
|
|
COD_DLL_IMPORT void set_codepage_no_msgs( const char* name );
|
|
COD_DLL_IMPORT int update_codepage(int argc, char *argv[], char *table );
|
|
COD_DLL_IMPORT unsigned char host_to_guest (unsigned char byte);
|
|
COD_DLL_IMPORT unsigned char guest_to_host (unsigned char byte);
|
|
COD_DLL_IMPORT unsigned char *h2g_tab();
|
|
COD_DLL_IMPORT unsigned char *g2h_tab();
|
|
|
|
/* helper functions for codepage */
|
|
COD_DLL_IMPORT BYTE* buf_guest_to_host( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
COD_DLL_IMPORT BYTE* str_guest_to_host( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
COD_DLL_IMPORT BYTE* buf_host_to_guest( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
COD_DLL_IMPORT BYTE* str_host_to_guest( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
COD_DLL_IMPORT BYTE* prt_guest_to_host( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
COD_DLL_IMPORT BYTE* prt_host_to_guest( const BYTE *psinbuf, BYTE *psoutbuf, const u_int ilength );
|
|
|
|
#endif /* _HERCULES_CODEPAGE_H */
|