/* * 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 #include "ntstatus.h" #define WIN32_NO_STATUS #include "windef.h" #include "winnt.h" #include "ntgdi_private.h" #include "wine/unixlib.h" static void * const syscalls[] = { NtGdiCombineRgn, NtGdiCreateBitmap, NtGdiCreateDIBBrush, NtGdiCreateDIBSection, NtGdiCreateEllipticRgn, NtGdiCreateHatchBrushInternal, NtGdiCreatePatternBrushInternal, NtGdiCreateRectRgn, NtGdiCreateRoundRectRgn, NtGdiCreateSolidBrush, NtGdiDescribePixelFormat, NtGdiDrawStream, NtGdiEqualRgn, NtGdiExtCreateRegion, NtGdiFlush, NtGdiGetBitmapBits, NtGdiGetBitmapDimension, NtGdiGetRegionData, NtGdiGetRgnBox, NtGdiGetTransform, NtGdiOffsetRgn, NtGdiPtInRegion, NtGdiRectInRegion, NtGdiSaveDC, NtGdiSetBitmapBits, NtGdiSetBitmapDimension, NtGdiSetBrushOrg, NtGdiSetMetaRgn, NtGdiSetPixelFormat, NtGdiSetRectRgn, NtGdiSwapBuffers, }; 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 ) { NTSTATUS status; if ((status = ntdll_init_syscalls( 1, &syscall_table, dispatcher ))) return status; return gdi_init(); } unixlib_entry_t __wine_unix_call_funcs[] = { init, callbacks_init, };