Changeset 68 for trunk/include/unicode.h
- Timestamp:
- Jun 9, 1999, 3:12:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/unicode.h
r55 r68 1 /* $Id: unicode.h,v 1. 3 1999-06-08 09:44:27achimha Exp $ */1 /* $Id: unicode.h,v 1.4 1999-06-09 13:12:19 achimha Exp $ */ 2 2 3 3 /* … … 15 15 #endif 16 16 17 /* also used from Windows only files ported from WINE */ 18 #ifndef WIN32API 19 #define WIN32API WINAPI 20 #endif 21 17 22 char *WIN32API UnicodeToAsciiString(LPWSTR ustring); 18 23 int WIN32API UnicodeToAscii(LPWSTR ustring, char *astring); 24 int WIN32API UnicodeToAsciiN(LPWSTR ustring, char *astring, int unilen); 19 25 void WIN32API FreeAsciiString(char *astring); 20 26 void WIN32API AsciiToUnicode(char *ascii, LPWSTR unicode); 27 void WIN32API AsciiToUnicodeN(char *ascii, LPWSTR unicode, int asciilen); 21 28 22 29 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.