Better implementation of GetShortPathNameA/W.
[wine/multimedia.git] / windows / user.c
blobb54ea8c044e523a90ebd3dde0c564a2c919ff406
1 /*
2 * Misc. USER functions
4 * Copyright 1993 Robert J. Amstadt
5 * 1996 Alex Korobka
6 */
8 #include <stdlib.h>
9 #include "wine/winbase16.h"
10 #include "winuser.h"
11 #include "heap.h"
12 #include "gdi.h"
13 #include "user.h"
14 #include "task.h"
15 #include "queue.h"
16 #include "win.h"
17 #include "clipboard.h"
18 #include "menu.h"
19 #include "cursoricon.h"
20 #include "hook.h"
21 #include "debug.h"
22 #include "toolhelp.h"
23 #include "message.h"
24 #include "module.h"
25 #include "miscemu.h"
26 #include "shell.h"
27 #include "callback.h"
28 #include "local.h"
29 #include "class.h"
30 #include "desktop.h"
32 /***********************************************************************
33 * GetFreeSystemResources (USER.284)
35 WORD WINAPI GetFreeSystemResources16( WORD resType )
37 int userPercent, gdiPercent;
39 switch(resType)
41 case GFSR_USERRESOURCES:
42 userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
43 LOCAL_HeapSize( USER_HeapSel );
44 gdiPercent = 100;
45 break;
47 case GFSR_GDIRESOURCES:
48 gdiPercent = (int)LOCAL_CountFree( GDI_HeapSel ) * 100 /
49 LOCAL_HeapSize( GDI_HeapSel );
50 userPercent = 100;
51 break;
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 );
58 break;
60 default:
61 return 0;
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;
76 return TRUE;
80 /***********************************************************************
81 * TimerCount (TOOLHELP.80)
83 BOOL16 WINAPI TimerCount16( TIMERINFO *pTimerInfo )
85 /* FIXME
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();
97 return TRUE;
100 /**********************************************************************
101 * InitApp (USER.5)
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;
112 return 1;
115 /**********************************************************************
116 * USER_ModuleUnload
118 static void USER_ModuleUnload( HMODULE16 hModule )
120 HOOK_FreeModuleHooks( hModule );
121 CLASS_FreeModuleClasses( hModule );
122 CURSORICON_FreeModuleIcons( hModule );
125 /**********************************************************************
126 * USER_QueueCleanup
128 void USER_QueueCleanup( HQUEUE16 hQueue )
130 if ( 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 /**********************************************************************
152 * USER_AppExit
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 /***********************************************************************
177 * USER_ExitWindows
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();
190 exit(0);
194 /***********************************************************************
195 * USER_SignalProc (USER.314)
197 void WINAPI USER_SignalProc( HANDLE16 hTaskOrModule, UINT16 uCode,
198 UINT16 uExitFn, HINSTANCE16 hInstance,
199 HQUEUE16 hQueue )
201 switch( uCode )
203 case USIG_GPF:
204 case USIG_TERMINATION:
205 USER_AppExit( hTaskOrModule, hInstance, hQueue ); /* task */
206 break;
208 case USIG_DLL_LOAD:
209 break;
211 case USIG_DLL_UNLOAD:
212 USER_ModuleUnload( hTaskOrModule ); /* module */
213 break;
215 default:
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 )
246 int i;
247 BOOL result;
248 WND **list, **ppWnd;
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 ))
261 break;
263 result = !(*ppWnd);
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();
275 return FALSE;
279 /***********************************************************************
280 * ChangeDisplaySettingA (USER32.589)
282 LONG WINAPI ChangeDisplaySettingsA( LPDEVMODEA devmode, DWORD flags )
284 FIXME(system, ": stub\n");
285 if (devmode==NULL)
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.
310 * RETURNS
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 */
319 #define NRMODES 5
320 #define NRDEPTHS 4
321 struct {
322 int w,h;
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);
327 if (n==0) {
328 devmode->dmBitsPerPel = DESKTOP_GetScreenDepth();
329 devmode->dmPelsHeight = DESKTOP_GetScreenHeight();
330 devmode->dmPelsWidth = DESKTOP_GetScreenWidth();
331 return TRUE;
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;
337 return TRUE;
339 return FALSE;
342 /***********************************************************************
343 * EnumDisplaySettingsW (USER32.593)
345 BOOL WINAPI EnumDisplaySettingsW(LPCWSTR name,DWORD n,LPDEVMODEW devmode) {
346 LPSTR nameA = HEAP_strdupWtoA(GetProcessHeap(),0,name);
347 DEVMODEA devmodeA;
348 BOOL ret = EnumDisplaySettingsA(nameA,n,&devmodeA);
350 if (ret) {
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);
357 return ret;
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);
368 return NULL;
371 /***********************************************************************
372 * UserSeeUserDo (USER.216)
374 DWORD WINAPI UserSeeUserDo16(WORD wReqType, WORD wParam1, WORD wParam2, WORD wParam3)
376 switch (wReqType)
378 case USUD_LOCALALLOC:
379 return LOCAL_Alloc(USER_HeapSel, wParam1, wParam3);
380 case USUD_LOCALFREE:
381 return LOCAL_Free(USER_HeapSel, wParam1);
382 case USUD_LOCALCOMPACT:
383 return LOCAL_Compact(USER_HeapSel, wParam3, 0);
384 case USUD_LOCALHEAP:
385 return USER_HeapSel;
386 case USUD_FIRSTCLASS:
387 FIXME(local, "return a pointer to the first window class.\n");
388 return (DWORD)-1;
389 default:
390 WARN(local, "wReqType %04x (unknown)", wReqType);
391 return (DWORD)-1;
395 /***********************************************************************
396 * RegisterLogonProcess (USER32.434)
398 DWORD WINAPI RegisterLogonProcess(HANDLE hprocess,BOOL x) {
399 FIXME(win32,"(%d,%d),stub!\n",hprocess,x);
400 return 1;
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
413 return 0xdeadcafe;
416 /***********************************************************************
417 * SetProcessWindowStation (USER32.496)
419 BOOL WINAPI SetProcessWindowStation(HWINSTA hWinSta) {
420 FIXME(win32,"(%d),stub!\n",hWinSta);
421 return TRUE;
424 /***********************************************************************
425 * SetUserObjectSecurity (USER32.514)
427 BOOL WINAPI SetUserObjectSecurity(
428 HANDLE hObj,
429 /*LPSECURITY_INFORMATION*/LPVOID pSIRequested,
430 PSECURITY_DESCRIPTOR pSID
432 FIXME(win32,"(0x%08x,%p,%p),stub!\n",hObj,pSIRequested,pSID);
433 return TRUE;
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
447 return 0xcafedead;
450 /***********************************************************************
451 * SetWindowStationUser (USER32.521)
453 DWORD WINAPI SetWindowStationUser(DWORD x1,DWORD x2) {
454 FIXME(win32,"(0x%08lx,0x%08lx),stub!\n",x1,x2);
455 return 1;
458 /***********************************************************************
459 * SetLogonNotifyWindow (USER32.486)
461 DWORD WINAPI SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd) {
462 FIXME(win32,"(0x%x,%04x),stub!\n",hwinsta,hwnd);
463 return 1;
466 /***********************************************************************
467 * LoadLocalFonts (USER32.486)
469 VOID WINAPI LoadLocalFonts(VOID) {
470 /* are loaded. */
471 return;
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 );
478 return TRUE;
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 );
485 return TRUE;
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);
493 return TRUE;