MCPcopy Create free account
hub / github.com/Firebasky/Java / CallStaticIntMethod

Method CallStaticIntMethod

JNI/jni/webshell/jni.h:1441–1449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1439 }
1440
1441 jint CallStaticIntMethod(jclass clazz,
1442 jmethodID methodID, ...) {
1443 va_list args;
1444 jint result;
1445 va_start(args,methodID);
1446 result = functions->CallStaticIntMethodV(this,clazz,methodID,args);
1447 va_end(args);
1448 return result;
1449 }
1450 jint CallStaticIntMethodV(jclass clazz,
1451 jmethodID methodID, va_list args) {
1452 return functions->CallStaticIntMethodV(this,clazz,methodID,args);

Callers

nothing calls this directly

Calls 1

CallStaticIntMethodVMethod · 0.45

Tested by

no test coverage detected