need_for_win32.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #include "systems.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. }