123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834 |
- /*
- * Misc. USER functions
- *
- * Copyright 1993 Robert J. Amstadt
- * 1996 Alex Korobka
- *
- * 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 <stdarg.h>
- #include <stdlib.h>
- #include <string.h>
- #include "wine/winbase16.h"
- #include "windef.h"
- #include "winbase.h"
- #include "wingdi.h"
- #include "winuser.h"
- #include "wine/winuser16.h"
- #include "winreg.h"
- #include "winternl.h"
- #include "tlhelp32.h"
- #include "user_private.h"
- #include "win.h"
- #include "controls.h"
- #include "cursoricon.h"
- #include "message.h"
- #include "local.h"
- #include "wine/debug.h"
- WINE_DEFAULT_DEBUG_CHANNEL(user);
- static SYSLEVEL USER_SysLevel;
- static CRITICAL_SECTION_DEBUG critsect_debug =
- {
- 0, 0, &USER_SysLevel.crst,
- { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
- 0, 0, { 0, (DWORD)(__FILE__ ": USER_SysLevel") }
- };
- static SYSLEVEL USER_SysLevel = { { &critsect_debug, -1, 0, 0, 0, 0 }, 2 };
- /* USER signal proc flags and codes */
- /* See UserSignalProc for comments */
- #define USIG_FLAGS_WIN32 0x0001
- #define USIG_FLAGS_GUI 0x0002
- #define USIG_FLAGS_FEEDBACK 0x0004
- #define USIG_FLAGS_FAULT 0x0008
- #define USIG_DLL_UNLOAD_WIN16 0x0001
- #define USIG_DLL_UNLOAD_WIN32 0x0002
- #define USIG_FAULT_DIALOG_PUSH 0x0003
- #define USIG_FAULT_DIALOG_POP 0x0004
- #define USIG_DLL_UNLOAD_ORPHANS 0x0005
- #define USIG_THREAD_INIT 0x0010
- #define USIG_THREAD_EXIT 0x0020
- #define USIG_PROCESS_CREATE 0x0100
- #define USIG_PROCESS_INIT 0x0200
- #define USIG_PROCESS_EXIT 0x0300
- #define USIG_PROCESS_DESTROY 0x0400
- #define USIG_PROCESS_RUNNING 0x0500
- #define USIG_PROCESS_LOADED 0x0600
- /* UserSeeUserDo parameters */
- #define USUD_LOCALALLOC 0x0001
- #define USUD_LOCALFREE 0x0002
- #define USUD_LOCALCOMPACT 0x0003
- #define USUD_LOCALHEAP 0x0004
- #define USUD_FIRSTCLASS 0x0005
- /***********************************************************************
- * GetFreeSystemResources (USER.284)
- */
- WORD WINAPI GetFreeSystemResources16( WORD resType )
- {
- HINSTANCE16 gdi_inst;
- WORD gdi_heap;
- int userPercent, gdiPercent;
- if ((gdi_inst = LoadLibrary16( "GDI" )) < 32) return 0;
- gdi_heap = gdi_inst | 7;
- switch(resType)
- {
- case GFSR_USERRESOURCES:
- userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
- LOCAL_HeapSize( USER_HeapSel );
- gdiPercent = 100;
- break;
- case GFSR_GDIRESOURCES:
- gdiPercent = (int)LOCAL_CountFree( gdi_inst ) * 100 /
- LOCAL_HeapSize( gdi_inst );
- userPercent = 100;
- break;
- case GFSR_SYSTEMRESOURCES:
- userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
- LOCAL_HeapSize( USER_HeapSel );
- gdiPercent = (int)LOCAL_CountFree( gdi_inst ) * 100 /
- LOCAL_HeapSize( gdi_inst );
- break;
- default:
- userPercent = gdiPercent = 0;
- break;
- }
- FreeLibrary16( gdi_inst );
- TRACE("<- userPercent %d, gdiPercent %d\n", userPercent, gdiPercent);
- return (WORD)min( userPercent, gdiPercent );
- }
- /***********************************************************************
- * USER_Lock
- */
- void USER_Lock(void)
- {
- _EnterSysLevel( &USER_SysLevel );
- }
- /***********************************************************************
- * USER_Unlock
- */
- void USER_Unlock(void)
- {
- _LeaveSysLevel( &USER_SysLevel );
- }
- /***********************************************************************
- * USER_CheckNotLock
- *
- * Make sure that we don't hold the user lock.
- */
- void USER_CheckNotLock(void)
- {
- _CheckNotSysLevel( &USER_SysLevel );
- }
- /***********************************************************************
- * WIN_SuspendWndsLock
- *
- * Suspend the lock on WND structures.
- * Returns the number of locks suspended
- * FIXME: should be removed
- */
- int WIN_SuspendWndsLock( void )
- {
- int isuspendedLocks = _ConfirmSysLevel( &USER_SysLevel );
- int count = isuspendedLocks;
- while ( count-- > 0 )
- _LeaveSysLevel( &USER_SysLevel );
- return isuspendedLocks;
- }
- /***********************************************************************
- * WIN_RestoreWndsLock
- *
- * Restore the suspended locks on WND structures
- * FIXME: should be removed
- */
- void WIN_RestoreWndsLock( int ipreviousLocks )
- {
- while ( ipreviousLocks-- > 0 )
- _EnterSysLevel( &USER_SysLevel );
- }
- /***********************************************************************
- * SignalProc32 (USER.391)
- * UserSignalProc (USER32.@)
- *
- * The exact meaning of the USER signals is undocumented, but this
- * should cover the basic idea:
- *
- * USIG_DLL_UNLOAD_WIN16
- * This is sent when a 16-bit module is unloaded.
- *
- * USIG_DLL_UNLOAD_WIN32
- * This is sent when a 32-bit module is unloaded.
- *
- * USIG_DLL_UNLOAD_ORPHANS
- * This is sent after the last Win3.1 module is unloaded,
- * to allow removal of orphaned menus.
- *
- * USIG_FAULT_DIALOG_PUSH
- * USIG_FAULT_DIALOG_POP
- * These are called to allow USER to prepare for displaying a
- * fault dialog, even though the fault might have happened while
- * inside a USER critical section.
- *
- * USIG_THREAD_INIT
- * This is called from the context of a new thread, as soon as it
- * has started to run.
- *
- * USIG_THREAD_EXIT
- * This is called, still in its context, just before a thread is
- * about to terminate.
- *
- * USIG_PROCESS_CREATE
- * This is called, in the parent process context, after a new process
- * has been created.
- *
- * USIG_PROCESS_INIT
- * This is called in the new process context, just after the main thread
- * has started execution (after the main thread's USIG_THREAD_INIT has
- * been sent).
- *
- * USIG_PROCESS_LOADED
- * This is called after the executable file has been loaded into the
- * new process context.
- *
- * USIG_PROCESS_RUNNING
- * This is called immediately before the main entry point is called.
- *
- * USIG_PROCESS_EXIT
- * This is called in the context of a process that is about to
- * terminate (but before the last thread's USIG_THREAD_EXIT has
- * been sent).
- *
- * USIG_PROCESS_DESTROY
- * This is called after a process has terminated.
- *
- *
- * The meaning of the dwFlags bits is as follows:
- *
- * USIG_FLAGS_WIN32
- * Current process is 32-bit.
- *
- * USIG_FLAGS_GUI
- * Current process is a (Win32) GUI process.
- *
- * USIG_FLAGS_FEEDBACK
- * Current process needs 'feedback' (determined from the STARTUPINFO
- * flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
- *
- * USIG_FLAGS_FAULT
- * The signal is being sent due to a fault.
- */
- WORD WINAPI UserSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
- DWORD dwFlags, HMODULE16 hModule )
- {
- FIXME("(%04x, %08lx, %04lx, %04x)\n",
- uCode, dwThreadOrProcessID, dwFlags, hModule );
- /* FIXME: Should chain to GdiSignalProc now. */
- return 0;
- }
- /***********************************************************************
- * USER_GetProcessHandleList(Internal)
- */
- static HANDLE *USER_GetProcessHandleList(void)
- {
- DWORD count, i, n;
- HANDLE *list;
- PROCESSENTRY32 pe;
- HANDLE hSnapshot;
- BOOL r;
- hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 );
- if (!hSnapshot)
- {
- ERR("cannot create snapshot\n");
- return FALSE;
- }
- /* count the number of processes plus one */
- for (count=0; ;count++)
- {
- pe.dwSize = sizeof pe;
- if (count)
- r = Process32Next( hSnapshot, &pe );
- else
- r = Process32First( hSnapshot, &pe );
- if (!r)
- break;
- }
- /* allocate memory make a list of the process handles */
- list = HeapAlloc( GetProcessHeap(), 0, (count+1)*sizeof(HANDLE) );
- n=0;
- for (i=0; i<count; i++)
- {
- pe.dwSize = sizeof pe;
- if (i)
- r = Process32Next( hSnapshot, &pe );
- else
- r = Process32First( hSnapshot, &pe );
- if (!r)
- break;
- /* don't kill outselves */
- if (GetCurrentProcessId() == pe.th32ProcessID )
- continue;
- /* open the process so we don't can track it */
- list[n] = OpenProcess( PROCESS_QUERY_INFORMATION|
- PROCESS_TERMINATE,
- FALSE, pe.th32ProcessID );
- /* check it didn't terminate already */
- if( list[n] )
- n++;
- }
- list[n]=0;
- CloseHandle( hSnapshot );
- if (!r)
- ERR("Error enumerating processes\n");
- TRACE("return %lu processes\n", n);
- return list;
- }
- /***********************************************************************
- * USER_KillProcesses (Internal)
- */
- static DWORD USER_KillProcesses(void)
- {
- DWORD n, r, i;
- HANDLE *handles;
- const DWORD dwShutdownTimeout = 10000;
- TRACE("terminating other processes\n");
- /* kill it and add it to our list of object to wait on */
- handles = USER_GetProcessHandleList();
- for (n=0; handles && handles[n]; n++)
- TerminateProcess( handles[n], 0 );
- /* wait for processes to exit */
- for (i=0; i<n; i+=MAXIMUM_WAIT_OBJECTS)
- {
- int n_objs = ((n-i)>MAXIMUM_WAIT_OBJECTS) ? MAXIMUM_WAIT_OBJECTS : (n-i);
- r = WaitForMultipleObjects( n_objs, &handles[i], TRUE, dwShutdownTimeout );
- if (r==WAIT_TIMEOUT)
- ERR("wait failed!\n");
- }
-
- /* close the handles */
- for (i=0; i<n; i++)
- CloseHandle( handles[i] );
- HeapFree( GetProcessHeap(), 0, handles );
- return n;
- }
-
- /***********************************************************************
- * USER_DoShutdown (Internal)
- */
- static void USER_DoShutdown(void)
- {
- DWORD i, n;
- const DWORD nRetries = 10;
- for (i=0; i<nRetries; i++)
- {
- n = USER_KillProcesses();
- TRACE("Killed %ld processes, attempt %ld\n", n, i);
- if(!n)
- break;
- }
- }
-
- /***********************************************************************
- * USER_StartRebootProcess (Internal)
- */
- static BOOL USER_StartRebootProcess(void)
- {
- WCHAR winebootW[] = { 'w','i','n','e','b','o','o','t',0 };
- PROCESS_INFORMATION pi;
- STARTUPINFOW si;
- BOOL r;
- memset( &si, 0, sizeof si );
- si.cb = sizeof si;
- r = CreateProcessW( NULL, winebootW, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi );
- if (r)
- {
- CloseHandle( pi.hProcess );
- CloseHandle( pi.hThread );
- }
- else
- MESSAGE("wine: Failed to start wineboot\n");
- return r;
- }
- /***********************************************************************
- * ExitWindowsEx (USER32.@)
- */
- BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
- {
- int i;
- BOOL result = FALSE;
- HWND *list, *phwnd;
- /* We have to build a list of all windows first, as in EnumWindows */
- TRACE("(%x,%lx)\n", flags, reserved);
- list = WIN_ListChildren( GetDesktopWindow() );
- if (list)
- {
- /* Send a WM_QUERYENDSESSION message to every window */
- for (i = 0; list[i]; i++)
- {
- /* Make sure that the window still exists */
- if (!IsWindow( list[i] )) continue;
- if (!SendMessageW( list[i], WM_QUERYENDSESSION, 0, 0 )) break;
- }
- result = !list[i];
- /* Now notify all windows that got a WM_QUERYENDSESSION of the result */
- for (phwnd = list; i > 0; i--, phwnd++)
- {
- if (!IsWindow( *phwnd )) continue;
- SendMessageW( *phwnd, WM_ENDSESSION, result, 0 );
- }
- HeapFree( GetProcessHeap(), 0, list );
- if ( !(result || (flags & EWX_FORCE) ))
- return FALSE;
- }
- /* USER_DoShutdown will kill all processes except the current process */
- USER_DoShutdown();
- if (flags & EWX_REBOOT)
- USER_StartRebootProcess();
- if (result) ExitProcess(0);
- return TRUE;
- }
- /***********************************************************************
- * ChangeDisplaySettingsA (USER32.@)
- */
- LONG WINAPI ChangeDisplaySettingsA( LPDEVMODEA devmode, DWORD flags )
- {
- return ChangeDisplaySettingsExA(NULL,devmode,NULL,flags,NULL);
- }
- /***********************************************************************
- * ChangeDisplaySettingsW (USER32.@)
- */
- LONG WINAPI ChangeDisplaySettingsW( LPDEVMODEW devmode, DWORD flags )
- {
- return ChangeDisplaySettingsExW(NULL,devmode,NULL,flags,NULL);
- }
- /***********************************************************************
- * ChangeDisplaySettingsExA (USER32.@)
- */
- LONG WINAPI ChangeDisplaySettingsExA(
- LPCSTR devname, LPDEVMODEA devmode, HWND hwnd, DWORD flags,
- LPVOID lparam
- ) {
- DEVMODEW devmodeW;
- LONG ret;
- UNICODE_STRING nameW;
- if (devname) RtlCreateUnicodeStringFromAsciiz(&nameW, devname);
- else nameW.Buffer = NULL;
- if (devmode)
- {
- devmodeW.dmBitsPerPel = devmode->dmBitsPerPel;
- devmodeW.dmPelsHeight = devmode->dmPelsHeight;
- devmodeW.dmPelsWidth = devmode->dmPelsWidth;
- devmodeW.dmDisplayFlags = devmode->dmDisplayFlags;
- devmodeW.dmDisplayFrequency = devmode->dmDisplayFrequency;
- devmodeW.dmFields = devmode->dmFields;
- ret = ChangeDisplaySettingsExW(nameW.Buffer, &devmodeW, hwnd, flags, lparam);
- }
- else
- {
- ret = ChangeDisplaySettingsExW(nameW.Buffer, NULL, hwnd, flags, lparam);
- }
- if (devname) RtlFreeUnicodeString(&nameW);
- return ret;
- }
- /***********************************************************************
- * ChangeDisplaySettingsExW (USER32.@)
- */
- LONG WINAPI ChangeDisplaySettingsExW( LPCWSTR devname, LPDEVMODEW devmode, HWND hwnd,
- DWORD flags, LPVOID lparam )
- {
- /* Pass the request on to the driver */
- if (!USER_Driver.pChangeDisplaySettingsExW) return DISP_CHANGE_FAILED;
- return USER_Driver.pChangeDisplaySettingsExW( devname, devmode, hwnd, flags, lparam );
- }
- /***********************************************************************
- * EnumDisplaySettingsW (USER32.@)
- *
- * RETURNS
- * TRUE if nth setting exists found (described in the LPDEVMODEW struct)
- * FALSE if we do not have the nth setting
- */
- BOOL WINAPI EnumDisplaySettingsW(
- LPCWSTR name, /* [in] huh? */
- DWORD n, /* [in] nth entry in display settings list*/
- LPDEVMODEW devmode /* [out] devmode for that setting */
- ) {
- return EnumDisplaySettingsExW(name, n, devmode, 0);
- }
- /***********************************************************************
- * EnumDisplaySettingsA (USER32.@)
- */
- BOOL WINAPI EnumDisplaySettingsA(LPCSTR name,DWORD n,LPDEVMODEA devmode)
- {
- return EnumDisplaySettingsExA(name, n, devmode, 0);
- }
- /***********************************************************************
- * EnumDisplaySettingsExA (USER32.@)
- */
- BOOL WINAPI EnumDisplaySettingsExA(LPCSTR lpszDeviceName, DWORD iModeNum,
- LPDEVMODEA lpDevMode, DWORD dwFlags)
- {
- DEVMODEW devmodeW;
- BOOL ret;
- UNICODE_STRING nameW;
- if (lpszDeviceName) RtlCreateUnicodeStringFromAsciiz(&nameW, lpszDeviceName);
- else nameW.Buffer = NULL;
- ret = EnumDisplaySettingsExW(nameW.Buffer,iModeNum,&devmodeW,dwFlags);
- if (ret)
- {
- lpDevMode->dmBitsPerPel = devmodeW.dmBitsPerPel;
- lpDevMode->dmPelsHeight = devmodeW.dmPelsHeight;
- lpDevMode->dmPelsWidth = devmodeW.dmPelsWidth;
- lpDevMode->dmDisplayFlags = devmodeW.dmDisplayFlags;
- lpDevMode->dmDisplayFrequency = devmodeW.dmDisplayFrequency;
- lpDevMode->dmFields = devmodeW.dmFields;
- }
- if (lpszDeviceName) RtlFreeUnicodeString(&nameW);
- return ret;
- }
- /***********************************************************************
- * EnumDisplaySettingsExW (USER32.@)
- */
- BOOL WINAPI EnumDisplaySettingsExW(LPCWSTR lpszDeviceName, DWORD iModeNum,
- LPDEVMODEW lpDevMode, DWORD dwFlags)
- {
- /* Pass the request on to the driver */
- if (!USER_Driver.pEnumDisplaySettingsExW) return FALSE;
- return USER_Driver.pEnumDisplaySettingsExW(lpszDeviceName, iModeNum, lpDevMode, dwFlags);
- }
- /***********************************************************************
- * EnumDisplayDevicesA (USER32.@)
- */
- BOOL WINAPI EnumDisplayDevicesA(
- LPVOID unused,DWORD i,LPDISPLAY_DEVICEA lpDisplayDevice,DWORD dwFlags
- ) {
- if (i)
- return FALSE;
- FIXME("(%p,%ld,%p,0x%08lx), stub!\n",unused,i,lpDisplayDevice,dwFlags);
- strcpy(lpDisplayDevice->DeviceName,"X11");
- strcpy(lpDisplayDevice->DeviceString,"X 11 Windowing System");
- lpDisplayDevice->StateFlags =
- DISPLAY_DEVICE_ATTACHED_TO_DESKTOP |
- DISPLAY_DEVICE_PRIMARY_DEVICE |
- DISPLAY_DEVICE_VGA_COMPATIBLE;
- return TRUE;
- }
- /***********************************************************************
- * EnumDisplayDevicesW (USER32.@)
- */
- BOOL WINAPI EnumDisplayDevicesW(
- LPVOID unused,DWORD i,LPDISPLAY_DEVICEW lpDisplayDevice,DWORD dwFlags
- ) {
- if (i)
- return FALSE;
- FIXME("(%p,%ld,%p,0x%08lx), stub!\n",unused,i,lpDisplayDevice,dwFlags);
- MultiByteToWideChar( CP_ACP, 0, "X11", -1, lpDisplayDevice->DeviceName,
- sizeof(lpDisplayDevice->DeviceName)/sizeof(WCHAR) );
- MultiByteToWideChar( CP_ACP, 0, "X11 Windowing System", -1, lpDisplayDevice->DeviceString,
- sizeof(lpDisplayDevice->DeviceString)/sizeof(WCHAR) );
- lpDisplayDevice->StateFlags =
- DISPLAY_DEVICE_ATTACHED_TO_DESKTOP |
- DISPLAY_DEVICE_PRIMARY_DEVICE |
- DISPLAY_DEVICE_VGA_COMPATIBLE;
- return TRUE;
- }
- /***********************************************************************
- * UserSeeUserDo (USER.216)
- */
- DWORD WINAPI UserSeeUserDo16(WORD wReqType, WORD wParam1, WORD wParam2, WORD wParam3)
- {
- switch (wReqType)
- {
- case USUD_LOCALALLOC:
- return LOCAL_Alloc(USER_HeapSel, wParam1, wParam3);
- case USUD_LOCALFREE:
- return LOCAL_Free(USER_HeapSel, wParam1);
- case USUD_LOCALCOMPACT:
- return LOCAL_Compact(USER_HeapSel, wParam3, 0);
- case USUD_LOCALHEAP:
- return USER_HeapSel;
- case USUD_FIRSTCLASS:
- FIXME("return a pointer to the first window class.\n");
- return (DWORD)-1;
- default:
- WARN("wReqType %04x (unknown)\n", wReqType);
- return (DWORD)-1;
- }
- }
- /***********************************************************************
- * RegisterLogonProcess (USER32.@)
- */
- DWORD WINAPI RegisterLogonProcess(HANDLE hprocess,BOOL x) {
- FIXME("(%p,%d),stub!\n",hprocess,x);
- return 1;
- }
- /***********************************************************************
- * CreateWindowStationW (USER32.@)
- */
- HWINSTA WINAPI CreateWindowStationW(
- LPWSTR winstation,DWORD res1,DWORD desiredaccess,
- LPSECURITY_ATTRIBUTES lpsa
- ) {
- FIXME("(%s,0x%08lx,0x%08lx,%p),stub!\n",debugstr_w(winstation),
- res1,desiredaccess,lpsa
- );
- return (HWINSTA)0xdeadcafe;
- }
- /***********************************************************************
- * SetProcessWindowStation (USER32.@)
- */
- BOOL WINAPI SetProcessWindowStation(HWINSTA hWinSta) {
- FIXME("(%p),stub!\n",hWinSta);
- return TRUE;
- }
- /***********************************************************************
- * SetUserObjectSecurity (USER32.@)
- */
- BOOL WINAPI SetUserObjectSecurity(
- HANDLE hObj,
- PSECURITY_INFORMATION pSIRequested,
- PSECURITY_DESCRIPTOR pSID
- ) {
- FIXME("(%p,%p,%p),stub!\n",hObj,pSIRequested,pSID);
- return TRUE;
- }
- /***********************************************************************
- * CreateDesktopA (USER32.@)
- */
- HDESK WINAPI CreateDesktopA(
- LPSTR lpszDesktop,LPSTR lpszDevice,LPDEVMODEA pDevmode,
- DWORD dwFlags,DWORD dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa
- ) {
- FIXME("(%s,%s,%p,0x%08lx,0x%08lx,%p),stub!\n",
- lpszDesktop,lpszDevice,pDevmode,
- dwFlags,dwDesiredAccess,lpsa
- );
- return (HDESK)0xcafedead;
- }
- /***********************************************************************
- * CreateDesktopW (USER32.@)
- */
- HDESK WINAPI CreateDesktopW(
- LPWSTR lpszDesktop,LPWSTR lpszDevice,LPDEVMODEW pDevmode,
- DWORD dwFlags,DWORD dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa
- ) {
- FIXME("(%s,%s,%p,0x%08lx,0x%08lx,%p),stub!\n",
- debugstr_w(lpszDesktop),debugstr_w(lpszDevice),pDevmode,
- dwFlags,dwDesiredAccess,lpsa
- );
- return (HDESK)0xcafedead;
- }
- /***********************************************************************
- * EnumDesktopWindows (USER32.@)
- */
- BOOL WINAPI EnumDesktopWindows( HDESK hDesktop, WNDENUMPROC lpfn, LPARAM lParam ) {
- FIXME("(%p, %p, 0x%08lx), stub!\n", hDesktop, lpfn, lParam );
- return TRUE;
- }
- /***********************************************************************
- * CloseWindowStation (USER32.@)
- */
- BOOL WINAPI CloseWindowStation(HWINSTA hWinSta)
- {
- FIXME("(%p)\n", hWinSta);
- return TRUE;
- }
- /***********************************************************************
- * CloseDesktop (USER32.@)
- */
- BOOL WINAPI CloseDesktop(HDESK hDesk)
- {
- FIXME("(%p)\n", hDesk);
- return TRUE;
- }
- /***********************************************************************
- * SetWindowStationUser (USER32.@)
- */
- DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2) {
- FIXME("(0x%08lx,0x%08lx),stub!\n",x1,x2);
- return 1;
- }
- /***********************************************************************
- * SetLogonNotifyWindow (USER32.@)
- */
- DWORD WINAPI SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd) {
- FIXME("(%p,%p),stub!\n",hwinsta,hwnd);
- return 1;
- }
- /***********************************************************************
- * LoadLocalFonts (USER32.@)
- */
- VOID WINAPI LoadLocalFonts(VOID) {
- /* are loaded. */
- return;
- }
- /***********************************************************************
- * GetUserObjectInformationA (USER32.@)
- */
- BOOL WINAPI GetUserObjectInformationA( HANDLE hObj, INT nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
- { FIXME("(%p %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
- return TRUE;
- }
- /***********************************************************************
- * GetUserObjectInformationW (USER32.@)
- */
- BOOL WINAPI GetUserObjectInformationW( HANDLE hObj, INT nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
- { FIXME("(%p %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
- return TRUE;
- }
- /***********************************************************************
- * GetUserObjectSecurity (USER32.@)
- */
- BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, PSECURITY_INFORMATION pSIRequested,
- PSECURITY_DESCRIPTOR pSID, DWORD nLength, LPDWORD lpnLengthNeeded)
- { FIXME("(%p %p %p len=%ld %p),stub!\n", hObj, pSIRequested, pSID, nLength, lpnLengthNeeded);
- return TRUE;
- }
- /***********************************************************************
- * SetSystemCursor (USER32.@)
- */
- BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
- { FIXME("(%p,%08lx),stub!\n", hcur, id);
- return TRUE;
- }
- /***********************************************************************
- * RegisterSystemThread (USER32.@)
- */
- void WINAPI RegisterSystemThread(DWORD flags, DWORD reserved)
- {
- FIXME("(%08lx, %08lx)\n", flags, reserved);
- }
- /***********************************************************************
- * RegisterDeviceNotificationA (USER32.@)
- *
- * See RegisterDeviceNotificationW.
- */
- HDEVNOTIFY WINAPI RegisterDeviceNotificationA(HANDLE hnd, LPVOID notifyfilter, DWORD flags)
- {
- FIXME("(hwnd=%p, filter=%p,flags=0x%08lx), STUB!\n", hnd,notifyfilter,flags );
- return 0;
- }
- /***********************************************************************
- * RegisterDeviceNotificationW (USER32.@)
- *
- * Registers a window with the system so that it will receive
- * notifications about a device.
- *
- * PARAMS
- * hRecepient [I] Window or service status handle that
- * will receive notifications.
- * pNotificationFilter [I] DEV_BROADCAST_HDR followed by some
- * type-specific data.
- * dwFlags [I] See notes
- *
- * RETURNS
- *
- * A handle to the device notification.
- *
- * NOTES
- *
- * The dwFlags parameter can be one of two values:
- *| DEVICE_NOTIFY_WINDOW_HANDLE - hRecepient is a window handle
- *| DEVICE_NOTIFY_SERVICE_HANDLE - hRecepient is a service status handle
- */
- HDEVNOTIFY WINAPI RegisterDeviceNotificationW(HANDLE hRecepient, LPVOID pNotificationFilter, DWORD dwFlags)
- {
- FIXME("(hwnd=%p, filter=%p,flags=0x%08lx), STUB!\n", hRecepient,pNotificationFilter,dwFlags );
- return 0;
- }
|