Changeset 1871 for trunk/include/unicode.h
- Timestamp:
- Nov 29, 1999, 12:23:46 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/unicode.h
r570 r1871 1 /* $Id: unicode.h,v 1. 6 1999-08-19 10:24:52 sandervlExp $ */1 /* $Id: unicode.h,v 1.7 1999-11-28 23:23:45 bird Exp $ */ 2 2 3 3 /* … … 20 20 #endif 21 21 22 char * WIN32API UnicodeToAsciiString(LP WSTR ustring);23 int WIN32API UnicodeToAscii(LP WSTR ustring, char *astring);24 int WIN32API UnicodeToAsciiN(LP WSTR ustring, char *astring, int unilen);22 char * WIN32API UnicodeToAsciiString(LPCWSTR ustring); 23 int WIN32API UnicodeToAscii(LPCWSTR ustring, char *astring); 24 int WIN32API UnicodeToAsciiN(LPCWSTR ustring, char *astring, int unilen); 25 25 void WIN32API FreeAsciiString(char *astring); 26 LPWSTR WIN32API AsciiToUnicodeString(c har *astring);27 void WIN32API AsciiToUnicode(c har *ascii, LPWSTR unicode);28 void WIN32API AsciiToUnicodeN(c har *ascii, LPWSTR unicode, int asciilen);26 LPWSTR WIN32API AsciiToUnicodeString(const char *astring); 27 void WIN32API AsciiToUnicode(const char *ascii, LPWSTR unicode); 28 void WIN32API AsciiToUnicodeN(const char *ascii, LPWSTR unicode, int asciilen); 29 29 30 30 #ifdef __cplusplus … … 33 33 34 34 #ifdef __cplusplus 35 char * WIN32API UnicodeToAsciiStringN( WCHAR *ustring, ULONG length);35 char * WIN32API UnicodeToAsciiStringN(LPCWSTR ustring, ULONG length); 36 36 #endif 37 37
Note:
See TracChangeset
for help on using the changeset viewer.