• Main Page
  • Classes
  • Files
  • File List

XArchWindows.h

00001 /*
00002  * synergy -- mouse and keyboard sharing utility
00003  * Copyright (C) 2012 Bolton Software Ltd.
00004  * Copyright (C) 2002 Chris Schoeneman
00005  * 
00006  * This package is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU General Public License
00008  * found in the file COPYING that should have accompanied this file.
00009  * 
00010  * This package is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00017  */
00018 
00019 #ifndef XARCHWINDOWS_H
00020 #define XARCHWINDOWS_H
00021 
00022 #define WIN32_LEAN_AND_MEAN
00023 
00024 #include "XArch.h"
00025 #include <windows.h>
00026 
00028 class XArchEvalWindows : public XArchEval {
00029 public:
00030     XArchEvalWindows() : m_errno(GetLastError()) { }
00031     XArchEvalWindows(DWORD err) : m_errno(err) { }
00032     virtual ~XArchEvalWindows() { }
00033 
00034     // XArchEval overrides
00035     virtual XArchEval*  clone() const throw();
00036     virtual std::string eval() const throw();
00037 
00038 private:
00039     DWORD               m_errno;
00040 };
00041 
00043 class XArchEvalWinsock : public XArchEval {
00044 public:
00045     XArchEvalWinsock(int err) : m_errno(err) { }
00046     virtual ~XArchEvalWinsock() { }
00047 
00048     // XArchEval overrides
00049     virtual XArchEval*  clone() const throw();
00050     virtual std::string eval() const throw();
00051 
00052 private:
00053     int                 m_errno;
00054 };
00055 
00056 #endif

Generated on Sat May 25 2013 00:00:04 for Synergy by  doxygen 1.7.1