10.02.2013, 19:55. Просмотров 531. Ответов 0
Товарищи если кто имеет опыт, расскажите как в этой библиотеке реализовать кириллицу?
Добавлено через 33 минуты
уже разобрался покавырял хедеры нашёл вот такие функции в fltk3/utf8.h
C |
1
2
3
4
5
6
7
| #ifdef WIN32
/* OD: Attempt to convert the UTF8 string to the current locale */
FLTK3_EXPORT char *utf8_to_locale(const char *s, int len, unsigned int codepage);
/* OD: Attempt to convert a string in the current locale to UTF8 */
FLTK3_EXPORT char *locale_to_utf8(const char *s, int len, unsigned int codepage);
#endif |
|