コード例 #1
0
ファイル: PerfTest1.java プロジェクト: justin2061/winrun4j
 private static long getTickCountSlow() {
   return NativeHelper.call(Kernel32.library, "GetTickCount");
 }
コード例 #2
0
ファイル: PerfTest1.java プロジェクト: justin2061/winrun4j
 private static long getTickCountFast() {
   return NativeHelper.call(procGetTickCount);
 }