Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 #pragma once | |
2 #include <string> | |
3 #include <MsHTML.h> | |
4 #include <atlbase.h> | |
5 | |
6 struct GetHtmlElementAttributeResult | |
7 { | |
8 GetHtmlElementAttributeResult() : isAttributeFound(false) | |
9 { | |
10 } | |
11 std::wstring attributeValue; | |
12 bool isAttributeFound; | |
13 }; | |
14 | |
15 GetHtmlElementAttributeResult GetHtmlElementAttribute(IHTMLElement& htmlElement, | |
16 const ATL::CComBSTR& attributeName); | |
OLD | NEW |