|
From: Seth D. <set...@us...> - 2005-01-15 00:36:03
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21316/headers Modified Files: timedate.h Log Message: Moved the mac macro #definition for getmilliseconds() to timedate.h (from standard.h) for consistency with the windows version. timedate.h is now used by lang.c for the profiler regardless of which platform is being built. Index: timedate.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/timedate.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** timedate.h 13 Jan 2005 23:54:18 -0000 1.4 --- timedate.h 15 Jan 2005 00:35:52 -0000 1.5 *************** *** 55,58 **** --- 55,63 ---- + #ifdef MACVERSION + /* #define getlongermilliseconds() (unsigned long long)FastMilliseconds() */ + #define getmilliseconds() (long)FastMilliseconds() + #endif + /*prototypes*/ *************** *** 117,121 **** #ifdef WIN95VERSION ! extern long getmilliseconds(void); #endif /* WIN95VERSION */ --- 122,126 ---- #ifdef WIN95VERSION ! extern long getmilliseconds(void); /* mac version is #defined near the top of the file */ #endif /* WIN95VERSION */ |