Release 961208
[wine.git] / misc / exec.c
blobc69416d6fa05087eb02cfe80734c8e0235f59c38
1 /*
2 * Windows Exec & Help
4 */
6 #include <stdlib.h>
7 #include <stdio.h>
8 #include <string.h>
9 #include <unistd.h>
10 #include "windows.h"
11 #include "heap.h"
12 #include "neexe.h"
13 #include "shell.h"
14 #include "stddebug.h"
15 #include "debug.h"
16 #include "win.h"
18 #define HELP_CONTEXT 0x0001
19 #define HELP_QUIT 0x0002
20 #define HELP_INDEX 0x0003
21 #define HELP_CONTENTS 0x0003
22 #define HELP_HELPONHELP 0x0004
23 #define HELP_SETINDEX 0x0005
24 #define HELP_SETCONTENTS 0x0005
25 #define HELP_CONTEXTPOPUP 0x0008
26 #define HELP_FORCEFILE 0x0009
27 #define HELP_KEY 0x0101
28 #define HELP_COMMAND 0x0102
29 #define HELP_PARTIALKEY 0x0105
30 #define HELP_MULTIKEY 0x0201
31 #define HELP_SETWINPOS 0x0203
34 /***********************************************************************
35 * EXEC_ExitWindows
37 * Clean-up everything and exit the Wine process.
38 * This is the back-end of ExitWindows(), called when all windows
39 * have agreed to be terminated.
41 void EXEC_ExitWindows( int retCode )
43 /* Do the clean-up stuff */
45 WriteOutProfiles();
46 SHELL_SaveRegistry();
48 exit( retCode );
52 /***********************************************************************
53 * ExitWindows (USER.7)
55 BOOL ExitWindows( DWORD dwReturnCode, WORD wReserved )
57 int i;
58 BOOL16 result;
59 WND **list, **ppWnd;
61 api_assert("ExitWindows", wReserved == 0);
62 api_assert("ExitWindows", HIWORD(dwReturnCode) == 0);
64 /* We have to build a list of all windows first, as in EnumWindows */
66 if (!(list = WIN_BuildWinArray( WIN_GetDesktop() ))) return FALSE;
68 /* Send a WM_QUERYENDSESSION message to every window */
70 for (ppWnd = list, i = 0; *ppWnd; ppWnd++, i++)
72 /* Make sure that the window still exists */
73 if (!IsWindow( (*ppWnd)->hwndSelf )) continue;
74 if (!SendMessage16( (*ppWnd)->hwndSelf, WM_QUERYENDSESSION, 0, 0 ))
75 break;
77 result = !(*ppWnd);
79 /* Now notify all windows that got a WM_QUERYENDSESSION of the result */
81 for (ppWnd = list; i > 0; i--, ppWnd++)
83 if (!IsWindow( (*ppWnd)->hwndSelf )) continue;
84 SendMessage16( (*ppWnd)->hwndSelf, WM_ENDSESSION, result, 0 );
86 HeapFree( SystemHeap, 0, list );
88 if (result) EXEC_ExitWindows( LOWORD(dwReturnCode) );
89 return FALSE;
93 /**********************************************************************
94 * WinHelp [USER.171]
96 BOOL WinHelp(HWND hWnd, LPSTR lpHelpFile, WORD wCommand, DWORD dwData)
98 static WORD WM_WINHELP=0;
99 HWND hDest;
100 LPWINHELP lpwh;
101 HGLOBAL16 hwh;
102 void *data=0;
103 int size,dsize,nlen;
104 if (wCommand != HELP_QUIT) /* FIXME */
105 if(WinExec("winhelp.exe -x",SW_SHOWNORMAL)<=32)
106 return FALSE;
107 /* FIXME: Should be directed yield, to let winhelp open the window */
108 Yield();
109 if(!WM_WINHELP) {
110 WM_WINHELP=RegisterWindowMessage32A("WM_WINHELP");
111 if(!WM_WINHELP)
112 return FALSE;
114 hDest = FindWindow32A( "MS_WINHELP", NULL );
115 if(!hDest)
116 if(wCommand == HELP_QUIT)
117 return TRUE;
118 else
119 return FALSE;
120 switch(wCommand)
122 case HELP_CONTEXT:
123 case HELP_CONTENTS:
124 case HELP_SETCONTENTS:
125 case HELP_CONTEXTPOPUP:
126 case HELP_FORCEFILE:
127 case HELP_HELPONHELP:
128 case HELP_QUIT:
129 dsize=0;
130 break;
131 case HELP_KEY:
132 case HELP_PARTIALKEY:
133 case HELP_COMMAND:
134 data = PTR_SEG_TO_LIN(dwData);
135 dsize = strlen(data)+1;
136 break;
137 case HELP_MULTIKEY:
138 data = PTR_SEG_TO_LIN(dwData);
139 dsize = ((LPMULTIKEYHELP)data) -> mkSize;
140 break;
141 case HELP_SETWINPOS:
142 data = PTR_SEG_TO_LIN(dwData);
143 dsize = ((LPHELPWININFO)data) -> wStructSize;
144 break;
145 default:
146 fprintf(stderr,"Unknown help command %d\n",wCommand);
147 return FALSE;
149 if(lpHelpFile)
150 nlen = strlen(lpHelpFile)+1;
151 else
152 nlen = 0;
153 size = sizeof(WINHELP) + nlen + dsize;
154 hwh = GlobalAlloc16(0,size);
155 lpwh = GlobalLock16(hwh);
156 lpwh->size = size;
157 lpwh->command = wCommand;
158 if(nlen) {
159 lpwh->ofsFilename = sizeof(WINHELP);
160 strcpy(((char*)lpwh) + sizeof(WINHELP),lpHelpFile);
162 if(dsize) {
163 memcpy(((char*)lpwh)+sizeof(WINHELP)+nlen,data,dsize);
164 lpwh->ofsData = sizeof(WINHELP)+nlen;
165 } else
166 lpwh->ofsData = 0;
167 GlobalUnlock16(hwh);
168 return SendMessage16(hDest,WM_WINHELP,hWnd,hwh);