/**
* Answer the command line that started the process.
*/
private static native String nativeGetCommandLine();
/**
* Calls the Windows GetPerformanceInfo function
* @param counters any array of counters that corresponds to the Windows
* PERFORMANCE_INFORMATION structure.
*/
private static native void nativeGetPerformanceInfo(long[] counters);
private static native boolean nativeGetPerformanceCounters(long[] counters);
private static native String nativeGetUUID();
I can find the last 3 methods in ivjperf.c
but where is the nativeGetCommandLine() ?