SysAllocStringByteLen (OLEAUT32.150)
BSTR SysAllocStringByteLen ( LPCSTR str, UINT len )
Create a BSTR from an OLESTR of a given byte length.
str | [In] | Source to create BSTR from. |
len | [In] | Length of oleStr in bytes. |
Success: A newly allocated BSTR
Failure: NULL, if len is >= 0x80000000, or memory allocation fails.
-If len is 0 or oleStr is NULL the resulting string is empty ("").
-This function always NUL terminates the resulting BSTR.
-oleStr may be either an LPCSTR or LPCOLESTR, since it is copied without checking for a terminating NUL. See BSTR.
Declared in "include/oleauto.h". gitlab.winehq.org/wine/wine/blob/master/include/oleauto.h
Implemented in "dlls/oleaut32/oleaut.c". gitlab.winehq.org/wine/wine/blob/master/dlls/oleaut32/oleaut.c
Debug channel "ole".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.