64 lines
1.5 KiB
C
64 lines
1.5 KiB
C
/*
|
|
* Unix interface for Win32 syscalls
|
|
*
|
|
* Copyright (C) 2021 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#if 0
|
|
#pragma makedep unix
|
|
#endif
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include "windef.h"
|
|
#include "winnt.h"
|
|
#include "winternl.h"
|
|
#include "wine/unixlib.h"
|
|
|
|
|
|
/***********************************************************************
|
|
* NtGdiFlush (win32u.@)
|
|
*/
|
|
BOOL WINAPI NtGdiFlush(void)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
static void * const syscalls[] =
|
|
{
|
|
NtGdiFlush,
|
|
};
|
|
|
|
static BYTE arguments[ARRAY_SIZE(syscalls)];
|
|
|
|
static SYSTEM_SERVICE_TABLE syscall_table =
|
|
{
|
|
(ULONG_PTR *)syscalls,
|
|
0,
|
|
ARRAY_SIZE(syscalls),
|
|
arguments
|
|
};
|
|
|
|
static NTSTATUS init( void *dispatcher )
|
|
{
|
|
return ntdll_init_syscalls( 1, &syscall_table, dispatcher );
|
|
}
|
|
|
|
unixlib_entry_t __wine_unix_call_funcs[] = { init };
|