Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
299 B

  1. /* uni2utf.h */
  2. /* Copyright (c) 1998-1999 Microsoft Corporation */
  3. #define MAX_UTF_LENGTH 200 /* arbitrary */
  4. #define MAX_UNICODE_LENGTH 200 /* arbitrary */
  5. extern char *Unicode2UTF(const wchar_t *unicodeString);
  6. extern wchar_t *UTF2Unicode(const char *utfString);