mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
0799c1a780
Global replacement of debugtools.h by wine/debug.h.
79 lines
2.2 KiB
C
79 lines
2.2 KiB
C
/*
|
|
* Main function.
|
|
*
|
|
* Copyright 1994 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <locale.h>
|
|
#include <ctype.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wine/winbase16.h"
|
|
#include "ntddk.h"
|
|
#include "winnls.h"
|
|
#include "winerror.h"
|
|
#include "options.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(file);
|
|
|
|
|
|
/***********************************************************************
|
|
* Beep (KERNEL32.@)
|
|
*/
|
|
BOOL WINAPI Beep( DWORD dwFreq, DWORD dwDur )
|
|
{
|
|
static char beep = '\a';
|
|
/* dwFreq and dwDur are ignored by Win95 */
|
|
if (isatty(2)) write( 2, &beep, 1 );
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* FileCDR (KERNEL.130)
|
|
*/
|
|
FARPROC16 WINAPI FileCDR16(FARPROC16 x)
|
|
{
|
|
FIXME_(file)("(0x%8x): stub\n", (int) x);
|
|
return (FARPROC16)TRUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetTickCount (USER.13)
|
|
* GetCurrentTime (USER.15)
|
|
* GetTickCount (KERNEL32.@)
|
|
* GetSystemMSecCount (SYSTEM.6)
|
|
*
|
|
* Returns the number of milliseconds, modulo 2^32, since the start
|
|
* of the wineserver.
|
|
*/
|
|
DWORD WINAPI GetTickCount(void)
|
|
{
|
|
struct timeval t;
|
|
gettimeofday( &t, NULL );
|
|
return ((t.tv_sec * 1000) + (t.tv_usec / 1000)) - server_startticks;
|
|
}
|