Method that provides the path of a file containing the image to use for the icon of the plugin in the contextual menu.
| 103 | // Method that provides the path of a file containing the image to use |
| 104 | // for the icon of the plugin in the contextual menu. |
| 105 | [[gsl::suppress(c.128), gsl::suppress(f.6)]] |
| 106 | STDMETHODIMP CPathCopyCopyPlugin1a::get_IconFile(BSTR *p_ppIconFile) |
| 107 | { |
| 108 | if (p_ppIconFile == nullptr) { |
| 109 | return E_INVALIDARG; |
| 110 | } |
| 111 | *p_ppIconFile = nullptr; |
| 112 | return S_OK; |
| 113 | } |
| 114 | |
| 115 | // Method that determines whether the plugin uses the default icon. |
| 116 | [[gsl::suppress(c.128), gsl::suppress(f.6)]] |
nothing calls this directly
no outgoing calls
no test coverage detected