4 * Copyright 1993 Robert J. Amstadt
9 #include "wine/winbase16.h"
17 #include "clipboard.h"
19 #include "cursoricon.h"
32 /***********************************************************************
33 * GetFreeSystemResources (USER.284)
35 WORD WINAPI
GetFreeSystemResources16( WORD resType
)
37 int userPercent
, gdiPercent
;
41 case GFSR_USERRESOURCES
:
42 userPercent
= (int)LOCAL_CountFree( USER_HeapSel
) * 100 /
43 LOCAL_HeapSize( USER_HeapSel
);
47 case GFSR_GDIRESOURCES
:
48 gdiPercent
= (int)LOCAL_CountFree( GDI_HeapSel
) * 100 /
49 LOCAL_HeapSize( GDI_HeapSel
);
53 case GFSR_SYSTEMRESOURCES
:
54 userPercent
= (int)LOCAL_CountFree( USER_HeapSel
) * 100 /
55 LOCAL_HeapSize( USER_HeapSel
);
56 gdiPercent
= (int)LOCAL_CountFree( GDI_HeapSel
) * 100 /
57 LOCAL_HeapSize( GDI_HeapSel
);
63 return (WORD
)MIN( userPercent
, gdiPercent
);
67 /***********************************************************************
68 * SystemHeapInfo (TOOLHELP.71)
70 BOOL16 WINAPI
SystemHeapInfo16( SYSHEAPINFO
*pHeapInfo
)
72 pHeapInfo
->wUserFreePercent
= GetFreeSystemResources16( GFSR_USERRESOURCES
);
73 pHeapInfo
->wGDIFreePercent
= GetFreeSystemResources16( GFSR_GDIRESOURCES
);
74 pHeapInfo
->hUserSegment
= USER_HeapSel
;
75 pHeapInfo
->hGDISegment
= GDI_HeapSel
;
80 /***********************************************************************
81 * TimerCount (TOOLHELP.80)
83 BOOL16 WINAPI
TimerCount16( TIMERINFO
*pTimerInfo
)
86 * In standard mode, dwmsSinceStart = dwmsThisVM
88 * I tested this, under Windows in enhanced mode, and
89 * if you never switch VM (ie start/stop DOS) these
90 * values should be the same as well.
92 * Also, Wine should adjust for the hardware timer
93 * to reduce the amount of error to ~1ms.
94 * I can't be bothered, can you?
96 pTimerInfo
->dwmsSinceStart
= pTimerInfo
->dwmsThisVM
= GetTickCount();
100 /**********************************************************************
103 INT16 WINAPI
InitApp16( HINSTANCE16 hInstance
)
105 /* Hack: restore the divide-by-zero handler */
106 /* FIXME: should set a USER-specific handler that displays a msg box */
107 INT_SetPMHandler( 0, INT_GetPMHandler( 0xff ) );
109 /* Create task message queue */
110 if ( !GetFastQueue16() ) return 0;
115 /**********************************************************************
118 static void USER_ModuleUnload( HMODULE16 hModule
)
120 HOOK_FreeModuleHooks( hModule
);
121 CLASS_FreeModuleClasses( hModule
);
122 CURSORICON_FreeModuleIcons( hModule
);
125 /**********************************************************************
128 void USER_QueueCleanup( HQUEUE16 hQueue
)
132 WND
* desktop
= WIN_GetDesktop();
134 /* Patch resident popup menu window */
135 MENU_PatchResidentPopup( hQueue
, NULL
);
137 TIMER_RemoveQueueTimers( hQueue
);
139 HOOK_FreeQueueHooks( hQueue
);
141 QUEUE_SetExitingQueue( hQueue
);
142 WIN_ResetQueueWindows( desktop
, hQueue
, (HQUEUE16
)0);
143 CLIPBOARD_ResetLock( hQueue
, 0 );
144 QUEUE_SetExitingQueue( 0 );
146 /* Free the message queue */
147 QUEUE_DeleteMsgQueue( hQueue
);
151 /**********************************************************************
154 static void USER_AppExit( HTASK16 hTask
, HINSTANCE16 hInstance
, HQUEUE16 hQueue
)
156 /* FIXME: empty clipboard if needed, maybe destroy menus (Windows
157 * only complains about them but does nothing);
160 WND
* desktop
= WIN_GetDesktop();
162 /* Patch desktop window */
163 if( desktop
->hmemTaskQ
== hQueue
)
164 desktop
->hmemTaskQ
= GetTaskQueue16(TASK_GetNextTask(hTask
));
166 USER_QueueCleanup(hQueue
);
168 /* ModuleUnload() in "Internals" */
170 hInstance
= GetExePtr( hInstance
);
171 if( GetModuleUsage16( hInstance
) <= 1 )
172 USER_ModuleUnload( hInstance
);
176 /***********************************************************************
179 * Clean-up everything and exit the Wine process.
180 * This is the back-end of ExitWindows(), called when all windows
181 * have agreed to be terminated.
183 void USER_ExitWindows(void)
185 /* Do the clean-up stuff */
187 WriteOutProfiles16();
188 SHELL_SaveRegistry();
194 /***********************************************************************
195 * USER_SignalProc (USER.314)
197 void WINAPI
USER_SignalProc( HANDLE16 hTaskOrModule
, UINT16 uCode
,
198 UINT16 uExitFn
, HINSTANCE16 hInstance
,
204 case USIG_TERMINATION
:
205 USER_AppExit( hTaskOrModule
, hInstance
, hQueue
); /* task */
211 case USIG_DLL_UNLOAD
:
212 USER_ModuleUnload( hTaskOrModule
); /* module */
216 FIXME(msg
,"Unimplemented USER signal: %i\n", (int)uCode
);
221 /***********************************************************************
222 * ExitWindows16 (USER.7)
224 BOOL16 WINAPI
ExitWindows16( DWORD dwReturnCode
, UINT16 wReserved
)
226 return ExitWindowsEx( EWX_LOGOFF
, 0xffffffff );
230 /***********************************************************************
231 * ExitWindowsExec16 (USER.246)
233 BOOL16 WINAPI
ExitWindowsExec16( LPCSTR lpszExe
, LPCSTR lpszParams
)
235 TRACE(system
, "Should run the following in DOS-mode: \"%s %s\"\n",
236 lpszExe
, lpszParams
);
237 return ExitWindowsEx( EWX_LOGOFF
, 0xffffffff );
241 /***********************************************************************
242 * ExitWindowsEx (USER32.196)
244 BOOL WINAPI
ExitWindowsEx( UINT flags
, DWORD reserved
)
250 /* We have to build a list of all windows first, as in EnumWindows */
252 if (!(list
= WIN_BuildWinArray( WIN_GetDesktop(), 0, NULL
))) return FALSE
;
254 /* Send a WM_QUERYENDSESSION message to every window */
256 for (ppWnd
= list
, i
= 0; *ppWnd
; ppWnd
++, i
++)
258 /* Make sure that the window still exists */
259 if (!IsWindow( (*ppWnd
)->hwndSelf
)) continue;
260 if (!SendMessage16( (*ppWnd
)->hwndSelf
, WM_QUERYENDSESSION
, 0, 0 ))
265 /* Now notify all windows that got a WM_QUERYENDSESSION of the result */
267 for (ppWnd
= list
; i
> 0; i
--, ppWnd
++)
269 if (!IsWindow( (*ppWnd
)->hwndSelf
)) continue;
270 SendMessage16( (*ppWnd
)->hwndSelf
, WM_ENDSESSION
, result
, 0 );
272 HeapFree( SystemHeap
, 0, list
);
274 if (result
) USER_ExitWindows();
279 /***********************************************************************
280 * ChangeDisplaySettingA (USER32.589)
282 LONG WINAPI
ChangeDisplaySettingsA( LPDEVMODEA devmode
, DWORD flags
)
284 FIXME(system
, ": stub\n");
286 FIXME(system
," devmode=NULL (return to default mode)\n");
287 else if ( (devmode
->dmBitsPerPel
!= DESKTOP_GetScreenDepth())
288 || (devmode
->dmPelsHeight
!= DESKTOP_GetScreenHeight())
289 || (devmode
->dmPelsWidth
!= DESKTOP_GetScreenWidth()) )
293 if (devmode
->dmFields
& DM_BITSPERPEL
)
294 FIXME(system
," bpp=%ld\n",devmode
->dmBitsPerPel
);
295 if (devmode
->dmFields
& DM_PELSWIDTH
)
296 FIXME(system
," width=%ld\n",devmode
->dmPelsWidth
);
297 if (devmode
->dmFields
& DM_PELSHEIGHT
)
298 FIXME(system
," height=%ld\n",devmode
->dmPelsHeight
);
299 FIXME(system
," (Putting X in this mode beforehand might help)\n");
300 /* we don't, but the program ... does not need to know */
301 return DISP_CHANGE_SUCCESSFUL
;
303 return DISP_CHANGE_SUCCESSFUL
;
306 /***********************************************************************
307 * EnumDisplaySettingsA (USER32.592)
308 * FIXME: Currently uses static list of modes.
311 * TRUE if nth setting exists found (described in the LPDEVMODE32A struct)
312 * FALSE if we do not have the nth setting
314 BOOL WINAPI
EnumDisplaySettingsA(
315 LPCSTR name
, /* [in] huh? */
316 DWORD n
, /* [in] nth entry in display settings list*/
317 LPDEVMODEA devmode
/* [out] devmode for that setting */
323 } modes
[NRMODES
]={{512,384},{640,400},{640,480},{800,600},{1024,768}};
324 int depths
[4] = {8,16,24,32};
326 TRACE(system
,"(%s,%ld,%p)\n",name
,n
,devmode
);
328 devmode
->dmBitsPerPel
= DESKTOP_GetScreenDepth();
329 devmode
->dmPelsHeight
= DESKTOP_GetScreenHeight();
330 devmode
->dmPelsWidth
= DESKTOP_GetScreenWidth();
333 if ((n
-1)<NRMODES
*NRDEPTHS
) {
334 devmode
->dmBitsPerPel
= depths
[(n
-1)/NRMODES
];
335 devmode
->dmPelsHeight
= modes
[(n
-1)%NRMODES
].h
;
336 devmode
->dmPelsWidth
= modes
[(n
-1)%NRMODES
].w
;
342 /***********************************************************************
343 * EnumDisplaySettingsW (USER32.593)
345 BOOL WINAPI
EnumDisplaySettingsW(LPCWSTR name
,DWORD n
,LPDEVMODEW devmode
) {
346 LPSTR nameA
= HEAP_strdupWtoA(GetProcessHeap(),0,name
);
348 BOOL ret
= EnumDisplaySettingsA(nameA
,n
,&devmodeA
);
351 devmode
->dmBitsPerPel
= devmodeA
.dmBitsPerPel
;
352 devmode
->dmPelsHeight
= devmodeA
.dmPelsHeight
;
353 devmode
->dmPelsWidth
= devmodeA
.dmPelsWidth
;
354 /* FIXME: convert rest too, if they are ever returned */
356 HeapFree(GetProcessHeap(),0,nameA
);
360 /***********************************************************************
361 * SetEventHook (USER.321)
363 * Used by Turbo Debugger for Windows
365 FARPROC16 WINAPI
SetEventHook16(FARPROC16 lpfnEventHook
)
367 FIXME(hook
, "(lpfnEventHook=%08x): stub\n", (UINT
)lpfnEventHook
);
371 /***********************************************************************
372 * UserSeeUserDo (USER.216)
374 DWORD WINAPI
UserSeeUserDo16(WORD wReqType
, WORD wParam1
, WORD wParam2
, WORD wParam3
)
378 case USUD_LOCALALLOC
:
379 return LOCAL_Alloc(USER_HeapSel
, wParam1
, wParam3
);
381 return LOCAL_Free(USER_HeapSel
, wParam1
);
382 case USUD_LOCALCOMPACT
:
383 return LOCAL_Compact(USER_HeapSel
, wParam3
, 0);
386 case USUD_FIRSTCLASS
:
387 FIXME(local
, "return a pointer to the first window class.\n");
390 WARN(local
, "wReqType %04x (unknown)", wReqType
);
395 /***********************************************************************
396 * RegisterLogonProcess (USER32.434)
398 DWORD WINAPI
RegisterLogonProcess(HANDLE hprocess
,BOOL x
) {
399 FIXME(win32
,"(%d,%d),stub!\n",hprocess
,x
);
403 /***********************************************************************
404 * CreateWindowStation32W (USER32.86)
406 HWINSTA WINAPI
CreateWindowStationW(
407 LPWSTR winstation
,DWORD res1
,DWORD desiredaccess
,
408 LPSECURITY_ATTRIBUTES lpsa
410 FIXME(win32
,"(%s,0x%08lx,0x%08lx,%p),stub!\n",debugstr_w(winstation
),
411 res1
,desiredaccess
,lpsa
416 /***********************************************************************
417 * SetProcessWindowStation (USER32.496)
419 BOOL WINAPI
SetProcessWindowStation(HWINSTA hWinSta
) {
420 FIXME(win32
,"(%d),stub!\n",hWinSta
);
424 /***********************************************************************
425 * SetUserObjectSecurity (USER32.514)
427 BOOL WINAPI
SetUserObjectSecurity(
429 /*LPSECURITY_INFORMATION*/LPVOID pSIRequested
,
430 PSECURITY_DESCRIPTOR pSID
432 FIXME(win32
,"(0x%08x,%p,%p),stub!\n",hObj
,pSIRequested
,pSID
);
436 /***********************************************************************
437 * CreateDesktop32W (USER32.69)
439 HDESK WINAPI
CreateDesktopW(
440 LPWSTR lpszDesktop
,LPWSTR lpszDevice
,LPDEVMODEW pDevmode
,
441 DWORD dwFlags
,DWORD dwDesiredAccess
,LPSECURITY_ATTRIBUTES lpsa
443 FIXME(win32
,"(%s,%s,%p,0x%08lx,0x%08lx,%p),stub!\n",
444 debugstr_w(lpszDesktop
),debugstr_w(lpszDevice
),pDevmode
,
445 dwFlags
,dwDesiredAccess
,lpsa
450 /***********************************************************************
451 * SetWindowStationUser (USER32.521)
453 DWORD WINAPI
SetWindowStationUser(DWORD x1
,DWORD x2
) {
454 FIXME(win32
,"(0x%08lx,0x%08lx),stub!\n",x1
,x2
);
458 /***********************************************************************
459 * SetLogonNotifyWindow (USER32.486)
461 DWORD WINAPI
SetLogonNotifyWindow(HWINSTA hwinsta
,HWND hwnd
) {
462 FIXME(win32
,"(0x%x,%04x),stub!\n",hwinsta
,hwnd
);
466 /***********************************************************************
467 * LoadLocalFonts (USER32.486)
469 VOID WINAPI
LoadLocalFonts(VOID
) {
473 /***********************************************************************
474 * GetUserObjectInformation32A (USER32.299)
476 BOOL WINAPI
GetUserObjectInformationA( HANDLE hObj
, int nIndex
, LPVOID pvInfo
, DWORD nLength
, LPDWORD lpnLen
)
477 { FIXME(win32
,"(0x%x %i %p %ld %p),stub!\n", hObj
, nIndex
, pvInfo
, nLength
, lpnLen
);
480 /***********************************************************************
481 * GetUserObjectInformation32W (USER32.300)
483 BOOL WINAPI
GetUserObjectInformationW( HANDLE hObj
, int nIndex
, LPVOID pvInfo
, DWORD nLength
, LPDWORD lpnLen
)
484 { FIXME(win32
,"(0x%x %i %p %ld %p),stub!\n", hObj
, nIndex
, pvInfo
, nLength
, lpnLen
);
487 /***********************************************************************
488 * GetUserObjectSecurity32 (USER32.300)
490 BOOL WINAPI
GetUserObjectSecurity(HANDLE hObj
, SECURITY_INFORMATION
* pSIRequested
,
491 PSECURITY_DESCRIPTOR pSID
, DWORD nLength
, LPDWORD lpnLengthNeeded
)
492 { FIXME(win32
,"(0x%x %p %p len=%ld %p),stub!\n", hObj
, pSIRequested
, pSID
, nLength
, lpnLengthNeeded
);