0

Can anyone tell me where to find the resource just like this one

(But I hope this is for C++ !!)

There is a dynamic library under google tv chrome extersion here

This hyperlink tells us how to go Anymote by call C++ libraries through NPAPI under javascript. Maybe I can follow this page to go under C++ version. Unfortunately, the arch of these libraries is i386 (or x86_64). My project build under the other platform (ex: arm), so I can't call these libraries directly. Orz

SingerOfTheFall
  • 29,228
  • 8
  • 68
  • 105
summerdog
  • 71
  • 1
  • 6
  • @Joshi ...so I summarize your comment and my conjecture: 1. The source code in C++ branch of anymote-protocol project is just an incomplete library, right ? There are so many virtual function, interface and headers. 2. We need to implement these abstract class of anymote library if we want to use the it. 3. There is a c++ version library in gtv-chrome-extension project for javascript client , but this c++ library did not open source. – summerdog Sep 19 '12 at 00:18

1 Answers1

0

There is a cpp Anymote library implementation and some unittests which exercise the library APIs at:

http://code.google.com/p/anymote-protocol/source/browse/#hg%2Fcpp

Apart from that there is no open source Anymote client library in C++.

  • I have watched this page in anymote project before, and I already build this source to static library. I need some tutorial to tell me how to use these API, e.g. call steps . There are many different between C++ and Java in API layer, so it is so hard to reference client app in Java version. Thanks for your answer! – summerdog Sep 18 '12 at 04:49
  • BTW, you mean 'unittests which API exercise' just like this? [devicesessiontest.cc]( http://code.google.com/p/anymote-protocol/source/browse/cpp/tests/anymote/device/devicesessiontest.cc) – summerdog Sep 18 '12 at 04:56