--- trunk/xvidcore/examples/xvid_decraw.c 2003/02/09 15:50:28 823 +++ trunk/xvidcore/examples/xvid_decraw.c 2003/02/09 19:32:52 824 @@ -19,7 +19,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: xvid_decraw.c,v 1.4 2002-09-28 14:27:16 edgomez Exp $ + * $Id: xvid_decraw.c,v 1.5 2003-02-09 19:32:52 edgomez Exp $ * ****************************************************************************/ @@ -56,7 +56,7 @@ #include #include #include -#ifndef _MSC_VER +#ifndef WIN32 #include #else #include @@ -431,7 +431,7 @@ static double msecond() { -#ifndef _MSC_VER +#ifndef WIN32 struct timeval tv; gettimeofday(&tv, 0); return (double)tv.tv_sec*1.0e3 + (double)tv.tv_usec*1.0e-3;