Release 960606
[wine/multimedia.git] / misc / user.c
blobb20b262af281cc86ff30655e0efd73cdb8620057
1 /*
2 * Misc. USER functions
4 * Copyright 1993 Robert J. Amstadt
5 * 1996 Alex Korobka
6 */
8 #include <stdio.h>
9 #include <stdlib.h>
10 #include "windows.h"
11 #include "gdi.h"
12 #include "user.h"
13 #include "task.h"
14 #include "queue.h"
15 #include "win.h"
16 #include "hook.h"
17 #include "debug.h"
18 #include "toolhelp.h"
20 WORD USER_HeapSel = 0;
22 #ifndef WINELIB
24 extern HTASK TASK_GetNextTask(HTASK);
25 extern void QUEUE_SetDoomedQueue(HQUEUE);
27 /***********************************************************************
28 * GetFreeSystemResources (USER.284)
30 WORD GetFreeSystemResources( WORD resType )
32 int userPercent, gdiPercent;
34 switch(resType)
36 case GFSR_USERRESOURCES:
37 userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
38 LOCAL_HeapSize( USER_HeapSel );
39 gdiPercent = 100;
40 break;
42 case GFSR_GDIRESOURCES:
43 gdiPercent = (int)LOCAL_CountFree( GDI_HeapSel ) * 100 /
44 LOCAL_HeapSize( GDI_HeapSel );
45 userPercent = 100;
46 break;
48 case GFSR_SYSTEMRESOURCES:
49 userPercent = (int)LOCAL_CountFree( USER_HeapSel ) * 100 /
50 LOCAL_HeapSize( USER_HeapSel );
51 gdiPercent = (int)LOCAL_CountFree( GDI_HeapSel ) * 100 /
52 LOCAL_HeapSize( GDI_HeapSel );
53 break;
55 default:
56 return 0;
58 return (WORD)MIN( userPercent, gdiPercent );
62 /***********************************************************************
63 * SystemHeapInfo (TOOLHELP.71)
65 BOOL SystemHeapInfo( SYSHEAPINFO *pHeapInfo )
67 pHeapInfo->wUserFreePercent = GetFreeSystemResources( GFSR_USERRESOURCES );
68 pHeapInfo->wGDIFreePercent = GetFreeSystemResources( GFSR_GDIRESOURCES );
69 pHeapInfo->hUserSegment = USER_HeapSel;
70 pHeapInfo->hGDISegment = GDI_HeapSel;
71 return TRUE;
74 #endif /* WINELIB */
76 /***********************************************************************
77 * TimerCount (TOOLHELP.80)
79 BOOL TimerCount( TIMERINFO *pTimerInfo )
81 /* FIXME
82 * In standard mode, dwmsSinceStart = dwmsThisVM
84 * I tested this, under Windows in enhanced mode, and
85 * if you never switch VM (ie start/stop DOS) these
86 * values should be the same as well.
88 * Also, Wine should adjust for the hardware timer
89 * to reduce the amount of error to ~1ms.
90 * I can't be bothered, can you?
92 pTimerInfo->dwmsSinceStart = pTimerInfo->dwmsThisVM = GetTickCount();
93 return TRUE;
97 /**********************************************************************
98 * USER_InitApp
100 int USER_InitApp(HINSTANCE hInstance)
102 int queueSize;
104 /* Create task message queue */
105 queueSize = GetProfileInt( "windows", "DefaultQueueSize", 8 );
106 if (!SetMessageQueue( queueSize )) return 0;
108 return 1;
111 /**********************************************************************
112 * USER_AppExit
114 void USER_AppExit(HTASK hTask, HINSTANCE hInstance, HQUEUE hQueue)
116 /* FIXME: flush send messages (which are not implemented yet),
117 * empty clipboard if needed, maybe destroy menus (Windows
118 * only complains about them but does nothing);
121 WND* desktop = WIN_GetDesktop();
123 /* Patch desktop window queue */
124 if( desktop->hmemTaskQ == hQueue )
125 desktop->hmemTaskQ = GetTaskQueue(TASK_GetNextTask(hTask));
127 /* Nuke timers */
129 TIMER_RemoveQueueTimers( hQueue );
131 HOOK_FreeQueueHooks( hQueue );
133 QUEUE_SetDoomedQueue( hQueue );
135 /* Nuke orphaned windows */
137 WIN_DestroyQueueWindows( desktop->child, hQueue );
139 QUEUE_SetDoomedQueue( 0 );
141 /* Free the message queue */
143 QUEUE_DeleteMsgQueue( hQueue );