mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-21 01:52:01 +03:00
a729e33cfb
Made extensive changes to the launcher to provide more control over setting up auto-start and it now saves configuration to the user's documents directory if auto-starting at login and saves to the system directory if auto-starting at boot. Replaced MapVirtualKey() with table lookup to work around that function's lack of support for extended keyboard scan codes. Added first cut at support for AltGr.
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
*
|
|
* 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 COPYING that should have accompanied this file.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef CUNIXPLATFORM_H
|
|
#define CUNIXPLATFORM_H
|
|
|
|
#include "IPlatform.h"
|
|
|
|
//! Unix platform dependent functions
|
|
class CUnixPlatform : public IPlatform {
|
|
public:
|
|
CUnixPlatform();
|
|
virtual ~CUnixPlatform();
|
|
|
|
// IPlatform overrides
|
|
virtual bool installDaemon(const char* name,
|
|
const char* description,
|
|
const char* pathname,
|
|
const char* commandLine,
|
|
bool allUsers);
|
|
virtual EResult uninstallDaemon(const char* name, bool allUsers);
|
|
virtual int daemonize(const char* name, DaemonFunc);
|
|
virtual void installDaemonLogger(const char* name);
|
|
virtual bool canInstallDaemon(const char* name,
|
|
bool allUsers) const;
|
|
virtual bool isDaemonInstalled(const char* name,
|
|
bool allUsers) const;
|
|
virtual const char* getBasename(const char* pathname) const;
|
|
virtual CString getUserDirectory() const;
|
|
virtual CString getSystemDirectory() const;
|
|
virtual CString addPathComponent(
|
|
const CString& prefix,
|
|
const CString& suffix) const;
|
|
|
|
private:
|
|
static bool deamonLogger(int, const char*);
|
|
};
|
|
|
|
#endif
|