description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: ConvertStringToBSTR |
ConvertStringToBSTR |
11/04/2016 |
|
|
071f9b3b-9643-4e06-a1e5-de96ed15bab2 |
Microsoft Specific
Converts a char *
value to a BSTR
.
BSTR __stdcall ConvertStringToBSTR(const char* pSrc)
pSrc
A char *
variable.
// ConvertStringToBSTR.cpp
#include <comutil.h>
#include <stdio.h>
#pragma comment(lib, "comsuppw.lib")
#pragma comment(lib, "kernel32.lib")
int main() {
char* lpszText = "Test";
printf_s("char * text: %s\n", lpszText);
BSTR bstrText = _com_util::ConvertStringToBSTR(lpszText);
wprintf_s(L"BSTR text: %s\n", bstrText);
SysFreeString(bstrText);
}
char * text: Test
BSTR text: Test
END Microsoft Specific
Header: <comutil.h>
Lib: comsuppw.lib or comsuppwd.lib (see /Zc:wchar_t (wchar_t Is Native Type) for more information)