FILETIME ft = new FILETIME();
ft.dwLowDateTime.setValue((int) f.getLow());
ft.dwHighDateTime.setValue((int) f.getHigh());
CFunction fileTimeToSystemTime = dll.loadFunction("FileTimeToSystemTime");
SYSTEMTIME st = new SYSTEMTIME();
Object[] ary1 = { ft, st };
//Sat, 30 September 2000 14:46:43
Object o = fileTimeToSystemTime.call(CInt.class, ary1,