aboutsummaryrefslogtreecommitdiff
path: root/guilib/common/IRServerSuite/IRServerSuite.h
diff options
context:
space:
mode:
Diffstat (limited to 'guilib/common/IRServerSuite/IRServerSuite.h')
-rw-r--r--guilib/common/IRServerSuite/IRServerSuite.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/guilib/common/IRServerSuite/IRServerSuite.h b/guilib/common/IRServerSuite/IRServerSuite.h
deleted file mode 100644
index b265abf3f8..0000000000
--- a/guilib/common/IRServerSuite/IRServerSuite.h
+++ /dev/null
@@ -1,67 +0,0 @@
-#pragma once
-/*
- * Copyright (C) 2005-2008 Team XBMC
- * http://xbmc.org
- *
- * This Program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This Program 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 XBMC; see the file COPYING. If not, write to
- * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- */
-
-#include <winsock2.h>
-#include "StdString.h"
-#include "IrssMessage.h"
-#include "Thread.h"
-
-class CRemoteControl : CThread
-{
-public:
- CRemoteControl();
- ~CRemoteControl();
- void Initialize();
- void Disconnect();
- void Reset();
- void Update();
- WORD GetButton();
- unsigned int GetHoldTime() const;
- bool IsInitialized() {return m_bInitialized;}
-
- //lirc stuff, not implemented
- bool IsInUse() {return false;}
- void setUsed(bool value);
- void AddSendCommand(const CStdString& command) {}
-
-protected:
- virtual void Process();
-
-private:
- WORD m_button;
- bool m_bInitialized;
- SOCKET m_socket;
- bool m_isConnecting;
- CStdString m_deviceName;
- CStdString m_keyCode;
-
- bool SendPacket(CIrssMessage& message);
- bool ReadPacket(CIrssMessage& message);
- int ReadN(char *buffer, int n);
- bool WriteN(const char *buffer, int n);
- bool Connect();
- void Close();
-
- bool HandleRemoteEvent(CIrssMessage& message);
-};
-
-extern CRemoteControl g_RemoteControl;