| 426 | // IExplorerCommand implementation: |
| 427 | |
| 428 | IFACEMETHODIMP GetTitle(_In_opt_ IShellItemArray* items, _Outptr_ PWSTR* name) { |
| 429 | // Provide name for display in File Explorer context menu entry |
| 430 | UNREFERENCED_PARAMETER(items); |
| 431 | return SHStrDupW(menu_entry_title, name); |
| 432 | } |
| 433 | |
| 434 | IFACEMETHODIMP GetIcon(_In_opt_ IShellItemArray* items, _Outptr_ PWSTR* icon) { |
| 435 | // Provide icon for display in File Explorer context menu entry |
nothing calls this directly
no outgoing calls
no test coverage detected