2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2016-09-07 14:24:00 +00:00
|
|
|
* Copyright (C) 2012-2016 Symless Ltd.
|
2012-06-10 16:50:54 +00:00
|
|
|
* Copyright (C) 2012 Nick Bolton
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2015-05-03 02:33:52 +00:00
|
|
|
* found in the file LICENSE that should have accompanied this file.
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "arch/IArchPlugin.h"
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
#define ARCH_PLUGIN ArchPluginWindows
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class Screen;
|
2013-06-29 14:17:49 +00:00
|
|
|
class IEventQueue;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//! Windows implementation of IArchPlugin
|
2014-11-11 13:51:47 +00:00
|
|
|
class ArchPluginWindows : public IArchPlugin {
|
2012-06-10 16:50:54 +00:00
|
|
|
public:
|
2014-11-11 13:51:47 +00:00
|
|
|
ArchPluginWindows();
|
|
|
|
virtual ~ArchPluginWindows();
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
// IArchPlugin overrides
|
2015-01-09 13:46:35 +00:00
|
|
|
void load();
|
2015-01-27 10:42:10 +00:00
|
|
|
void unload();
|
2015-02-13 14:26:03 +00:00
|
|
|
void init(void* log, void* arch);
|
2015-01-14 17:24:45 +00:00
|
|
|
void initEvent(void* eventTarget, IEventQueue* events);
|
2015-01-09 13:46:35 +00:00
|
|
|
bool exists(const char* name);
|
|
|
|
void* invoke(const char* pluginName,
|
|
|
|
const char* functionName,
|
2015-07-16 19:09:55 +00:00
|
|
|
void** args,
|
|
|
|
void* library = NULL);
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
private:
|
2014-11-11 13:51:47 +00:00
|
|
|
void getFilenames(const String& pattern, std::vector<String>& filenames);
|
|
|
|
String getPluginsDir();
|
2015-07-24 01:02:05 +00:00
|
|
|
String getCurrentVersion(const String& name, void* handle);
|
2015-01-09 13:46:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
PluginTable m_pluginTable;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void sendEvent(const char* text, void* data);
|
|
|
|
void log(const char* text);
|