need_for_win32.c 207 B

123456789101112
  1. #include "mpeg4ip.h"
  2. #include <sys/timeb.h>
  3. int gettimeofday (struct timeval *t, void *foo)
  4. {
  5. struct _timeb temp;
  6. _ftime(&temp);
  7. t->tv_sec = temp.time;
  8. t->tv_usec = temp.millitm * 1000;
  9. return (0);
  10. }