Determines if the plugin should be enabled or not in the contextual menu. In our case, we inherit from the UNC path plugin, which grays itself out if there are no valid shares. In our case however, we always want to be enabled and we'll use the long path if no UNC path is available. @param p_ParentPath Path of parent directory; unused. @param p_File Path of one file selected; unused. @return alwa
| 73 | // @return always true to tell PCC to enable our plugin. |
| 74 | // |
| 75 | bool InternetPathPlugin::Enabled(const std::wstring& /*p_ParentPath*/, |
| 76 | const std::wstring& /*p_File*/) const noexcept(false) |
| 77 | { |
| 78 | return true; |
| 79 | } |
| 80 | |
| 81 | // |
| 82 | // Returns the path of the specified file in file URI format |
nothing calls this directly
no outgoing calls
no test coverage detected