| 23 | #include "DShowUtil.h" |
| 24 | |
| 25 | std::wstring CStringFromGUID(const GUID &guid) |
| 26 | { |
| 27 | WCHAR null[128] = {0}, buff[128]; |
| 28 | StringFromGUID2(GUID_NULL, null, 127); |
| 29 | return std::wstring(StringFromGUID2(guid, buff, 127) > 0 ? buff : null); |
| 30 | } |
| 31 | |
| 32 | // filter registration helpers |
| 33 |
no outgoing calls
no test coverage detected