Sha256: f9abeb84194697ac58c5ec5a2a36fb33ca999ae47cc3f23ea00ddac108943d4f
Contents?: true
Size: 541 Bytes
Versions: 32
Compression:
Stored size: 541 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(); }
Version data entries
32 entries across 32 versions & 1 rubygems