|
From: Seth D. <set...@us...> - 2005-01-14 14:30:48
|
Update of /cvsroot/frontierkernel/Frontier/Common/SystemHeaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15345 Modified Files: standard.h Log Message: getmilliseconds() for MacOS is a preprocessor definition, like gettickcount(), which actually calls FastMilliseconds() in FastTimes.h Index: standard.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/SystemHeaders/standard.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** standard.h 11 Jan 2005 22:47:44 -0000 1.7 --- standard.h 14 Jan 2005 14:30:36 -0000 1.8 *************** *** 37,40 **** --- 37,44 ---- #endif + #ifdef MACVERSION /* 2005-01-09 SMD - for getmilliseconds */ + #include "FastTimes.h" + #endif + #ifdef PACKFLIPPED #define conditionallongswap(x) dolongswap(x) *************** *** 374,377 **** --- 378,383 ---- #ifdef MACVERSION #define gettickcount() TickCount() + #define getlongermilliseconds() (unsigned long long)FastMilliseconds() + #define getmilliseconds() (long)FastMilliseconds() typedef short hdlfilenum; |