2
LPCWSTR location_url;
m_spWebBrowser->get_LocationURL((BSTR*)&location_url);
如何比較LPCWSTR
與const char *
在strstr
?如何比較strstr(LPCWSTR,CHAR *);
例子:
if(strstr((location_url, ".html"))
LPCWSTR location_url;
m_spWebBrowser->get_LocationURL((BSTR*)&location_url);
如何比較LPCWSTR
與const char *
在strstr
?如何比較strstr(LPCWSTR,CHAR *);
例子:
if(strstr((location_url, ".html"))
'get_LocationURL()'返回一個實際的'BSTR',而不是'LPWSTR'。你需要修正你的變量聲明。當你完成使用它時,不要忘記調用'SysFreeString()',否則你將會發生內存泄漏。 –