Click to Rate and Give Feedback
MSDN
MSDN Library
Windows Driver Kit
Reference
 RtlStringCchCopyUnicodeString
Windows Driver Kit: Kernel-Mode Driver Architecture
RtlStringCchCopyUnicodeString

The RtlStringCchCopyUnicodeString function copies the contents of a UNICODE_STRING structure to a specified destination.

NTSTATUS
  RtlStringCchCopyUnicodeString(
    OUT PWSTR  pszDest,
    IN size_t  cchDest,
    IN PCUNICODE_STRING  SourceString,
    );

Parameters

pszDest
A pointer to a buffer that receives the copied string. The string that the SourceString parameter's UNICODE_STRING structure points to is copied to the buffer at pszDest and terminated with a NULL character.
cchDest
The size, in characters, of the destination buffer. The buffer must be large enough for the string and the terminating NULL character. The maximum number of characters is NTSTRSAFE_MAX_CCH.
SourceString
A pointer to a UNICODE_STRING structure that contains the string to be copied. The maximum number of characters in the string is NTSTRSAFE_UNICODE_STRING_MAX_CCH.

Return Value

RtlStringCchCopyUnicodeString returns one of the following NTSTATUS values.

Return valueMeaning
STATUS_SUCCESSThis success status means that source data was present, the string was copied without truncation, and the resultant destination buffer is null-terminated.
STATUS_BUFFER_OVERFLOWThis warning status means that the copy operation did not complete because of insufficient buffer space. The destination buffer contains a truncated, null-terminated version of the intended result.
STATUS_INVALID_PARAMETERThis error status means that the function received an invalid input parameter. For more information, see the following list.

RtlStringCchCopyUnicodeString returns the STATUS_INVALID_PARAMETER value when one of the following occurs:

  • The contents of the UNICODE_STRING structure are invalid.
  • The value in cbDest is larger than the maximum buffer size.
  • The destination buffer (which pszDest points to) is already full.
  • A buffer pointer is NULL.
  • The destination buffer's length is zero, but a nonzero length source string is present.

For information about how to test NTSTATUS values, see Using NTSTATUS Values.

Comments

The RtlStringCchCopyUnicodeString function uses the destination buffer's size (which cchDest specifies) to ensure that the copy operation does not write past the end of the buffer.

If the source and destination strings overlap, the behavior of the function is undefined.

The SourceString and pszDest pointers cannot be NULL. If you need to handle NULL pointer values, use the RtlStringCchCopyUnicodeStringEx function.

For more information about the safe string functions, see Using Safe String Functions.

Requirements

IRQL: PASSIVE_LEVEL

Headers: Declared in Ntstrsafe.h. Include Ntstrsafe.h. Link to Ntstrsafe.lib.

See Also

RtlStringCbCopyUnicodeString, RtlStringCchCopyUnicodeStringEx, UNICODE_STRING


Send feedback on this topic
Built on October 01, 2009
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker