| 107 | |
| 108 | |
| 109 | IFACEMETHODIMP FileContextMenuExt::GetCommandString(UINT_PTR idCommand, UINT uFlags, UINT *pwReserved, LPSTR pszName, UINT cchMax) |
| 110 | { |
| 111 | HRESULT hr = E_INVALIDARG; |
| 112 | |
| 113 | if ( idCommand == IDM_DISPLAY ) { |
| 114 | switch ( uFlags ) { |
| 115 | |
| 116 | default: |
| 117 | hr = S_OK; |
| 118 | } |
| 119 | } |
| 120 | return hr; |
| 121 | } |
| 122 | |
| 123 | #pragma endregion |
| 124 |
nothing calls this directly
no outgoing calls
no test coverage detected