| * Copyright 1994 Alexandre Julliard |
| #include "wine/winbase16.h" |
| DECLARE_DEBUG_CHANNEL(file); |
| /*********************************************************************** |
| BOOL WINAPI Beep( DWORD dwFreq, DWORD dwDur ) |
| /* dwFreq and dwDur are ignored by Win95 */ |
| if (isatty(2)) write( 2, &beep, 1 ); |
| /*********************************************************************** |
| FARPROC16 WINAPI FileCDR16(FARPROC16 x) |
| FIXME_(file)("(0x%8x): stub\n", (int) x); |
| /*********************************************************************** |
| * GetCurrentTime (USER.15) |
| * GetTickCount (KERNEL32.@) |
| * GetSystemMSecCount (SYSTEM.6) |
| * Returns the number of milliseconds, modulo 2^32, since the start |
| DWORD WINAPI GetTickCount(void) |
| gettimeofday( &t, NULL ); |
| return ((t.tv_sec * 1000) + (t.tv_usec / 1000)) - server_startticks; |