/* * Deskflow -- mouse and keyboard sharing utility * SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd. * SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ #pragma once #include "arch/IArchLog.h" #define WIN32_LEAN_AND_MEAN #include #define ARCH_LOG ArchLogWindows //! Win32 implementation of IArchLog class ArchLogWindows : public IArchLog { public: ArchLogWindows(); ~ArchLogWindows() override = default; // IArchLog overrides void openLog(const char *name) override; void closeLog() override; void showLog(bool showIfEmpty) override; void writeLog(LogLevel, const char *) override; private: HANDLE m_eventLog; };