Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29098/src
Modified Files: Tag: devel_0_38 m_sched.c Log Message: compilation fix for Windows
Index: m_sched.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_sched.c,v retrieving revision 1.5.4.34 retrieving revision 1.5.4.35 diff -C2 -d -r1.5.4.34 -r1.5.4.35 *** m_sched.c 15 May 2005 21:10:12 -0000 1.5.4.34 --- m_sched.c 18 May 2005 09:15:18 -0000 1.5.4.35 *************** *** 572,576 **** __int64 now; /* time since 1 Jan 1601 in 100ns */ ! GetSystemTimeAsFileTime ((LPFILETIME*) &now); tv->tv_usec = (long) ((now / 10LL) % 1000000LL); tv->tv_sec = (long) ((now - 116444736000000000LL) / 10000000LL); --- 572,576 ---- __int64 now; /* time since 1 Jan 1601 in 100ns */ ! GetSystemTimeAsFileTime ((FILETIME*) &now); tv->tv_usec = (long) ((now / 10LL) % 1000000LL); tv->tv_sec = (long) ((now - 116444736000000000LL) / 10000000LL);