diff options
author | charlydoes <charlydoes@svn> | 2009-09-26 18:22:27 +0000 |
---|---|---|
committer | charlydoes <charlydoes@svn> | 2009-09-26 18:22:27 +0000 |
commit | fa915dada833a8bc8c42db468e5bca10795785fe (patch) | |
tree | cf3952068a4fe278f8d327a95ad36fd38d470de7 /guilib/common/IRServerSuite | |
parent | 62d3c1dce9855accdad7ae8791bc685ac4af2fc7 (diff) |
[WIN32] fixed: build error.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23184 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/common/IRServerSuite')
-rw-r--r-- | guilib/common/IRServerSuite/IRServerSuite.cpp | 4 | ||||
-rw-r--r-- | guilib/common/IRServerSuite/IRServerSuite.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/guilib/common/IRServerSuite/IRServerSuite.cpp b/guilib/common/IRServerSuite/IRServerSuite.cpp index 0e70b368d4..1e2ba89223 100644 --- a/guilib/common/IRServerSuite/IRServerSuite.cpp +++ b/guilib/common/IRServerSuite/IRServerSuite.cpp @@ -447,3 +447,7 @@ bool CRemoteControl::IsHolding() { return m_isHolding; } + +void CRemoteControl::setUsed(bool value) +{ +}
\ No newline at end of file diff --git a/guilib/common/IRServerSuite/IRServerSuite.h b/guilib/common/IRServerSuite/IRServerSuite.h index d2cb322640..e80761268f 100644 --- a/guilib/common/IRServerSuite/IRServerSuite.h +++ b/guilib/common/IRServerSuite/IRServerSuite.h @@ -37,7 +37,10 @@ public: WORD GetButton(); bool IsHolding(); bool IsInitialized() {return m_bInitialized;} + + //lirc stuff, not implemented bool IsInUse() {return false;} + void setUsed(bool value); protected: virtual void Process(); |