4 * Copyright 1994 Alexandre Julliard
14 #include <sys/types.h>
20 #include "wine/winbase16.h"
25 #include "debugtools.h"
27 DECLARE_DEBUG_CHANNEL(file
);
30 /***********************************************************************
33 BOOL WINAPI
Beep( DWORD dwFreq
, DWORD dwDur
)
35 static char beep
= '\a';
36 /* dwFreq and dwDur are ignored by Win95 */
37 if (isatty(2)) write( 2, &beep
, 1 );
42 /***********************************************************************
43 * FileCDR (KERNEL.130)
45 FARPROC16 WINAPI
FileCDR16(FARPROC16 x
)
47 FIXME_(file
)("(0x%8x): stub\n", (int) x
);
48 return (FARPROC16
)TRUE
;
51 /***********************************************************************
52 * GetTickCount (USER.13) (KERNEL32.299)
54 * Returns the number of milliseconds, modulo 2^32, since the start
57 DWORD WINAPI
GetTickCount(void)
60 gettimeofday( &t
, NULL
);
61 return ((t
.tv_sec
* 1000) + (t
.tv_usec
/ 1000)) - server_startticks
;