mirror of https://github.com/tongzx/nt5src
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
46 lines
521 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
util.h
|
|
|
|
Abstract:
|
|
|
|
Utility functions.
|
|
|
|
Author:
|
|
|
|
Ovidiu Temereanca (ovidiut) 02-Jul-2000 Initial implementation
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
VOID
|
|
FreeString (
|
|
IN PCVOID String
|
|
);
|
|
|
|
PSTR
|
|
ConvertToAnsiSz (
|
|
IN PCWSTR Unicode
|
|
);
|
|
|
|
PSTR
|
|
ConvertToAnsiMultiSz (
|
|
IN PCWSTR MultiSzUnicode
|
|
);
|
|
|
|
|
|
PWSTR
|
|
ConvertToUnicodeSz (
|
|
IN PCSTR Ansi
|
|
);
|
|
|
|
PWSTR
|
|
ConvertToUnicodeMultiSz (
|
|
IN PCSTR MultiSzAnsi
|
|
);
|