Scroll to navigation

SysAllocStringLen(3w) Wine API SysAllocStringLen(3w)

NAME

SysAllocStringLen (OLEAUT32.4)

SYNOPSIS

BSTR SysAllocStringLen
(
const OLECHAR* str,
unsigned int len
)
 

DESCRIPTION

Create a BSTR from an OLESTR of a given wide character length.
 

PARAMS

str [In] Source to create BSTR from.
len [In] Length of oleStr in wide characters.
 

RETURNS

Success: A newly allocated BSTR from SysAllocStringByteLen(3w)
Failure: NULL, if len is >= 0x80000000, or memory allocation fails.
 

NOTES

See BSTR(3w), SysAllocStringByteLen(3w).
 

IMPLEMENTATION

Declared in "oleauto.h".
Implemented in "dlls/oleaut32/oleaut.c".
Debug channel "ole".
Oct 2012 Wine API