tags:

views:

157

answers:

2

I need to convert string to support multi-language messaging in my client-server app.
Can I find it in boost?

+1  A: 

such does not exists, since 'oem character set' is os-specific and so can't be platform-independent.

Eye of Hell
Moreover, different windows localizations have different OEM and ANSI codepages.
n0rd
+3  A: 

For platform-independent codepage conversions you can use libiconv library. Anyway, why bother using codepages at all? Use unicode.

n0rd
I do not mind using Unicode at all, but I need to support my native labguage in client/server app, which is Russian. Any suggestions how to do that?
chester89
I don't see any problem with that. Can you be more specific with problems you have?
n0rd