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.

46 lines
521 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. util.h
  5. Abstract:
  6. Utility functions.
  7. Author:
  8. Ovidiu Temereanca (ovidiut) 02-Jul-2000 Initial implementation
  9. Revision History:
  10. --*/
  11. VOID
  12. FreeString (
  13. IN PCVOID String
  14. );
  15. PSTR
  16. ConvertToAnsiSz (
  17. IN PCWSTR Unicode
  18. );
  19. PSTR
  20. ConvertToAnsiMultiSz (
  21. IN PCWSTR MultiSzUnicode
  22. );
  23. PWSTR
  24. ConvertToUnicodeSz (
  25. IN PCSTR Ansi
  26. );
  27. PWSTR
  28. ConvertToUnicodeMultiSz (
  29. IN PCSTR MultiSzAnsi
  30. );