4 * Copyright 1993 Robert J. Amstadt
9 #include "wine/winbase16.h"
17 #include "clipboard.h"
19 #include "cursoricon.h"
33 DECLARE_DEBUG_CHANNEL(hook)
34 DECLARE_DEBUG_CHANNEL(local)
35 DECLARE_DEBUG_CHANNEL(system)
36 DECLARE_DEBUG_CHANNEL(win)
37 DECLARE_DEBUG_CHANNEL(win32)
39 /***********************************************************************
40 * GetFreeSystemResources (USER.284)
42 WORD WINAPI GetFreeSystemResources16( WORD resType )
44 int userPercent, gdiPercent;
48 case GFSR_USERRESOURCES:
49 userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
50 LOCAL_HeapSize( USER_HeapSel );
54 case GFSR_GDIRESOURCES:
55 gdiPercent = (int)LOCAL_CountFree( GDI_HeapSel ) * 100 /
56 LOCAL_HeapSize( GDI_HeapSel );
60 case GFSR_SYSTEMRESOURCES:
61 userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
62 LOCAL_HeapSize( USER_HeapSel );
63 gdiPercent = (int)LOCAL_CountFree( GDI_HeapSel ) * 100 /
64 LOCAL_HeapSize( GDI_HeapSel );
70 return (WORD)MIN( userPercent, gdiPercent );
74 /***********************************************************************
75 * SystemHeapInfo (TOOLHELP.71)
77 BOOL16 WINAPI SystemHeapInfo16( SYSHEAPINFO *pHeapInfo )
79 pHeapInfo->wUserFreePercent = GetFreeSystemResources16( GFSR_USERRESOURCES );
80 pHeapInfo->wGDIFreePercent = GetFreeSystemResources16( GFSR_GDIRESOURCES );
81 pHeapInfo->hUserSegment = USER_HeapSel;
82 pHeapInfo->hGDISegment = GDI_HeapSel;
87 /***********************************************************************
88 * TimerCount (TOOLHELP.80)
90 BOOL16 WINAPI TimerCount16( TIMERINFO *pTimerInfo )
93 * In standard mode, dwmsSinceStart = dwmsThisVM
95 * I tested this, under Windows in enhanced mode, and
96 * if you never switch VM (ie start/stop DOS) these
97 * values should be the same as well.
99 * Also, Wine should adjust for the hardware timer
100 * to reduce the amount of error to ~1ms.
101 * I can't be bothered, can you?
103 pTimerInfo->dwmsSinceStart = pTimerInfo->dwmsThisVM = GetTickCount();
107 /**********************************************************************
110 INT16 WINAPI InitApp16( HINSTANCE16 hInstance )
112 /* Hack: restore the divide-by-zero handler */
113 /* FIXME: should set a USER-specific handler that displays a msg box */
114 INT_SetPMHandler( 0, INT_GetPMHandler( 0xff ) );
116 /* Create task message queue */
117 if ( !GetFastQueue16() ) return 0;
122 /**********************************************************************
125 static void USER_ModuleUnload( HMODULE16 hModule )
127 HOOK_FreeModuleHooks( hModule );
128 CLASS_FreeModuleClasses( hModule );
129 CURSORICON_FreeModuleIcons( hModule );
132 /**********************************************************************
135 static void USER_QueueCleanup( HQUEUE16 hQueue )
139 WND* desktop = WIN_GetDesktop();
141 /* Patch desktop window */
142 if ( desktop->hmemTaskQ == hQueue )
144 HTASK16 nextTask = TASK_GetNextTask( GetCurrentTask() );
145 desktop->hmemTaskQ = GetTaskQueue16( nextTask );
148 /* Patch resident popup menu window */
149 MENU_PatchResidentPopup( hQueue, NULL );
151 TIMER_RemoveQueueTimers( hQueue );
153 HOOK_FreeQueueHooks( hQueue );
155 QUEUE_SetExitingQueue( hQueue );
156 WIN_ResetQueueWindows( desktop, hQueue, (HQUEUE16)0);
157 CLIPBOARD_ResetLock( hQueue, 0 );
158 QUEUE_SetExitingQueue( 0 );
160 /* Free the message queue */
161 QUEUE_DeleteMsgQueue( hQueue );
163 WIN_ReleaseDesktop();
167 /**********************************************************************
170 static void USER_AppExit( HINSTANCE16 hInstance )
172 /* FIXME: empty clipboard if needed, maybe destroy menus (Windows
173 * only complains about them but does nothing);
176 /* ModuleUnload() in "Internals" */
178 hInstance = GetExePtr( hInstance );
179 if( GetModuleUsage16( hInstance ) <= 1 )
180 USER_ModuleUnload( hInstance );
184 /***********************************************************************
187 * Clean-up everything and exit the Wine process.
188 * This is the back-end of ExitWindows(), called when all windows
189 * have agreed to be terminated.
191 void USER_ExitWindows(void)
193 /* Do the clean-up stuff */
195 WriteOutProfiles16();
196 SHELL_SaveRegistry();
202 /***********************************************************************
203 * USER_SignalProc (USER.314)
205 void WINAPI USER_SignalProc( HANDLE16 hTaskOrModule, UINT16 uCode,
206 UINT16 uExitFn, HINSTANCE16 hInstance,
209 FIXME( win, "Win 3.1 USER signal %04x\n", uCode );
212 /***********************************************************************
213 * UserSignalProc (USER.610) (USER32.559)
215 * For comments about the meaning of uCode and dwFlags
216 * see PROCESS_CallUserSignalProc.
219 WORD WINAPI UserSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
220 DWORD dwFlags, HMODULE16 hModule )
224 /* FIXME: Proper reaction to most signals still missing. */
228 case USIG_DLL_UNLOAD_WIN16:
229 case USIG_DLL_UNLOAD_WIN32:
230 USER_ModuleUnload( hModule );
233 case USIG_DLL_UNLOAD_ORPHANS:
236 case USIG_FAULT_DIALOG_PUSH:
237 case USIG_FAULT_DIALOG_POP:
240 case USIG_THREAD_INIT:
243 case USIG_THREAD_EXIT:
244 USER_QueueCleanup( GetThreadQueue16( dwThreadOrProcessID ) );
245 SetThreadQueue16( dwThreadOrProcessID, 0 );
248 case USIG_PROCESS_CREATE:
249 case USIG_PROCESS_INIT:
250 case USIG_PROCESS_LOADED:
251 case USIG_PROCESS_RUNNING:
254 case USIG_PROCESS_EXIT:
257 case USIG_PROCESS_DESTROY:
258 hInst = GetProcessDword( dwThreadOrProcessID, GPD_HINSTANCE16 );
259 USER_AppExit( hInst );
263 FIXME( win, "(%04x, %08lx, %04lx, %04x)\n",
264 uCode, dwThreadOrProcessID, dwFlags, hModule );
268 /* FIXME: Should chain to GdiSignalProc now. */
275 /***********************************************************************
276 * ExitWindows16 (USER.7)
278 BOOL16 WINAPI ExitWindows16( DWORD dwReturnCode, UINT16 wReserved )
280 return ExitWindowsEx( EWX_LOGOFF, 0xffffffff );
284 /***********************************************************************
285 * ExitWindowsExec16 (USER.246)
287 BOOL16 WINAPI ExitWindowsExec16( LPCSTR lpszExe, LPCSTR lpszParams )
289 TRACE(system, "Should run the following in DOS-mode: \"%s %s\"\n",
290 lpszExe, lpszParams);
291 return ExitWindowsEx( EWX_LOGOFF, 0xffffffff );
295 /***********************************************************************
296 * ExitWindowsEx (USER32.196)
298 BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
304 /* We have to build a list of all windows first, as in EnumWindows */
306 if (!(list = WIN_BuildWinArray( WIN_GetDesktop(), 0, NULL )))
308 WIN_ReleaseDesktop();
312 /* Send a WM_QUERYENDSESSION message to every window */
314 for (ppWnd = list, i = 0; *ppWnd; ppWnd++, i++)
316 /* Make sure that the window still exists */
317 if (!IsWindow( (*ppWnd)->hwndSelf )) continue;
318 if (!SendMessage16( (*ppWnd)->hwndSelf, WM_QUERYENDSESSION, 0, 0 ))
323 /* Now notify all windows that got a WM_QUERYENDSESSION of the result */
325 for (ppWnd = list; i > 0; i--, ppWnd++)
327 if (!IsWindow( (*ppWnd)->hwndSelf )) continue;
328 SendMessage16( (*ppWnd)->hwndSelf, WM_ENDSESSION, result, 0 );
330 WIN_ReleaseWinArray(list);
332 if (result) USER_ExitWindows();
333 WIN_ReleaseDesktop();
338 /***********************************************************************
339 * ChangeDisplaySettingA (USER32.589)
341 LONG WINAPI ChangeDisplaySettingsA( LPDEVMODEA devmode, DWORD flags )
343 FIXME(system, ": stub\n");
345 FIXME(system," devmode=NULL (return to default mode)\n");
346 else if ( (devmode->dmBitsPerPel != DESKTOP_GetScreenDepth())
347 || (devmode->dmPelsHeight != DESKTOP_GetScreenHeight())
348 || (devmode->dmPelsWidth != DESKTOP_GetScreenWidth()) )
352 if (devmode->dmFields & DM_BITSPERPEL)
353 FIXME(system," bpp=%ld\n",devmode->dmBitsPerPel);
354 if (devmode->dmFields & DM_PELSWIDTH)
355 FIXME(system," width=%ld\n",devmode->dmPelsWidth);
356 if (devmode->dmFields & DM_PELSHEIGHT)
357 FIXME(system," height=%ld\n",devmode->dmPelsHeight);
358 FIXME(system," (Putting X in this mode beforehand might help)\n");
359 /* we don't, but the program ... does not need to know */
360 return DISP_CHANGE_SUCCESSFUL;
362 return DISP_CHANGE_SUCCESSFUL;
365 /***********************************************************************
366 * EnumDisplaySettingsA (USER32.592)
367 * FIXME: Currently uses static list of modes.
370 * TRUE if nth setting exists found (described in the LPDEVMODE32A struct)
371 * FALSE if we do not have the nth setting
373 BOOL WINAPI EnumDisplaySettingsA(
374 LPCSTR name, /* [in] huh? */
375 DWORD n, /* [in] nth entry in display settings list*/
376 LPDEVMODEA devmode /* [out] devmode for that setting */
382 } modes[NRMODES]={{512,384},{640,400},{640,480},{800,600},{1024,768}};
383 int depths[4] = {8,16,24,32};
385 TRACE(system,"(%s,%ld,%p)\n",name,n,devmode);
387 devmode->dmBitsPerPel = DESKTOP_GetScreenDepth();
388 devmode->dmPelsHeight = DESKTOP_GetScreenHeight();
389 devmode->dmPelsWidth = DESKTOP_GetScreenWidth();
392 if ((n-1)<NRMODES*NRDEPTHS) {
393 devmode->dmBitsPerPel = depths[(n-1)/NRMODES];
394 devmode->dmPelsHeight = modes[(n-1)%NRMODES].h;
395 devmode->dmPelsWidth = modes[(n-1)%NRMODES].w;
401 /***********************************************************************
402 * EnumDisplaySettingsW (USER32.593)
404 BOOL WINAPI EnumDisplaySettingsW(LPCWSTR name,DWORD n,LPDEVMODEW devmode) {
405 LPSTR nameA = HEAP_strdupWtoA(GetProcessHeap(),0,name);
407 BOOL ret = EnumDisplaySettingsA(nameA,n,&devmodeA);
410 devmode->dmBitsPerPel = devmodeA.dmBitsPerPel;
411 devmode->dmPelsHeight = devmodeA.dmPelsHeight;
412 devmode->dmPelsWidth = devmodeA.dmPelsWidth;
413 /* FIXME: convert rest too, if they are ever returned */
415 HeapFree(GetProcessHeap(),0,nameA);
419 /***********************************************************************
420 * SetEventHook (USER.321)
422 * Used by Turbo Debugger for Windows
424 FARPROC16 WINAPI SetEventHook16(FARPROC16 lpfnEventHook)
426 FIXME(hook, "(lpfnEventHook=%08x): stub\n", (UINT)lpfnEventHook);
430 /***********************************************************************
431 * UserSeeUserDo (USER.216)
433 DWORD WINAPI UserSeeUserDo16(WORD wReqType, WORD wParam1, WORD wParam2, WORD wParam3)
437 case USUD_LOCALALLOC:
438 return LOCAL_Alloc(USER_HeapSel, wParam1, wParam3);
440 return LOCAL_Free(USER_HeapSel, wParam1);
441 case USUD_LOCALCOMPACT:
442 return LOCAL_Compact(USER_HeapSel, wParam3, 0);
445 case USUD_FIRSTCLASS:
446 FIXME(local, "return a pointer to the first window class.\n");
449 WARN(local, "wReqType %04x (unknown)", wReqType);
454 /***********************************************************************
455 * RegisterLogonProcess (USER32.434)
457 DWORD WINAPI RegisterLogonProcess(HANDLE hprocess,BOOL x) {
458 FIXME(win32,"(%d,%d),stub!\n",hprocess,x);
462 /***********************************************************************
463 * CreateWindowStation32W (USER32.86)
465 HWINSTA WINAPI CreateWindowStationW(
466 LPWSTR winstation,DWORD res1,DWORD desiredaccess,
467 LPSECURITY_ATTRIBUTES lpsa
469 FIXME(win32,"(%s,0x%08lx,0x%08lx,%p),stub!\n",debugstr_w(winstation),
470 res1,desiredaccess,lpsa
475 /***********************************************************************
476 * SetProcessWindowStation (USER32.496)
478 BOOL WINAPI SetProcessWindowStation(HWINSTA hWinSta) {
479 FIXME(win32,"(%d),stub!\n",hWinSta);
483 /***********************************************************************
484 * SetUserObjectSecurity (USER32.514)
486 BOOL WINAPI SetUserObjectSecurity(
488 /*LPSECURITY_INFORMATION*/LPVOID pSIRequested,
489 PSECURITY_DESCRIPTOR pSID
491 FIXME(win32,"(0x%08x,%p,%p),stub!\n",hObj,pSIRequested,pSID);
495 /***********************************************************************
496 * CreateDesktop32W (USER32.69)
498 HDESK WINAPI CreateDesktopW(
499 LPWSTR lpszDesktop,LPWSTR lpszDevice,LPDEVMODEW pDevmode,
500 DWORD dwFlags,DWORD dwDesiredAccess,LPSECURITY_ATTRIBUTES lpsa
502 FIXME(win32,"(%s,%s,%p,0x%08lx,0x%08lx,%p),stub!\n",
503 debugstr_w(lpszDesktop),debugstr_w(lpszDevice),pDevmode,
504 dwFlags,dwDesiredAccess,lpsa
509 BOOL WINAPI CloseWindowStation(HWINSTA hWinSta)
511 FIXME(win32, "(0x%08x)\n", hWinSta);
514 BOOL WINAPI CloseDesktop(HDESK hDesk)
516 FIXME(win32, "(0x%08x)\n", hDesk);
520 /***********************************************************************
521 * SetWindowStationUser (USER32.521)
523 DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2) {
524 FIXME(win32,"(0x%08lx,0x%08lx),stub!\n",x1,x2);
528 /***********************************************************************
529 * SetLogonNotifyWindow (USER32.486)
531 DWORD WINAPI SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd) {
532 FIXME(win32,"(0x%x,%04x),stub!\n",hwinsta,hwnd);
536 /***********************************************************************
537 * LoadLocalFonts (USER32.486)
539 VOID WINAPI LoadLocalFonts(VOID) {
543 /***********************************************************************
544 * GetUserObjectInformation32A (USER32.299)
546 BOOL WINAPI GetUserObjectInformationA( HANDLE hObj, int nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
547 { FIXME(win32,"(0x%x %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
550 /***********************************************************************
551 * GetUserObjectInformation32W (USER32.300)
553 BOOL WINAPI GetUserObjectInformationW( HANDLE hObj, int nIndex, LPVOID pvInfo, DWORD nLength, LPDWORD lpnLen )
554 { FIXME(win32,"(0x%x %i %p %ld %p),stub!\n", hObj, nIndex, pvInfo, nLength, lpnLen );
557 /***********************************************************************
558 * GetUserObjectSecurity32 (USER32.300)
560 BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequested,
561 PSECURITY_DESCRIPTOR pSID, DWORD nLength, LPDWORD lpnLengthNeeded)
562 { FIXME(win32,"(0x%x %p %p len=%ld %p),stub!\n", hObj, pSIRequested, pSID, nLength, lpnLengthNeeded);
566 /***********************************************************************
567 * SetSystemCursor (USER32.507)
569 BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
570 { FIXME(win32,"(%08x,%08lx),stub!\n", hcur, id);
574 /***********************************************************************
575 * RegisterSystemThread (USER32.435)
577 void WINAPI RegisterSystemThread(DWORD flags, DWORD reserved)
579 FIXME(win32, "(%08lx, %08lx)\n", flags, reserved);