예제 #1
0
RHO_GLOBAL jboolean JNICALL Java_com_rhomobile_rhodes_RhodesService_isMotorolaLicencePassed
(JNIEnv *env, jclass, jstring jLicense, jstring jCompany, jstring jAppName)
{
    int res = rho_can_app_started_with_current_licence(
                    jLicense ? rho_cast<std::string>(env, jLicense).c_str() : 0,
                    jCompany ? rho_cast<std::string>(env, jCompany).c_str() : 0,
                    jAppName ? rho_cast<std::string>(env, jAppName).c_str() : 0);

    return (jboolean)(res == 1);
}
예제 #2
0
파일: rhodesapp.cpp 프로젝트: stevez/rhodes
RHO_GLOBAL jboolean JNICALL Java_com_rhomobile_rhodes_RhodesService_isMotorolaLicencePassed
(JNIEnv *env, jclass)
{
    bool res = (rho_can_app_started_with_current_licence() == 1);
    return (jboolean)res;
}