Index: src/plugin/COM_Value.cpp |
=================================================================== |
--- a/src/plugin/COM_Value.cpp |
+++ b/src/plugin/COM_Value.cpp |
@@ -62,3 +62,18 @@ |
} |
return std::wstring(bstr, SysStringLen(bstr)); |
} |
+ |
+ |
+bool IncomingParam::wstringConvertible() const |
+{ |
+ /* |
+ * Initial support is for BSTR only. |
+ * We've got one case later where we'll need to support VT_I4. |
+ */ |
+ return var.vt == VT_BSTR; |
+} |
+ |
+std::wstring IncomingParam::wstringValueNoexcept() const |
+{ |
+ return L""; |
+} |