Files
org-hyperion-cules/codepage.h
Paul Gorlinsky 46d22af354 Remove qcodepages command. Redundant information.
git-svn-id: file:///home/jj/hercules.svn/trunk@6560 956126f8-22a0-4046-8f4a-272fa8102e63
2010-09-19 21:31:12 +00:00

32 lines
1020 B
C

/* CODEPAGE.H (c) Copyright Jan Jaeger, 1999-2010 */
/* Code Page conversion */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
// $Id$
#ifndef _HERCULES_CODEPAGE_H
#define _HERCULES_CODEPAGE_H
#include "hercules.h"
#ifndef _CODEPAGE_C_
#ifndef _HUTIL_DLL_
#define COD_DLL_IMPORT DLL_IMPORT
#else /* _HUTIL_DLL_ */
#define COD_DLL_IMPORT extern
#endif /* _HUTIL_DLL_ */
#else /* _LOGGER_C_ */
#define COD_DLL_IMPORT DLL_EXPORT
#endif /* _LOGGER_C_ */
COD_DLL_IMPORT char* query_codepage(void);
COD_DLL_IMPORT void set_codepage(char *name);
COD_DLL_IMPORT unsigned char host_to_guest (unsigned char byte);
COD_DLL_IMPORT unsigned char guest_to_host (unsigned char byte);
#endif /* _HERCULES_CODEPAGE_H */