| 124 | } |
| 125 | |
| 126 | STDAPI MediaInfo_SparsePackage::Installer::Uninstall() |
| 127 | { |
| 128 | HRESULT result = UnregisterSparsePackage(); |
| 129 | if (FAILED(result)) |
| 130 | return result; |
| 131 | |
| 132 | SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL); |
| 133 | |
| 134 | return S_OK; |
| 135 | } |
nothing calls this directly
no test coverage detected