/* ワイド文字をマルチバイト文字に変換する */ #include <windows.h> #include <string> #include <iostream> #include <comutil.h> #pragma comment(lib, "comsupp.lib") #pragma comment(lib, "comsuppw.lib") using namespace std ; int main() { BSTR bstr = L"柴田 淳"; wstring wstr(L"それでも来た道"); string str; wstr.append(L" - "); str.assign(_com_util::ConvertBSTRToString((BSTR)wstr.c_str()));// ??? str.append(_com_uti