| 108 | } |
| 109 | |
| 110 | void SetGUID(GUID const& guid) |
| 111 | { |
| 112 | guid_ = guid; |
| 113 | guidStr_.clear(); |
| 114 | |
| 115 | wchar_t* guidStr = nullptr; |
| 116 | if (StringFromIID(guid, &guidStr) == S_OK) { |
| 117 | guidStr_ = guidStr; |
| 118 | CoTaskMemFree(guidStr); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | bool Matches(std::vector<Filter>* filters) const |
| 123 | { |
no outgoing calls
no test coverage detected