2021-10-12 16:42:35 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Jacek Caban for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NTUSER_
|
|
|
|
#define _NTUSER_
|
|
|
|
|
|
|
|
#include <winuser.h>
|
2021-10-14 15:21:15 +02:00
|
|
|
#include <wingdi.h>
|
2021-10-12 16:42:35 +02:00
|
|
|
#include <winternl.h>
|
|
|
|
|
2021-10-13 14:53:36 +02:00
|
|
|
BOOL WINAPI NtUserCloseDesktop( HDESK handle );
|
2021-10-13 14:52:53 +02:00
|
|
|
BOOL WINAPI NtUserCloseWindowStation( HWINSTA handle );
|
2021-10-14 15:21:15 +02:00
|
|
|
HDESK WINAPI NtUserCreateDesktopEx( OBJECT_ATTRIBUTES *attr, UNICODE_STRING *device,
|
|
|
|
DEVMODEW *devmode, DWORD flags, ACCESS_MASK access,
|
|
|
|
ULONG heap_size );
|
2021-10-14 15:20:42 +02:00
|
|
|
HWINSTA WINAPI NtUserCreateWindowStation( OBJECT_ATTRIBUTES *attr, ACCESS_MASK mask, ULONG arg3,
|
|
|
|
ULONG arg4, ULONG arg5, ULONG arg6, ULONG arg7 );
|
2021-11-08 14:48:28 +01:00
|
|
|
BOOL WINAPI NtUserGetLayeredWindowAttributes( HWND hwnd, COLORREF *key, BYTE *alpha, DWORD *flags );
|
2021-10-13 14:55:30 +02:00
|
|
|
BOOL WINAPI NtUserGetObjectInformation( HANDLE handle, INT index, void *info,
|
|
|
|
DWORD len, DWORD *needed );
|
2021-10-13 14:52:53 +02:00
|
|
|
HWINSTA WINAPI NtUserGetProcessWindowStation(void);
|
2021-11-08 14:48:37 +01:00
|
|
|
HANDLE WINAPI NtUserGetProp( HWND hwnd, const WCHAR *str );
|
2021-10-13 14:54:00 +02:00
|
|
|
HDESK WINAPI NtUserGetThreadDesktop( DWORD thread );
|
2021-10-14 15:20:56 +02:00
|
|
|
HWINSTA WINAPI NtUserOpenWindowStation( OBJECT_ATTRIBUTES *attr, ACCESS_MASK access );
|
2021-10-13 14:56:22 +02:00
|
|
|
BOOL WINAPI NtUserSetObjectInformation( HANDLE handle, INT index, void *info, DWORD len );
|
2021-10-14 15:21:33 +02:00
|
|
|
HDESK WINAPI NtUserOpenDesktop( OBJECT_ATTRIBUTES *attr, DWORD flags, ACCESS_MASK access );
|
2021-10-13 14:54:56 +02:00
|
|
|
HDESK WINAPI NtUserOpenInputDesktop( DWORD flags, BOOL inherit, ACCESS_MASK access );
|
2021-11-08 14:48:37 +01:00
|
|
|
HANDLE WINAPI NtUserRemoveProp( HWND hwnd, const WCHAR *str );
|
2021-10-13 14:53:22 +02:00
|
|
|
BOOL WINAPI NtUserSetProcessWindowStation( HWINSTA handle );
|
2021-11-08 14:48:37 +01:00
|
|
|
BOOL WINAPI NtUserSetProp( HWND hwnd, const WCHAR *str, HANDLE handle );
|
2021-10-13 14:54:21 +02:00
|
|
|
BOOL WINAPI NtUserSetThreadDesktop( HDESK handle );
|
2021-10-12 16:42:35 +02:00
|
|
|
|
|
|
|
#endif /* _NTUSER_ */
|