/* ** Module :CODEPAGE.H ** Abstract : ** ** Copyright (C) Vit Timchishin ** ** Log: Wed 22/12/1999 Created ** */ #ifndef __CODEPAGE_H #define __CODEPAGE_H // AH 2001-04-03 use Odin builtin version, later toolkits // include almost everywhere... #include #define CODEPAGE_SECTION "Codepages" #ifdef __cplusplus extern "C" { #endif ULONG GetDisplayCodepage(); ULONG GetWindowsCodepage(); UconvObject GetDisplayUconvObject(); UconvObject GetWindowsUconvObject(); void CODEPAGE_Init(void); #ifdef __cplusplus } #endif #endif /*__CODEPAGE_H*/