2003-01-04 22:01:32 +00:00
|
|
|
/*
|
|
|
|
* 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 CARCHMISCWINDOWS_H
|
|
|
|
#define CARCHMISCWINDOWS_H
|
|
|
|
|
2003-03-17 22:32:10 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
|
2003-02-12 19:38:39 +00:00
|
|
|
#include "common.h"
|
2003-03-17 22:32:10 +00:00
|
|
|
#include "stdstring.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "stdset.h"
|
2003-03-17 22:32:10 +00:00
|
|
|
#include <windows.h>
|
2003-02-12 19:38:39 +00:00
|
|
|
|
2003-01-05 21:48:54 +00:00
|
|
|
//! Miscellaneous win32 functions.
|
2003-01-04 22:01:32 +00:00
|
|
|
class CArchMiscWindows {
|
|
|
|
public:
|
2004-03-13 17:13:55 +00:00
|
|
|
enum EValueType {
|
|
|
|
kUNKNOWN,
|
|
|
|
kNO_VALUE,
|
|
|
|
kUINT,
|
|
|
|
kSTRING,
|
|
|
|
kBINARY
|
|
|
|
};
|
|
|
|
enum EBusyModes {
|
|
|
|
kIDLE = 0x0000,
|
|
|
|
kSYSTEM = 0x0001,
|
|
|
|
kDISPLAY = 0x0002
|
|
|
|
};
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
typedef int (*RunFunc)(void);
|
|
|
|
|
2003-09-02 22:05:47 +00:00
|
|
|
//! Initialize
|
|
|
|
static void init();
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
//! Test if windows 95, et al.
|
|
|
|
/*!
|
|
|
|
Returns true iff the platform is win95/98/me.
|
|
|
|
*/
|
|
|
|
static bool isWindows95Family();
|
|
|
|
|
2004-11-06 16:13:52 +00:00
|
|
|
//! Test if windows 95, et al.
|
|
|
|
/*!
|
|
|
|
Returns true iff the platform is win98 or win2k or higher (i.e.
|
|
|
|
not windows 95 or windows NT).
|
|
|
|
*/
|
|
|
|
static bool isWindowsModern();
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
//! Run the daemon
|
|
|
|
/*!
|
|
|
|
Delegates to CArchDaemonWindows.
|
|
|
|
*/
|
2003-01-22 08:36:43 +00:00
|
|
|
static int runDaemon(RunFunc runFunc);
|
2003-01-04 22:01:32 +00:00
|
|
|
|
|
|
|
//! Indicate daemon is in main loop
|
|
|
|
/*!
|
|
|
|
Delegates to CArchDaemonWindows.
|
|
|
|
*/
|
|
|
|
static void daemonRunning(bool running);
|
|
|
|
|
|
|
|
//! Indicate failure of running daemon
|
|
|
|
/*!
|
|
|
|
Delegates to CArchDaemonWindows.
|
|
|
|
*/
|
|
|
|
static void daemonFailed(int result);
|
2003-03-17 22:32:10 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
//! Get daemon quit message
|
|
|
|
/*!
|
|
|
|
Delegates to CArchDaemonWindows.
|
|
|
|
*/
|
|
|
|
static UINT getDaemonQuitMessage();
|
|
|
|
|
2003-03-17 22:32:10 +00:00
|
|
|
//! Open and return a registry key, closing the parent key
|
|
|
|
static HKEY openKey(HKEY parent, const TCHAR* child);
|
|
|
|
|
|
|
|
//! Open and return a registry key, closing the parent key
|
|
|
|
static HKEY openKey(HKEY parent, const TCHAR* const* keyPath);
|
|
|
|
|
|
|
|
//! Close a key
|
|
|
|
static void closeKey(HKEY);
|
|
|
|
|
|
|
|
//! Delete a key (which should have no subkeys)
|
|
|
|
static void deleteKey(HKEY parent, const TCHAR* name);
|
|
|
|
|
|
|
|
//! Delete a value
|
|
|
|
static void deleteValue(HKEY parent, const TCHAR* name);
|
|
|
|
|
|
|
|
//! Test if a value exists
|
|
|
|
static bool hasValue(HKEY key, const TCHAR* name);
|
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
//! Get type of value
|
|
|
|
static EValueType typeOfValue(HKEY key, const TCHAR* name);
|
|
|
|
|
2003-03-17 22:32:10 +00:00
|
|
|
//! Set a string value in the registry
|
|
|
|
static void setValue(HKEY key, const TCHAR* name,
|
|
|
|
const std::string& value);
|
|
|
|
|
|
|
|
//! Set a DWORD value in the registry
|
|
|
|
static void setValue(HKEY key, const TCHAR* name, DWORD value);
|
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
//! Set a BINARY value in the registry
|
|
|
|
/*!
|
|
|
|
Sets the \p name value of \p key to \p value.data().
|
|
|
|
*/
|
|
|
|
static void setValueBinary(HKEY key, const TCHAR* name,
|
|
|
|
const std::string& value);
|
|
|
|
|
2003-03-17 22:32:10 +00:00
|
|
|
//! Read a string value from the registry
|
|
|
|
static std::string readValueString(HKEY, const TCHAR* name);
|
|
|
|
|
|
|
|
//! Read a DWORD value from the registry
|
|
|
|
static DWORD readValueInt(HKEY, const TCHAR* name);
|
2004-02-28 12:19:49 +00:00
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
//! Read a BINARY value from the registry
|
|
|
|
static std::string readValueBinary(HKEY, const TCHAR* name);
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
//! Add a dialog
|
|
|
|
static void addDialog(HWND);
|
|
|
|
|
|
|
|
//! Remove a dialog
|
|
|
|
static void removeDialog(HWND);
|
|
|
|
|
|
|
|
//! Process dialog message
|
|
|
|
/*!
|
|
|
|
Checks if the message is destined for a dialog. If so the message
|
|
|
|
is passed to the dialog and returns true, otherwise returns false.
|
|
|
|
*/
|
|
|
|
static bool processDialog(MSG*);
|
|
|
|
|
2004-03-13 17:13:55 +00:00
|
|
|
//! Disable power saving
|
|
|
|
static void addBusyState(DWORD busyModes);
|
|
|
|
|
|
|
|
//! Enable power saving
|
|
|
|
static void removeBusyState(DWORD busyModes);
|
|
|
|
|
|
|
|
private:
|
|
|
|
//! Read a string value from the registry
|
|
|
|
static std::string readBinaryOrString(HKEY, const TCHAR* name, DWORD type);
|
|
|
|
|
|
|
|
//! Set thread busy state
|
|
|
|
static void setThreadExecutionState(DWORD);
|
|
|
|
|
|
|
|
static DWORD WINAPI dummySetThreadExecutionState(DWORD);
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
private:
|
|
|
|
typedef std::set<HWND> CDialogs;
|
2004-03-13 17:13:55 +00:00
|
|
|
typedef DWORD (WINAPI *STES_t)(DWORD);
|
2004-02-28 12:19:49 +00:00
|
|
|
|
|
|
|
static CDialogs* s_dialogs;
|
2004-03-13 17:13:55 +00:00
|
|
|
static DWORD s_busyState;
|
|
|
|
static STES_t s_stes;
|
2003-01-04 22:01:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|