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

Method CallStaticDoubleMethod

JNI/jni/jni.h:1495–1503  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1493 }
1494
1495 jdouble CallStaticDoubleMethod(jclass clazz,
1496 jmethodID methodID, ...) {
1497 va_list args;
1498 jdouble result;
1499 va_start(args,methodID);
1500 result = functions->CallStaticDoubleMethodV(this,clazz,methodID,args);
1501 va_end(args);
1502 return result;
1503 }
1504 jdouble CallStaticDoubleMethodV(jclass clazz,
1505 jmethodID methodID, va_list args) {
1506 return functions->CallStaticDoubleMethodV(this,clazz,methodID,args);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected