decklink: Fix building on Windows

BSTR is already a pointer to a string
This commit is contained in:
Nirbheek Chauhan 2017-05-05 04:02:29 +05:30
parent 845832263b
commit 3d4c428e41

View file

@ -38,7 +38,7 @@
#define bool BOOL
#define COMSTR_T BSTR*
#define COMSTR_T BSTR
#define FREE_COM_STRING(s) delete[] s;
#define CONVERT_COM_STRING(s) BSTR _s = (BSTR)s; s = _com_util::ConvertBSTRToString(_s); ::SysFreeString(_s);
#else