Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'shell_integration/windows/OCContextMenu/OCClientInterface.h')
-rw-r--r--shell_integration/windows/OCContextMenu/OCClientInterface.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/shell_integration/windows/OCContextMenu/OCClientInterface.h b/shell_integration/windows/OCContextMenu/OCClientInterface.h
index 7356d1e28..16608e276 100644
--- a/shell_integration/windows/OCContextMenu/OCClientInterface.h
+++ b/shell_integration/windows/OCContextMenu/OCClientInterface.h
@@ -43,7 +43,11 @@ class CommunicationSocket;
class OCClientInterface
{
public:
- static std::vector<std::wstring> WatchedDirectories();
+ struct ContextMenuInfo {
+ std::vector<std::wstring> watchedDirectories;
+ std::wstring shareMenuTitle;
+ };
+ static ContextMenuInfo FetchInfo();
static void ShareObject(const std::wstring &path);
};