Rev | Line | |
---|
[55] | 1 | /* $Id: unicode.h,v 1.3 1999-06-08 09:44:27 achimha Exp $ */
|
---|
[4] | 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 |
|
---|
[55] | 11 | #include <uniconv.h>
|
---|
[4] | 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.