Sha256: aada72b920873f33a8b364fc9529b6d5d72374b80b83dcee1834de6e45ace6b2
Contents?: true
Size: 506 Bytes
Versions: 19
Compression:
Stored size: 506 Bytes
Contents
#include "stdafx.h" #include "RhoClassfactory.h" #include "sync/SyncThread.h" #include "sync/ClientRegister.h" namespace rho{ namespace common{ IRhoClassFactory* rho_impl_createClassFactory() { return new rho::common::CRhoClassFactory; } } } extern "C" { void rho_clientregister_create(const char* szDevicePin) { rho::sync::CClientRegister::Create(rho::common::rho_impl_createClassFactory(), szDevicePin); } void rho_clientregister_destroy() { rho::sync::CClientRegister::Destroy(); } };
Version data entries
19 entries across 19 versions & 1 rubygems