Merge branch 'development'
[deb_libcec.git] / src / LibCecSharp / LibCecSharp.cpp
index cd0f6d05d3ae239afc2e8286b9e1ae7694c2e2c8..81c857fb2fed67c2475365eab980289d32aaf21b 100644 (file)
@@ -598,6 +598,17 @@ namespace CecSharp
                        return gcnew String(retVal);
                }
 
+               String ^ GetLibInfo()
+               {
+                       const char *retVal = m_libCec->GetLibInfo();
+                       return gcnew String(retVal);
+               }
+
+               void InitVideoStandalone()
+               {
+                       m_libCec->InitVideoStandalone();
+               }
+
        private:
                ICECAdapter *        m_libCec;
     CecCallbackMethods ^ m_callbacks;