|
From: Andre R. <and...@us...> - 2005-01-15 20:39:36
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10263 Modified Files: timedate.c Log Message: Fixed bug in Win32 version of getmilliseconds: Visual C 6.0 doesn't understand "unsigned long long" so we use LONGLONG defined in the Win32 SDK headers instead. Index: timedate.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/timedate.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** timedate.c 14 Jan 2005 18:51:04 -0000 1.8 --- timedate.c 15 Jan 2005 20:39:21 -0000 1.9 *************** *** 1555,1559 **** extern long getmilliseconds(void) { LARGE_INTEGER counter, freq; ! unsigned long long freqLong; QueryPerformanceCounter (&counter); /* counter hits since boot-up */ --- 1555,1559 ---- extern long getmilliseconds(void) { LARGE_INTEGER counter, freq; ! LONGLONG freqLong; QueryPerformanceCounter (&counter); /* counter hits since boot-up */ |