Sha256: ecba9aec7e3949c90818e8c00d0d749b283a0d73657a47c1b9fd34424af25275

Contents?: true

Size: 372 Bytes

Versions: 1

Compression:

Stored size: 372 Bytes

Contents

#include "common/app_build_capabilities.h"


extern "C" void Init_JSAPI_Log();
#ifndef RHO_NO_RUBY_API
extern "C" void Init_RubyAPI_Log();
extern "C" int  rho_ruby_is_started();
#endif

extern "C" void Init_Log_API()
{
#ifndef RHO_NO_RUBY_API
    if (rho_ruby_is_started())
    {
    	Init_RubyAPI_Log();
    }
#endif

#ifndef RHO_NO_JS_API
    Init_JSAPI_Log();
#endif
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tauplatform-1.0.1 lib/commonAPI/coreapi/ext/shared/generated/log_api_init.cpp