barrier/src/lib/arch/win32/ArchPluginWindows.h

58 lines
1.6 KiB
C
Raw Normal View History

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
* 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
#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;
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
void load();
2015-01-27 10:42:10 +00:00
void unload();
void init(void* log, void* arch);
void initEvent(void* eventTarget, IEventQueue* events);
bool exists(const char* name);
void* invoke(const char* pluginName,
const char* functionName,
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();
String getCurrentVersion(const String& name, void* handle);
private:
PluginTable m_pluginTable;
2012-06-10 16:50:54 +00:00
};
void sendEvent(const char* text, void* data);
void log(const char* text);