Sha256: c8e978b2b1974406a82459b4a3dc318f069cde85ef475c0e47b66aafbea50b74
Contents?: true
Size: 761 Bytes
Versions: 32
Compression:
Stored size: 761 Bytes
Contents
#include "rhodes/jni/com_rhomobile_rhodes_SplashScreen.h" #include "rhodes/JNIRhodes.h" #include <common/RhodesApp.h> namespace rc = rho::common; RHO_GLOBAL void JNICALL Java_com_rhomobile_rhodes_SplashScreen_nativeStart (JNIEnv *, jobject) { rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen(); splashScreen.start(); } RHO_GLOBAL void JNICALL Java_com_rhomobile_rhodes_SplashScreen_nativeHide (JNIEnv *, jobject) { rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen(); splashScreen.hide(); } RHO_GLOBAL jint JNICALL Java_com_rhomobile_rhodes_SplashScreen_howLongWaitMs (JNIEnv *, jobject) { rc::CSplashScreen &splashScreen = RHODESAPP().getSplashScreen(); return (jint)splashScreen.howLongWaitMs(); }
Version data entries
32 entries across 32 versions & 1 rubygems