win32: sync visual studio project files. fixed: accidently included windows.h within...
[deb_libcec.git] / src / lib / LibCECC.cpp
index 4c7276a0fe5d8c28c4861ced3c1c6ad56f653b56..d55681ef0c1c7ded85e1c39567788a3bbcb1424d 100644 (file)
@@ -30,7 +30,8 @@
  *     http://www.pulse-eight.net/
  */
 
-#include "LibCEC.h"
+#include <cec.h>
+#include <cecc.h>
 
 using namespace CEC;
 using namespace std;
@@ -123,7 +124,7 @@ bool cec_get_next_command(cec_command *command)
   return false;
 }
 
-bool cec_transmit(const CEC::cec_frame &data, bool bWaitForAck /* = true */)
+bool cec_transmit(const CEC::cec_command &data, bool bWaitForAck /* = true */)
 {
   if (cec_parser)
     return cec_parser->Transmit(data, bWaitForAck);