diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-08 14:45:55 +0000 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2005-07-08 14:45:55 +0000 |
commit | fdfe5b42f687fbf3d4537541cc1b0bd9b8c2c090 (patch) | |
tree | 81d199b6fbbb11d3f310668e5bdabf9129e5f41f /src/fake_rcd.h | |
parent | 232dbc756390d30a86ae6de0cc84600eddb1c0b2 (diff) | |
download | librcc-fdfe5b42f687fbf3d4537541cc1b0bd9b8c2c090.tar.gz librcc-fdfe5b42f687fbf3d4537541cc1b0bd9b8c2c090.tar.bz2 librcc-fdfe5b42f687fbf3d4537541cc1b0bd9b8c2c090.tar.xz librcc-fdfe5b42f687fbf3d4537541cc1b0bd9b8c2c090.zip |
08.07.2005
Diffstat (limited to 'src/fake_rcd.h')
-rw-r--r-- | src/fake_rcd.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/fake_rcd.h b/src/fake_rcd.h new file mode 100644 index 0000000..8dcb9ae --- /dev/null +++ b/src/fake_rcd.h @@ -0,0 +1,22 @@ +#ifndef _LIBRCD_H +#define _LIBRCD_H + +#ifdef __cplusplus +extern "C" { +#endif + +enum rcd_russian_charset_t { + RUSSIAN_CHARSET_WIN = 0, + RUSSIAN_CHARSET_KOI, + RUSSIAN_CHARSET_UTF8, + RUSSIAN_CHARSET_ALT +}; +typedef enum rcd_russian_charset_t rcd_russian_charset; + +rcd_russian_charset (*rcdGetRussianCharset)(const char *buf, int len) = NULL; + +#ifdef __cplusplus +} +#endif + +#endif /* _LIBRCD_H */ |