Sha256: 77bec65d06be491d2bd0eea5256e7257e43a55a728b497ff622f172f1dcf68e2

Contents?: true

Size: 392 Bytes

Versions: 1

Compression:

Stored size: 392 Bytes

Contents

#include "common/app_build_capabilities.h"


extern "C" void Init_JSAPI_SQLite3();
#ifndef RHO_NO_RUBY_API
extern "C" void Init_RubyAPI_SQLite3();
extern "C" int  rho_ruby_is_started();
#endif

extern "C" void Init_SQLite3_API()
{
#ifndef RHO_NO_RUBY_API
    if (rho_ruby_is_started())
    {
    	Init_RubyAPI_SQLite3();
    }
#endif

#ifndef RHO_NO_JS_API
    Init_JSAPI_SQLite3();
#endif
}

Version data entries

1 entries across 1 versions & 1 rubygems

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