How do I convert an existing application written in C; so that it can handle Unicode strings?
There is no simple answer to that. The optimal solution depends on the nature of your application, the nature of the data it reads, and the nature of the APIs you are going to use. Assuming that your application currently reads and manipulates ASCII strings, the first thing to look at is the encoding form of Unicode you are going to use.
Related Questions
- As with any integration effort, you will need to write adaptor code, so this is really two questions: • What needs to get written to adapt an existing application? • When is this work necessary?
- How do I convert an existing application written in C; so that it can handle Unicode strings?
- How to convert between ANSI and UNICODE strings?