Method that must return the plugin description, displayed in the contextual menu.
| 27 | |
| 28 | // Method that must return the plugin description, displayed in the contextual menu. |
| 29 | [[gsl::suppress(c.128), gsl::suppress(f.6)]] |
| 30 | STDMETHODIMP CPathCopyCopyPlugin1a::get_Description(BSTR *p_ppDescription) |
| 31 | { |
| 32 | if (p_ppDescription == nullptr) { |
| 33 | return E_INVALIDARG; |
| 34 | } |
| 35 | *p_ppDescription = ::SysAllocString(L"PCC Test Plugin 1a"); |
| 36 | return S_OK; |
| 37 | } |
| 38 | |
| 39 | // Method that can return a help text to be displayed in the status bar when the cursor is over the plugin's menu item. |
| 40 | // It is legal to return NULL or an empty string if no help text can be provided. |
nothing calls this directly
no outgoing calls
no test coverage detected