KEYSVC_UNICODE_STRING structure

The KEYSVC_UNICODE_STRING structure defines a Unicode string and a maximum length for the string. This structure is used by the RKeyPFXInstall function.

Syntax

typedef struct _KEYSVC_UNICODE_STRING {
  USHORT Length;
  USHORT MaximumLength;
  USHORT *Buffer;
} KEYSVC_UNICODE_STRING, *PKEYSVC_UNICODE_STRING;

Members

Length

A USHORT value that specifies the length, in bytes, used for Buffer.

MaximumLength

A USHORT value that specifies the maximum length, in bytes, allowed for Buffer.

Buffer

A pointer to a USHORT that represents the Unicode string.

Requirements

Requirement Value
Minimum supported client
None supported
Minimum supported server
Windows Server 2003 [desktop apps only]
Header
Rkeysvcc.h

See also

RKeyPFXInstall

KEYSVC_BLOB