Rev | Line | |
---|
[4] | 1 | /* $Id: unicode.h,v 1.1 1999-05-24 20:19:07 ktk Exp $ */
|
---|
| 2 |
|
---|
| 3 | /*
|
---|
| 4 | *
|
---|
| 5 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
| 6 | *
|
---|
| 7 | */
|
---|
| 8 | #ifndef __UNICODE_H__
|
---|
| 9 | #define __UNICODE_H__
|
---|
| 10 |
|
---|
| 11 | #include <uconv.h>
|
---|
| 12 |
|
---|
| 13 | #ifdef __cplusplus
|
---|
| 14 | extern "C" {
|
---|
| 15 | #endif
|
---|
| 16 |
|
---|
| 17 | char *WIN32API UnicodeToAsciiString(LPWSTR ustring);
|
---|
| 18 | int WIN32API UnicodeToAscii(LPWSTR ustring, char *astring);
|
---|
| 19 | void WIN32API FreeAsciiString(char *astring);
|
---|
| 20 | void WIN32API AsciiToUnicode(char *ascii, LPWSTR unicode);
|
---|
| 21 |
|
---|
| 22 | #ifdef __cplusplus
|
---|
| 23 | }
|
---|
| 24 | #endif
|
---|
| 25 |
|
---|
| 26 | #ifdef __cplusplus
|
---|
| 27 | char *UnicodeToAscii(int length, WCHAR *NameString);
|
---|
| 28 | #endif
|
---|
| 29 |
|
---|
| 30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.