2 * Shell Library Functions
4 * Copyright 1998 Marcus Meissner
5 * Copyright 2000 Juergen Schmied
6 * Copyright 2002 Eric Pouech
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "wine/port.h"
43 #include "wine/winbase16.h"
44 #include "wine/winuser16.h"
45 #include "shell32_main.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(shell);
50 WINE_DECLARE_DEBUG_CHANNEL(exec);
53 typedef struct { /* structure for dropped files */
56 BOOL16 fInNonClientArea;
57 /* memory block with filenames follows */
58 } DROPFILESTRUCT16, *LPDROPFILESTRUCT16;
60 static const char* lpstrMsgWndCreated = "OTHERWINDOWCREATED";
61 static const char* lpstrMsgWndDestroyed = "OTHERWINDOWDESTROYED";
62 static const char* lpstrMsgShellActivate = "ACTIVATESHELLWINDOW";
64 static HWND SHELL_hWnd = 0;
65 static HHOOK SHELL_hHook = 0;
66 static UINT uMsgWndCreated = 0;
67 static UINT uMsgWndDestroyed = 0;
68 static UINT uMsgShellActivate = 0;
69 HINSTANCE16 SHELL_hInstance = 0;
70 HINSTANCE SHELL_hInstance32;
71 static int SHELL_Attach = 0;
73 /***********************************************************************
74 * DllEntryPoint [SHELL.101]
76 * Initialization code for shell.dll. Automatically loads the
77 * 32-bit shell32.dll to allow thunking up to 32-bit code.
81 BOOL WINAPI SHELL_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst,
82 WORD ds, WORD HeapSize, DWORD res1, WORD res2)
84 TRACE("(%08lx, %04x, %04x, %04x, %08lx, %04x)\n",
85 Reason, hInst, ds, HeapSize, res1, res2);
89 case DLL_PROCESS_ATTACH:
90 if (SHELL_Attach++) break;
91 SHELL_hInstance = hInst;
92 if(!SHELL_hInstance32)
94 if(!(SHELL_hInstance32 = LoadLibraryA("shell32.dll")))
96 ERR("Could not load sibling shell32.dll\n");
102 case DLL_PROCESS_DETACH:
106 if(SHELL_hInstance32)
107 FreeLibrary(SHELL_hInstance32);
114 /*************************************************************************
115 * DragAcceptFiles [SHELL.9]
117 void WINAPI DragAcceptFiles16(HWND16 hWnd, BOOL16 b)
119 DragAcceptFiles(HWND_32(hWnd), b);
122 /*************************************************************************
123 * DragQueryFile [SHELL.11]
125 UINT16 WINAPI DragQueryFile16(
133 LPDROPFILESTRUCT16 lpDropFileStruct = (LPDROPFILESTRUCT16) GlobalLock16(hDrop);
135 TRACE("(%04x, %x, %p, %u)\n", hDrop,wFile,lpszFile,wLength);
137 if(!lpDropFileStruct) goto end;
139 lpDrop = (LPSTR) lpDropFileStruct + lpDropFileStruct->wSize;
140 wFile = (wFile==0xffff) ? 0xffffffff : wFile;
144 while (*lpDrop++); /* skip filename */
147 i = (wFile == 0xFFFFFFFF) ? i : 0;
154 if (!lpszFile ) goto end; /* needed buffer size */
155 i = (wLength > i) ? i : wLength;
156 lstrcpynA (lpszFile, lpDrop, i);
158 GlobalUnlock16(hDrop);
162 /*************************************************************************
163 * DragFinish [SHELL.12]
165 void WINAPI DragFinish16(HDROP16 h)
168 GlobalFree16((HGLOBAL16)h);
172 /*************************************************************************
173 * DragQueryPoint [SHELL.13]
175 BOOL16 WINAPI DragQueryPoint16(HDROP16 hDrop, POINT16 *p)
177 LPDROPFILESTRUCT16 lpDropFileStruct;
180 lpDropFileStruct = (LPDROPFILESTRUCT16) GlobalLock16(hDrop);
182 memcpy(p,&lpDropFileStruct->ptMousePos,sizeof(POINT16));
183 bRet = lpDropFileStruct->fInNonClientArea;
185 GlobalUnlock16(hDrop);
189 /*************************************************************************
190 * FindExecutable (SHELL.21)
192 HINSTANCE16 WINAPI FindExecutable16( LPCSTR lpFile, LPCSTR lpDirectory,
194 { return (HINSTANCE16)FindExecutableA( lpFile, lpDirectory, lpResult );
198 /*************************************************************************
199 * AboutDlgProc (SHELL.33)
201 BOOL16 WINAPI AboutDlgProc16( HWND16 hWnd, UINT16 msg, WPARAM16 wParam,
203 { return AboutDlgProc( HWND_32(hWnd), msg, wParam, lParam );
207 /*************************************************************************
208 * ShellAbout (SHELL.22)
210 BOOL16 WINAPI ShellAbout16( HWND16 hWnd, LPCSTR szApp, LPCSTR szOtherStuff,
212 { return ShellAboutA( HWND_32(hWnd), szApp, szOtherStuff, HICON_32(hIcon) );
215 /*************************************************************************
216 * InternalExtractIcon [SHELL.39]
218 * This abortion is called directly by Progman
220 HGLOBAL16 WINAPI InternalExtractIcon16(HINSTANCE16 hInstance,
221 LPCSTR lpszExeFileName, UINT16 nIconIndex, WORD n )
224 HICON16 *RetPtr = NULL;
228 TRACE("(%04x,file %s,start %d,extract %d\n",
229 hInstance, lpszExeFileName, nIconIndex, n);
234 hFile = OpenFile( lpszExeFileName, &ofs, OF_READ|OF_EXIST );
236 hRet = GlobalAlloc16( GMEM_FIXED | GMEM_ZEROINIT, sizeof(HICON16)*n);
237 RetPtr = (HICON16*)GlobalLock16(hRet);
239 if (hFile == HFILE_ERROR)
240 { /* not found - load from builtin module if available */
241 HINSTANCE hInst = (HINSTANCE)LoadLibrary16(lpszExeFileName);
243 if (hInst < 32) /* hmm, no Win16 module - try Win32 :-) */
244 hInst = LoadLibraryA(lpszExeFileName);
248 for (i=nIconIndex; i < nIconIndex + n; i++)
249 RetPtr[i-nIconIndex] =
250 HICON_16(LoadIconA(hInst, (LPCSTR)(DWORD)i));
254 GlobalFree16( hRet );
258 if (nIconIndex == (UINT16)-1) /* get number of icons */
260 RetPtr[0] = PrivateExtractIconsA( ofs.szPathName, -1, 0, 0, NULL, 0, 0, 0 );
266 icons = HeapAlloc( GetProcessHeap(), 0, n * sizeof(*icons) );
267 res = PrivateExtractIconsA( ofs.szPathName, nIconIndex,
268 GetSystemMetrics(SM_CXICON),
269 GetSystemMetrics(SM_CYICON),
274 for (i = 0; i < n; i++) RetPtr[i] = HICON_16(icons[i]);
278 GlobalFree16( hRet );
281 HeapFree( GetProcessHeap(), 0, icons );
286 /*************************************************************************
287 * ExtractIcon (SHELL.34)
289 HICON16 WINAPI ExtractIcon16( HINSTANCE16 hInstance, LPCSTR lpszExeFileName,
292 return HICON_16(ExtractIconA(HINSTANCE_32(hInstance), lpszExeFileName, nIconIndex));
295 /*************************************************************************
296 * ExtractIconEx (SHELL.40)
298 HICON16 WINAPI ExtractIconEx16(
299 LPCSTR lpszFile, INT16 nIconIndex, HICON16 *phiconLarge,
300 HICON16 *phiconSmall, UINT16 nIcons
302 HICON *ilarge,*ismall;
307 ilarge = (HICON*)HeapAlloc(GetProcessHeap(),0,nIcons*sizeof(HICON));
311 ismall = (HICON*)HeapAlloc(GetProcessHeap(),0,nIcons*sizeof(HICON));
314 ret = HICON_16(ExtractIconExA(lpszFile,nIconIndex,ilarge,ismall,nIcons));
316 for (i=0;i<nIcons;i++)
317 phiconLarge[i]=HICON_16(ilarge[i]);
318 HeapFree(GetProcessHeap(),0,ilarge);
321 for (i=0;i<nIcons;i++)
322 phiconSmall[i]=HICON_16(ismall[i]);
323 HeapFree(GetProcessHeap(),0,ismall);
328 /*************************************************************************
329 * ExtractAssociatedIcon [SHELL.36]
331 * Return icon for given file (either from file itself or from associated
332 * executable) and patch parameters if needed.
334 HICON16 WINAPI ExtractAssociatedIcon16(HINSTANCE16 hInst, LPSTR lpIconPath, LPWORD lpiIcon)
336 return HICON_16(ExtractAssociatedIconA(HINSTANCE_32(hInst), lpIconPath,
340 /*************************************************************************
341 * FindEnvironmentString [SHELL.38]
343 * Returns a pointer into the DOS environment... Ugh.
345 LPSTR SHELL_FindString(LPSTR lpEnv, LPCSTR entry)
351 for( ; *lpEnv ; lpEnv+=strlen(lpEnv)+1 )
352 { if( strncasecmp(lpEnv, entry, l) )
355 return (lpEnv + l); /* empty entry */
356 else if ( *(lpEnv+l)== '=' )
357 return (lpEnv + l + 1);
362 /**********************************************************************/
364 SEGPTR WINAPI FindEnvironmentString16(LPSTR str)
366 LPSTR lpEnv,lpString;
369 spEnv = GetDOSEnvironment16();
371 lpEnv = MapSL(spEnv);
372 lpString = (spEnv)?SHELL_FindString(lpEnv, str):NULL;
374 if( lpString ) /* offset should be small enough */
375 return spEnv + (lpString - lpEnv);
379 /*************************************************************************
380 * DoEnvironmentSubst [SHELL.37]
382 * Replace %KEYWORD% in the str with the value of variable KEYWORD
383 * from "DOS" environment.
385 DWORD WINAPI DoEnvironmentSubst16(LPSTR str,WORD length)
387 LPSTR lpEnv = MapSL(GetDOSEnvironment16());
388 LPSTR lpBuffer = (LPSTR)HeapAlloc( GetProcessHeap(), 0, length);
390 LPSTR lpbstr = lpBuffer;
394 TRACE("accept %s\n", str);
396 while( *lpstr && lpbstr - lpBuffer < length )
402 do { lpend++; } while( *lpend && *lpend != '%' );
403 if( *lpend == '%' && lpend - lpstr > 1 ) /* found key */
407 lpKey = SHELL_FindString(lpEnv, lpstr+1);
408 if( lpKey ) /* found key value */
410 int l = strlen(lpKey);
412 if( l > length - (lpbstr - lpBuffer) - 1 )
414 WARN("-- Env subst aborted - string too short\n");
418 strcpy(lpbstr, lpKey);
425 else break; /* back off and whine */
430 *lpbstr++ = *lpstr++;
434 if( lpstr - str == strlen(str) )
436 strncpy(str, lpBuffer, length);
442 TRACE("-- return %s\n", str);
445 HeapFree( GetProcessHeap(), 0, lpBuffer);
447 /* Return str length in the LOWORD
448 * and 1 in HIWORD if subst was successful.
450 return (DWORD)MAKELONG(strlen(str), length);
453 /*************************************************************************
456 * 32-bit version of the system-wide WH_SHELL hook.
458 static LRESULT WINAPI SHELL_HookProc(INT code, WPARAM wParam, LPARAM lParam)
460 TRACE("%i, %x, %08lx\n", code, wParam, lParam );
466 case HSHELL_WINDOWCREATED:
467 PostMessageA( SHELL_hWnd, uMsgWndCreated, wParam, 0 );
469 case HSHELL_WINDOWDESTROYED:
470 PostMessageA( SHELL_hWnd, uMsgWndDestroyed, wParam, 0 );
472 case HSHELL_ACTIVATESHELLWINDOW:
473 PostMessageA( SHELL_hWnd, uMsgShellActivate, wParam, 0 );
477 return CallNextHookEx( SHELL_hHook, code, wParam, lParam );
480 /*************************************************************************
481 * ShellHookProc [SHELL.103]
482 * System-wide WH_SHELL hook.
484 LRESULT WINAPI ShellHookProc16(INT16 code, WPARAM16 wParam, LPARAM lParam)
486 return SHELL_HookProc( code, wParam, lParam );
489 /*************************************************************************
490 * RegisterShellHook [SHELL.102]
492 BOOL WINAPI RegisterShellHook16(HWND16 hWnd, UINT16 uAction)
494 TRACE("%04x [%u]\n", hWnd, uAction );
498 case 2: /* register hWnd as a shell window */
501 SHELL_hHook = SetWindowsHookExA( WH_SHELL, SHELL_HookProc,
502 GetModuleHandleA("shell32.dll"), 0 );
505 uMsgWndCreated = RegisterWindowMessageA( lpstrMsgWndCreated );
506 uMsgWndDestroyed = RegisterWindowMessageA( lpstrMsgWndDestroyed );
507 uMsgShellActivate = RegisterWindowMessageA( lpstrMsgShellActivate );
510 WARN("-- unable to install ShellHookProc()!\n");
514 return ((SHELL_hWnd = HWND_32(hWnd)) != 0);
518 WARN("-- unknown code %i\n", uAction );
519 SHELL_hWnd = 0; /* just in case */
525 /***********************************************************************
526 * DriveType (SHELL.262)
528 UINT16 WINAPI DriveType16( UINT16 drive )
531 char path[] = "A:\\";
533 ret = GetDriveTypeA(path);
534 switch(ret) /* some values are not supported in Win16 */
539 case DRIVE_NO_ROOT_DIR:
547 /* 0 and 1 are valid rootkeys in win16 shell.dll and are used by
548 * some programs. Do not remove those cases. -MM
550 static inline void fix_win16_hkey( HKEY *hkey )
552 if (*hkey == 0 || *hkey == (HKEY)1) *hkey = HKEY_CLASSES_ROOT;
555 /******************************************************************************
556 * RegOpenKey [SHELL.1]
558 DWORD WINAPI RegOpenKey16( HKEY hkey, LPCSTR name, PHKEY retkey )
560 fix_win16_hkey( &hkey );
561 return RegOpenKeyA( hkey, name, retkey );
564 /******************************************************************************
565 * RegCreateKey [SHELL.2]
567 DWORD WINAPI RegCreateKey16( HKEY hkey, LPCSTR name, PHKEY retkey )
569 fix_win16_hkey( &hkey );
570 return RegCreateKeyA( hkey, name, retkey );
573 /******************************************************************************
574 * RegCloseKey [SHELL.3]
576 DWORD WINAPI RegCloseKey16( HKEY hkey )
578 fix_win16_hkey( &hkey );
579 return RegCloseKey( hkey );
582 /******************************************************************************
583 * RegDeleteKey [SHELL.4]
585 DWORD WINAPI RegDeleteKey16( HKEY hkey, LPCSTR name )
587 fix_win16_hkey( &hkey );
588 return RegDeleteKeyA( hkey, name );
591 /******************************************************************************
592 * RegSetValue [SHELL.5]
594 DWORD WINAPI RegSetValue16( HKEY hkey, LPCSTR name, DWORD type, LPCSTR data, DWORD count )
596 fix_win16_hkey( &hkey );
597 return RegSetValueA( hkey, name, type, data, count );
600 /******************************************************************************
601 * RegQueryValue [SHELL.6]
604 * Is this HACK still applicable?
607 * The 16bit RegQueryValue doesn't handle selectorblocks anyway, so we just
608 * mask out the high 16 bit. This (not so much incidently) hopefully fixes
611 DWORD WINAPI RegQueryValue16( HKEY hkey, LPCSTR name, LPSTR data, LPDWORD count
614 fix_win16_hkey( &hkey );
615 if (count) *count &= 0xffff;
616 return RegQueryValueA( hkey, name, data, count );
619 /******************************************************************************
620 * RegEnumKey [SHELL.7]
622 DWORD WINAPI RegEnumKey16( HKEY hkey, DWORD index, LPSTR name, DWORD name_len )
624 fix_win16_hkey( &hkey );
625 return RegEnumKeyA( hkey, index, name, name_len );
628 /*************************************************************************
629 * SHELL_Execute16 [Internal]
631 static HINSTANCE SHELL_Execute16(char *lpCmd, LPSHELLEXECUTEINFOA sei, BOOL shWait)
633 sei->hInstApp = WinExec16(lpCmd, sei->nShow);
634 return sei->hInstApp;
637 /*************************************************************************
638 * ShellExecute [SHELL.20]
640 HINSTANCE16 WINAPI ShellExecute16( HWND16 hWnd, LPCSTR lpOperation,
641 LPCSTR lpFile, LPCSTR lpParameters,
642 LPCSTR lpDirectory, INT16 iShowCmd )
644 SHELLEXECUTEINFOA sei;
647 sei.cbSize = sizeof(sei);
649 sei.hwnd = HWND_32(hWnd);
650 sei.lpVerb = lpOperation;
652 sei.lpParameters = lpParameters;
653 sei.lpDirectory = lpDirectory;
654 sei.nShow = iShowCmd;
659 sei.hProcess = hProcess;
661 ShellExecuteExA32 (&sei, SHELL_Execute16);
662 return (HINSTANCE16)sei.hInstApp;