1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* CODEPAGE.H (c) Copyright Jan Jaeger, 1999-2009 */
/* Code Page conversion */
#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 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 */
|