2 * Shell Library Functions
11 #include "wine/winuser16.h"
12 #include "wine/winbase16.h"
13 #include "wine/shell16.h"
21 #include "cursoricon.h"
24 #include "debugtools.h"
27 #include "imagelist.h"
29 DECLARE_DEBUG_CHANNEL(exec)
30 DECLARE_DEBUG_CHANNEL(shell)
32 /* .ICO file ICONDIR definitions */
38 BYTE bWidth; /* Width, in pixels, of the image */
39 BYTE bHeight; /* Height, in pixels, of the image */
40 BYTE bColorCount; /* Number of colors in image (0 if >=8bpp) */
41 BYTE bReserved; /* Reserved ( must be 0) */
42 WORD wPlanes; /* Color Planes */
43 WORD wBitCount; /* Bits per pixel */
44 DWORD dwBytesInRes; /* How many bytes in this resource? */
45 DWORD dwImageOffset; /* Where in the file is this image? */
46 } icoICONDIRENTRY, *LPicoICONDIRENTRY;
50 WORD idReserved; /* Reserved (must be 0) */
51 WORD idType; /* Resource Type (1 for icons) */
52 WORD idCount; /* How many images? */
53 icoICONDIRENTRY idEntries[1]; /* An entry for each image (idCount of 'em) */
54 } icoICONDIR, *LPicoICONDIR;
58 static const char* lpstrMsgWndCreated = "OTHERWINDOWCREATED";
59 static const char* lpstrMsgWndDestroyed = "OTHERWINDOWDESTROYED";
60 static const char* lpstrMsgShellActivate = "ACTIVATESHELLWINDOW";
62 static HWND16 SHELL_hWnd = 0;
63 static HHOOK SHELL_hHook = 0;
64 static UINT16 uMsgWndCreated = 0;
65 static UINT16 uMsgWndDestroyed = 0;
66 static UINT16 uMsgShellActivate = 0;
67 HINSTANCE16 SHELL_hInstance = 0;
68 HINSTANCE SHELL_hInstance32;
69 static int SHELL_Attach = 0;
71 /***********************************************************************
72 * SHELL_DllEntryPoint [SHELL.entry]
74 * Initialization code for shell.dll. Automatically loads the
75 * 32-bit shell32.dll to allow thunking up to 32-bit code.
79 BOOL WINAPI SHELL_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst,
80 WORD ds, WORD HeapSize, DWORD res1, WORD res2)
82 TRACE_(shell)("(%08lx, %04x, %04x, %04x, %08lx, %04x)\n",
83 Reason, hInst, ds, HeapSize, res1, res2);
87 case DLL_PROCESS_ATTACH:
91 ERR_(shell)("shell.dll instantiated twice!\n");
93 * We should return FALSE here, but that will break
94 * most apps that use CreateProcess because we do
95 * not yet support seperate address-spaces.
100 SHELL_hInstance = hInst;
101 if(!SHELL_hInstance32)
103 if(!(SHELL_hInstance32 = LoadLibraryA("shell32.dll")))
105 ERR_(shell)("Could not load sibling shell32.dll\n");
111 case DLL_PROCESS_DETACH:
115 if(SHELL_hInstance32)
116 FreeLibrary(SHELL_hInstance32);
123 /*************************************************************************
124 * DragAcceptFiles32 [SHELL32.54]
126 void WINAPI DragAcceptFiles(HWND hWnd, BOOL b)
131 if( !IsWindow(hWnd) )
133 exstyle = GetWindowLongA(hWnd,GWL_EXSTYLE);
134 if (b)exstyle |= WS_EX_ACCEPTFILES;
135 else exstyle &= ~WS_EX_ACCEPTFILES;
136 SetWindowLongA(hWnd,GWL_EXSTYLE,exstyle);
139 /*************************************************************************
140 * DragAcceptFiles16 [SHELL.9]
142 void WINAPI DragAcceptFiles16(HWND16 hWnd, BOOL16 b)
144 DragAcceptFiles(hWnd, b);
147 /*************************************************************************
148 * SHELL_DragQueryFile [internal]
151 static UINT SHELL_DragQueryFile(LPSTR lpDrop, LPWSTR lpwDrop, UINT lFile,
152 LPSTR lpszFile, LPWSTR lpszwFile, UINT lLength)
158 while (i++ < lFile) {
159 while (*lpDrop++); /* skip filename */
161 return (lFile == 0xFFFFFFFF) ? i : 0;
165 while (i++ < lFile) {
166 while (*lpwDrop++); /* skip filename */
168 return (lFile == 0xFFFFFFFF) ? i : 0;
172 if (lpDrop) i = lstrlenA(lpDrop);
173 if (lpwDrop) i = lstrlenW(lpwDrop);
175 if (!lpszFile && !lpszwFile) {
176 return i; /* needed buffer size */
178 i = (lLength > i) ? i : lLength;
180 if (lpDrop) lstrcpynA (lpszFile, lpDrop, i);
181 else lstrcpynWtoA(lpszFile, lpwDrop, i);
183 if (lpDrop) lstrcpynAtoW(lpszwFile, lpDrop, i);
184 else lstrcpynW (lpszwFile, lpwDrop, i);
189 /*************************************************************************
190 * DragQueryFile32A [SHELL32.81] [shell32.82]
192 UINT WINAPI DragQueryFileA(HDROP hDrop, UINT lFile, LPSTR lpszFile,
194 { /* hDrop is a global memory block allocated with GMEM_SHARE
195 * with DROPFILESTRUCT as a header and filenames following
196 * it, zero length filename is in the end */
198 LPDROPFILESTRUCT lpDropFileStruct;
202 TRACE_(shell)("(%08x, %x, %p, %u)\n", hDrop,lFile,lpszFile,lLength);
204 lpDropFileStruct = (LPDROPFILESTRUCT) GlobalLock(hDrop);
205 if(!lpDropFileStruct)
208 lpCurrent = (LPSTR) lpDropFileStruct + lpDropFileStruct->lSize;
209 i = SHELL_DragQueryFile(lpCurrent, NULL, lFile, lpszFile, NULL, lLength);
214 /*************************************************************************
215 * DragQueryFile32W [shell32.133]
217 UINT WINAPI DragQueryFileW(HDROP hDrop, UINT lFile, LPWSTR lpszwFile,
220 LPDROPFILESTRUCT lpDropFileStruct;
224 TRACE_(shell)("(%08x, %x, %p, %u)\n", hDrop,lFile,lpszwFile,lLength);
226 lpDropFileStruct = (LPDROPFILESTRUCT) GlobalLock(hDrop);
227 if(!lpDropFileStruct)
230 lpwCurrent = (LPWSTR) lpDropFileStruct + lpDropFileStruct->lSize;
231 i = SHELL_DragQueryFile(NULL, lpwCurrent, lFile, NULL, lpszwFile,lLength);
235 /*************************************************************************
236 * DragQueryFile16 [SHELL.11]
238 UINT16 WINAPI DragQueryFile16(HDROP16 hDrop, WORD wFile, LPSTR lpszFile,
240 { /* hDrop is a global memory block allocated with GMEM_SHARE
241 * with DROPFILESTRUCT as a header and filenames following
242 * it, zero length filename is in the end */
244 LPDROPFILESTRUCT16 lpDropFileStruct;
248 TRACE_(shell)("(%04x, %x, %p, %u)\n", hDrop,wFile,lpszFile,wLength);
250 lpDropFileStruct = (LPDROPFILESTRUCT16) GlobalLock16(hDrop);
251 if(!lpDropFileStruct)
254 lpCurrent = (LPSTR) lpDropFileStruct + lpDropFileStruct->wSize;
256 i = (WORD)SHELL_DragQueryFile(lpCurrent, NULL, wFile==0xffff?0xffffffff:wFile,
257 lpszFile, NULL, wLength);
258 GlobalUnlock16(hDrop);
264 /*************************************************************************
265 * DragFinish32 [SHELL32.80]
267 void WINAPI DragFinish(HDROP h)
268 { TRACE_(shell)("\n");
269 GlobalFree((HGLOBAL)h);
272 /*************************************************************************
273 * DragFinish16 [SHELL.12]
275 void WINAPI DragFinish16(HDROP16 h)
276 { TRACE_(shell)("\n");
277 GlobalFree16((HGLOBAL16)h);
281 /*************************************************************************
282 * DragQueryPoint32 [SHELL32.135]
284 BOOL WINAPI DragQueryPoint(HDROP hDrop, POINT *p)
286 LPDROPFILESTRUCT lpDropFileStruct;
289 lpDropFileStruct = (LPDROPFILESTRUCT) GlobalLock(hDrop);
291 memcpy(p,&lpDropFileStruct->ptMousePos,sizeof(POINT));
292 bRet = lpDropFileStruct->fInNonClientArea;
298 /*************************************************************************
299 * DragQueryPoint16 [SHELL.13]
301 BOOL16 WINAPI DragQueryPoint16(HDROP16 hDrop, POINT16 *p)
303 LPDROPFILESTRUCT16 lpDropFileStruct;
306 lpDropFileStruct = (LPDROPFILESTRUCT16) GlobalLock16(hDrop);
308 memcpy(p,&lpDropFileStruct->ptMousePos,sizeof(POINT16));
309 bRet = lpDropFileStruct->fInNonClientArea;
311 GlobalUnlock16(hDrop);
315 /*************************************************************************
316 * SHELL_FindExecutable [Internal]
318 * Utility for code sharing between FindExecutable and ShellExecute
320 HINSTANCE SHELL_FindExecutable( LPCSTR lpFile,
323 { char *extension = NULL; /* pointer to file extension */
324 char tmpext[5]; /* local copy to mung as we please */
325 char filetype[256]; /* registry name for this filetype */
326 LONG filetypelen=256; /* length of above */
327 char command[256]; /* command from registry */
328 LONG commandlen=256; /* This is the most DOS can handle :) */
329 char buffer[256]; /* Used to GetProfileString */
330 HINSTANCE retval=31; /* default - 'No association was found' */
331 char *tok; /* token pointer */
332 int i; /* random counter */
333 char xlpFile[256]; /* result of SearchPath */
335 TRACE_(shell)("%s\n", (lpFile != NULL?lpFile:"-") );
337 lpResult[0]='\0'; /* Start off with an empty return string */
339 /* trap NULL parameters on entry */
340 if (( lpFile == NULL ) || ( lpResult == NULL ) || ( lpOperation == NULL ))
341 { WARN_(exec)("(lpFile=%s,lpResult=%s,lpOperation=%s): NULL parameter\n",
342 lpFile, lpOperation, lpResult);
343 return 2; /* File not found. Close enough, I guess. */
346 if (SearchPathA( NULL, lpFile,".exe",sizeof(xlpFile),xlpFile,NULL))
347 { TRACE_(shell)("SearchPath32A returned non-zero\n");
351 /* First thing we need is the file's extension */
352 extension = strrchr( xlpFile, '.' ); /* Assume last "." is the one; */
353 /* File->Run in progman uses */
355 TRACE_(shell)("xlpFile=%s,extension=%s\n", xlpFile, extension);
357 if ((extension == NULL) || (extension == &xlpFile[strlen(xlpFile)]))
358 { WARN_(shell)("Returning 31 - No association\n");
359 return 31; /* no association */
362 /* Make local copy & lowercase it for reg & 'programs=' lookup */
363 lstrcpynA( tmpext, extension, 5 );
364 CharLowerA( tmpext );
365 TRACE_(shell)("%s file\n", tmpext);
367 /* Three places to check: */
368 /* 1. win.ini, [windows], programs (NB no leading '.') */
369 /* 2. Registry, HKEY_CLASS_ROOT\<filetype>\shell\open\command */
370 /* 3. win.ini, [extensions], extension (NB no leading '.' */
371 /* All I know of the order is that registry is checked before */
372 /* extensions; however, it'd make sense to check the programs */
373 /* section first, so that's what happens here. */
375 /* See if it's a program - if GetProfileString fails, we skip this
376 * section. Actually, if GetProfileString fails, we've probably
377 * got a lot more to worry about than running a program... */
378 if ( GetProfileStringA("windows", "programs", "exe pif bat com",
379 buffer, sizeof(buffer)) > 0 )
380 { for (i=0;i<strlen(buffer); i++) buffer[i]=tolower(buffer[i]);
382 tok = strtok(buffer, " \t"); /* ? */
385 if (strcmp(tok, &tmpext[1])==0) /* have to skip the leading "." */
387 strcpy(lpResult, xlpFile);
388 /* Need to perhaps check that the file has a path
390 TRACE_(shell)("found %s\n", lpResult);
393 /* Greater than 32 to indicate success FIXME According to the
394 * docs, I should be returning a handle for the
395 * executable. Does this mean I'm supposed to open the
396 * executable file or something? More RTFM, I guess... */
398 tok=strtok(NULL, " \t");
403 if (RegQueryValue16( HKEY_CLASSES_ROOT, tmpext, filetype,
404 &filetypelen ) == ERROR_SUCCESS )
406 filetype[filetypelen]='\0';
407 TRACE_(shell)("File type: %s\n", filetype);
409 /* Looking for ...buffer\shell\lpOperation\command */
410 strcat( filetype, "\\shell\\" );
411 strcat( filetype, lpOperation );
412 strcat( filetype, "\\command" );
414 if (RegQueryValue16( HKEY_CLASSES_ROOT, filetype, command,
415 &commandlen ) == ERROR_SUCCESS )
417 /* Is there a replace() function anywhere? */
418 command[commandlen]='\0';
419 strcpy( lpResult, command );
420 tok=strstr( lpResult, "%1" );
423 tok[0]='\0'; /* truncate string at the percent */
424 strcat( lpResult, xlpFile ); /* what if no dir in xlpFile? */
425 tok=strstr( command, "%1" );
426 if ((tok!=NULL) && (strlen(tok)>2))
428 strcat( lpResult, &tok[2] );
431 retval=33; /* FIXME see above */
434 else /* Check win.ini */
436 /* Toss the leading dot */
438 if ( GetProfileStringA( "extensions", extension, "", command,
439 sizeof(command)) > 0)
441 if (strlen(command)!=0)
443 strcpy( lpResult, command );
444 tok=strstr( lpResult, "^" ); /* should be ^.extension? */
448 strcat( lpResult, xlpFile ); /* what if no dir in xlpFile? */
449 tok=strstr( command, "^" ); /* see above */
450 if ((tok != NULL) && (strlen(tok)>5))
452 strcat( lpResult, &tok[5]);
455 retval=33; /* FIXME - see above */
460 TRACE_(shell)("returning %s\n", lpResult);
464 /*************************************************************************
465 * ShellExecute16 [SHELL.20]
467 HINSTANCE16 WINAPI ShellExecute16( HWND16 hWnd, LPCSTR lpOperation,
468 LPCSTR lpFile, LPCSTR lpParameters,
469 LPCSTR lpDirectory, INT16 iShowCmd )
470 { HINSTANCE16 retval=31;
474 TRACE_(shell)("(%04x,'%s','%s','%s','%s',%x)\n",
475 hWnd, lpOperation ? lpOperation:"<null>", lpFile ? lpFile:"<null>",
476 lpParameters ? lpParameters : "<null>",
477 lpDirectory ? lpDirectory : "<null>", iShowCmd);
479 if (lpFile==NULL) return 0; /* should not happen */
480 if (lpOperation==NULL) /* default is open */
484 { GetCurrentDirectoryA( sizeof(old_dir), old_dir );
485 SetCurrentDirectoryA( lpDirectory );
488 retval = SHELL_FindExecutable( lpFile, lpOperation, cmd );
490 if (retval > 32) /* Found */
495 strcat(cmd,lpParameters);
498 TRACE_(shell)("starting %s\n",cmd);
499 SYSLEVEL_ReleaseWin16Lock();
500 retval = WinExec( cmd, iShowCmd );
501 SYSLEVEL_RestoreWin16Lock();
504 SetCurrentDirectoryA( old_dir );
508 /*************************************************************************
509 * FindExecutable16 (SHELL.21)
511 HINSTANCE16 WINAPI FindExecutable16( LPCSTR lpFile, LPCSTR lpDirectory,
513 { return (HINSTANCE16)FindExecutableA( lpFile, lpDirectory, lpResult );
517 /*************************************************************************
518 * AboutDlgProc16 (SHELL.33)
520 BOOL16 WINAPI AboutDlgProc16( HWND16 hWnd, UINT16 msg, WPARAM16 wParam,
522 { return AboutDlgProc( hWnd, msg, wParam, lParam );
526 /*************************************************************************
527 * ShellAbout16 (SHELL.22)
529 BOOL16 WINAPI ShellAbout16( HWND16 hWnd, LPCSTR szApp, LPCSTR szOtherStuff,
531 { return ShellAboutA( hWnd, szApp, szOtherStuff, hIcon );
534 /*************************************************************************
535 * SHELL_GetResourceTable
537 static DWORD SHELL_GetResourceTable(HFILE hFile,LPBYTE *retptr)
538 { IMAGE_DOS_HEADER mz_header;
545 _llseek( hFile, 0, SEEK_SET );
546 if ((_lread(hFile,&mz_header,sizeof(mz_header)) != sizeof(mz_header)) || (mz_header.e_magic != IMAGE_DOS_SIGNATURE))
548 if (mz_header.e_cblp == 1)
549 { /* ICONHEADER.idType, must be 1 */
550 *retptr = (LPBYTE)-1;
554 return 0; /* failed */
556 _llseek( hFile, mz_header.e_lfanew, SEEK_SET );
558 if (_lread( hFile, magic, sizeof(magic) ) != sizeof(magic))
561 _llseek( hFile, mz_header.e_lfanew, SEEK_SET);
563 if (*(DWORD*)magic == IMAGE_NT_SIGNATURE)
564 return IMAGE_NT_SIGNATURE;
566 if (*(WORD*)magic == IMAGE_OS2_SIGNATURE)
567 { IMAGE_OS2_HEADER ne_header;
568 LPBYTE pTypeInfo = (LPBYTE)-1;
570 if (_lread(hFile,&ne_header,sizeof(ne_header))!=sizeof(ne_header))
573 if (ne_header.ne_magic != IMAGE_OS2_SIGNATURE)
576 size = ne_header.rname_tab_offset - ne_header.resource_tab_offset;
578 if( size > sizeof(NE_TYPEINFO) )
579 { pTypeInfo = (BYTE*)HeapAlloc( GetProcessHeap(), 0, size);
581 { _llseek(hFile, mz_header.e_lfanew+ne_header.resource_tab_offset, SEEK_SET);
582 if( _lread( hFile, (char*)pTypeInfo, size) != size )
583 { HeapFree( GetProcessHeap(), 0, pTypeInfo);
589 return IMAGE_OS2_SIGNATURE;
591 return 0; /* failed */
594 /*************************************************************************
597 static HGLOBAL16 SHELL_LoadResource(HINSTANCE16 hInst, HFILE hFile, NE_NAMEINFO* pNInfo, WORD sizeShift)
599 HGLOBAL16 handle = DirectResAlloc16( hInst, 0x10, (DWORD)pNInfo->length << sizeShift);
603 if( (ptr = (BYTE*)GlobalLock16( handle )) )
604 { _llseek( hFile, (DWORD)pNInfo->offset << sizeShift, SEEK_SET);
605 _lread( hFile, (char*)ptr, pNInfo->length << sizeShift);
611 /*************************************************************************
614 static HGLOBAL16 ICO_LoadIcon(HINSTANCE16 hInst, HFILE hFile, LPicoICONDIRENTRY lpiIDE)
616 HGLOBAL16 handle = DirectResAlloc16( hInst, 0x10, lpiIDE->dwBytesInRes);
618 if( (ptr = (BYTE*)GlobalLock16( handle )) )
619 { _llseek( hFile, lpiIDE->dwImageOffset, SEEK_SET);
620 _lread( hFile, (char*)ptr, lpiIDE->dwBytesInRes);
626 /*************************************************************************
627 * ICO_GetIconDirectory
629 * Read .ico file and build phony ICONDIR struct for GetIconID
631 static HGLOBAL16 ICO_GetIconDirectory(HINSTANCE16 hInst, HFILE hFile, LPicoICONDIR* lplpiID )
632 { WORD id[3]; /* idReserved, idType, idCount */
637 _llseek( hFile, 0, SEEK_SET );
638 if( _lread(hFile,(char*)id,sizeof(id)) != sizeof(id) ) return 0;
642 * - see http://www.microsoft.com/win32dev/ui/icons.htm
645 if( id[0] || id[1] != 1 || !id[2] ) return 0;
647 i = id[2]*sizeof(icoICONDIRENTRY) ;
649 lpiID = (LPicoICONDIR)HeapAlloc( GetProcessHeap(), 0, i + sizeof(id));
651 if( _lread(hFile,(char*)lpiID->idEntries,i) == i )
652 { HGLOBAL16 handle = DirectResAlloc16( hInst, 0x10,
653 id[2]*sizeof(CURSORICONDIRENTRY) + sizeof(id) );
655 { CURSORICONDIR* lpID = (CURSORICONDIR*)GlobalLock16( handle );
656 lpID->idReserved = lpiID->idReserved = id[0];
657 lpID->idType = lpiID->idType = id[1];
658 lpID->idCount = lpiID->idCount = id[2];
659 for( i=0; i < lpiID->idCount; i++ )
660 { memcpy((void*)(lpID->idEntries + i),
661 (void*)(lpiID->idEntries + i), sizeof(CURSORICONDIRENTRY) - 2);
662 lpID->idEntries[i].wResId = i;
670 HeapFree( GetProcessHeap(), 0, lpiID);
674 /*************************************************************************
675 * InternalExtractIcon [SHELL.39]
677 * This abortion is called directly by Progman
679 HGLOBAL16 WINAPI InternalExtractIcon16(HINSTANCE16 hInstance,
680 LPCSTR lpszExeFileName, UINT16 nIconIndex, WORD n )
681 { HGLOBAL16 hRet = 0;
682 HGLOBAL16* RetPtr = NULL;
686 HFILE hFile = OpenFile( lpszExeFileName, &ofs, OF_READ );
687 UINT16 iconDirCount = 0,iconCount = 0;
691 TRACE_(shell)("(%04x,file %s,start %d,extract %d\n",
692 hInstance, lpszExeFileName, nIconIndex, n);
694 if( hFile == HFILE_ERROR || !n )
697 hRet = GlobalAlloc16( GMEM_FIXED | GMEM_ZEROINIT, sizeof(HICON16)*n);
698 RetPtr = (HICON16*)GlobalLock16(hRet);
700 *RetPtr = (n == 0xFFFF)? 0: 1; /* error return values */
702 sig = SHELL_GetResourceTable(hFile,&pData);
704 if( sig==IMAGE_OS2_SIGNATURE || sig==1 ) /* .ICO file */
706 NE_TYPEINFO* pTInfo = (NE_TYPEINFO*)(pData + 2);
707 NE_NAMEINFO* pIconStorage = NULL;
708 NE_NAMEINFO* pIconDir = NULL;
709 LPicoICONDIR lpiID = NULL;
711 if( pData == (BYTE*)-1 )
712 { hIcon = ICO_GetIconDirectory(hInstance, hFile, &lpiID); /* check for .ICO file */
714 { iconDirCount = 1; iconCount = lpiID->idCount;
717 else while( pTInfo->type_id && !(pIconStorage && pIconDir) )
718 { if( pTInfo->type_id == NE_RSCTYPE_GROUP_ICON ) /* find icon directory and icon repository */
719 { iconDirCount = pTInfo->count;
720 pIconDir = ((NE_NAMEINFO*)(pTInfo + 1));
721 TRACE_(shell)("\tfound directory - %i icon families\n", iconDirCount);
723 if( pTInfo->type_id == NE_RSCTYPE_ICON )
724 { iconCount = pTInfo->count;
725 pIconStorage = ((NE_NAMEINFO*)(pTInfo + 1));
726 TRACE_(shell)("\ttotal icons - %i\n", iconCount);
728 pTInfo = (NE_TYPEINFO *)((char*)(pTInfo+1)+pTInfo->count*sizeof(NE_NAMEINFO));
731 /* load resources and create icons */
733 if( (pIconStorage && pIconDir) || lpiID )
734 { if( nIconIndex == (UINT16)-1 )
735 { RetPtr[0] = iconDirCount;
737 else if( nIconIndex < iconDirCount )
739 if( n > iconDirCount - nIconIndex )
740 n = iconDirCount - nIconIndex;
742 for( i = nIconIndex; i < nIconIndex + n; i++ )
743 { /* .ICO files have only one icon directory */
746 hIcon = SHELL_LoadResource( hInstance, hFile, pIconDir + i, *(WORD*)pData );
747 RetPtr[i-nIconIndex] = GetIconID16( hIcon, 3 );
751 for( icon = nIconIndex; icon < nIconIndex + n; icon++ )
754 { hIcon = ICO_LoadIcon( hInstance, hFile, lpiID->idEntries + RetPtr[icon-nIconIndex]);
757 { for( i = 0; i < iconCount; i++ )
758 { if( pIconStorage[i].id == (RetPtr[icon-nIconIndex] | 0x8000) )
759 { hIcon = SHELL_LoadResource( hInstance, hFile, pIconStorage + i,*(WORD*)pData );
764 { RetPtr[icon-nIconIndex] = LoadIconHandler16( hIcon, TRUE );
765 FarSetOwner16( RetPtr[icon-nIconIndex], GetExePtr(hInstance) );
768 { RetPtr[icon-nIconIndex] = 0;
774 HeapFree( GetProcessHeap(), 0, lpiID);
776 HeapFree( GetProcessHeap(), 0, pData);
779 if( sig == IMAGE_NT_SIGNATURE)
780 { LPBYTE idata,igdata;
781 PIMAGE_DOS_HEADER dheader;
782 PIMAGE_NT_HEADERS pe_header;
783 PIMAGE_SECTION_HEADER pe_sections;
784 PIMAGE_RESOURCE_DIRECTORY rootresdir,iconresdir,icongroupresdir;
785 PIMAGE_RESOURCE_DATA_ENTRY idataent,igdataent;
787 PIMAGE_RESOURCE_DIRECTORY_ENTRY xresent;
788 CURSORICONDIR **cids;
790 fmapping = CreateFileMappingA(hFile,NULL,PAGE_READONLY|SEC_COMMIT,0,0,NULL);
792 { /* FIXME, INVALID_HANDLE_VALUE? */
793 WARN_(shell)("failed to create filemap.\n");
795 goto end_2; /* failure */
797 peimage = MapViewOfFile(fmapping,FILE_MAP_READ,0,0,0);
799 { WARN_(shell)("failed to mmap filemap.\n");
801 goto end_2; /* failure */
803 dheader = (PIMAGE_DOS_HEADER)peimage;
805 /* it is a pe header, SHELL_GetResourceTable checked that */
806 pe_header = (PIMAGE_NT_HEADERS)(peimage+dheader->e_lfanew);
808 /* probably makes problems with short PE headers... but I haven't seen
811 pe_sections = (PIMAGE_SECTION_HEADER)(((char*)pe_header)+sizeof(*pe_header));
814 for (i=0;i<pe_header->FileHeader.NumberOfSections;i++)
815 { if (pe_sections[i].Characteristics & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
817 /* FIXME: doesn't work when the resources are not in a seperate section */
818 if (pe_sections[i].VirtualAddress == pe_header->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_RESOURCE].VirtualAddress)
819 { rootresdir = (PIMAGE_RESOURCE_DIRECTORY)((char*)peimage+pe_sections[i].PointerToRawData);
825 { WARN_(shell)("haven't found section for resource directory.\n");
826 goto end_4; /* failure */
829 icongroupresdir = GetResDirEntryW(rootresdir,RT_GROUP_ICONW, (DWORD)rootresdir,FALSE);
831 if (!icongroupresdir)
832 { WARN_(shell)("No Icongroupresourcedirectory!\n");
833 goto end_4; /* failure */
836 iconDirCount = icongroupresdir->NumberOfNamedEntries+icongroupresdir->NumberOfIdEntries;
838 if( nIconIndex == (UINT16)-1 )
839 { RetPtr[0] = iconDirCount;
840 goto end_3; /* success */
843 if (nIconIndex >= iconDirCount)
844 { WARN_(shell)("nIconIndex %d is larger than iconDirCount %d\n",nIconIndex,iconDirCount);
846 goto end_4; /* failure */
849 cids = (CURSORICONDIR**)HeapAlloc(GetProcessHeap(),0,n*sizeof(CURSORICONDIR*));
851 /* caller just wanted the number of entries */
852 xresent = (PIMAGE_RESOURCE_DIRECTORY_ENTRY)(icongroupresdir+1);
854 /* assure we don't get too much ... */
855 if( n > iconDirCount - nIconIndex )
856 { n = iconDirCount - nIconIndex;
859 /* starting from specified index ... */
860 xresent = xresent+nIconIndex;
862 for (i=0;i<n;i++,xresent++)
863 { CURSORICONDIR *cid;
864 PIMAGE_RESOURCE_DIRECTORY resdir;
866 /* go down this resource entry, name */
867 resdir = (PIMAGE_RESOURCE_DIRECTORY)((DWORD)rootresdir+(xresent->u2.s.OffsetToDirectory));
869 /* default language (0) */
870 resdir = GetResDirEntryW(resdir,(LPWSTR)0,(DWORD)rootresdir,TRUE);
871 igdataent = (PIMAGE_RESOURCE_DATA_ENTRY)resdir;
873 /* lookup address in mapped image for virtual address */
876 for (j=0;j<pe_header->FileHeader.NumberOfSections;j++)
877 { if (igdataent->OffsetToData < pe_sections[j].VirtualAddress)
879 if (igdataent->OffsetToData+igdataent->Size > pe_sections[j].VirtualAddress+pe_sections[j].SizeOfRawData)
881 igdata = peimage+(igdataent->OffsetToData-pe_sections[j].VirtualAddress+pe_sections[j].PointerToRawData);
885 { WARN_(shell)("no matching real address for icongroup!\n");
886 goto end_4; /* failure */
889 cid = (CURSORICONDIR*)igdata;
891 RetPtr[i] = LookupIconIdFromDirectoryEx(igdata,TRUE,GetSystemMetrics(SM_CXICON),GetSystemMetrics(SM_CYICON),0);
894 iconresdir=GetResDirEntryW(rootresdir,RT_ICONW,(DWORD)rootresdir,FALSE);
897 { WARN_(shell)("No Iconresourcedirectory!\n");
898 goto end_4; /* failure */
902 { PIMAGE_RESOURCE_DIRECTORY xresdir;
903 xresdir = GetResDirEntryW(iconresdir,(LPWSTR)(DWORD)RetPtr[i],(DWORD)rootresdir,FALSE);
904 xresdir = GetResDirEntryW(xresdir,(LPWSTR)0,(DWORD)rootresdir,TRUE);
905 idataent = (PIMAGE_RESOURCE_DATA_ENTRY)xresdir;
908 /* map virtual to address in image */
909 for (j=0;j<pe_header->FileHeader.NumberOfSections;j++)
910 { if (idataent->OffsetToData < pe_sections[j].VirtualAddress)
912 if (idataent->OffsetToData+idataent->Size > pe_sections[j].VirtualAddress+pe_sections[j].SizeOfRawData)
914 idata = peimage+(idataent->OffsetToData-pe_sections[j].VirtualAddress+pe_sections[j].PointerToRawData);
917 { WARN_(shell)("no matching real address found for icondata!\n");
921 RetPtr[i] = CreateIconFromResourceEx(idata,idataent->Size,TRUE,0x00030000,GetSystemMetrics(SM_CXICON),GetSystemMetrics(SM_CYICON),0);
923 goto end_3; /* sucess */
925 goto end_1; /* return array with icon handles */
927 /* cleaning up (try & catch would be nicer) */
928 end_4: hRet = 0; /* failure */
929 end_3: UnmapViewOfFile(peimage); /* success */
930 end_2: CloseHandle(fmapping);
931 end_1: _lclose( hFile);
935 /*************************************************************************
936 * ExtractIcon16 (SHELL.34)
938 HICON16 WINAPI ExtractIcon16( HINSTANCE16 hInstance, LPCSTR lpszExeFileName,
940 { TRACE_(shell)("\n");
941 return ExtractIconA( hInstance, lpszExeFileName, nIconIndex );
944 /*************************************************************************
945 * ExtractIconEx16 (SHELL.40)
947 HICON16 WINAPI ExtractIconEx16(
948 LPCSTR lpszFile, INT16 nIconIndex, HICON16 *phiconLarge,
949 HICON16 *phiconSmall, UINT16 nIcons
951 HICON *ilarge,*ismall;
956 ilarge = (HICON*)HeapAlloc(GetProcessHeap(),0,nIcons*sizeof(HICON));
960 ismall = (HICON*)HeapAlloc(GetProcessHeap(),0,nIcons*sizeof(HICON));
963 ret = ExtractIconExA(lpszFile,nIconIndex,ilarge,ismall,nIcons);
965 for (i=0;i<nIcons;i++)
966 phiconLarge[i]=ilarge[i];
967 HeapFree(GetProcessHeap(),0,ilarge);
970 for (i=0;i<nIcons;i++)
971 phiconSmall[i]=ismall[i];
972 HeapFree(GetProcessHeap(),0,ismall);
977 /*************************************************************************
978 * ExtractAssociatedIcon [SHELL.36]
980 * Return icon for given file (either from file itself or from associated
981 * executable) and patch parameters if needed.
983 HICON WINAPI ExtractAssociatedIconA(HINSTANCE hInst, LPSTR lpIconPath, LPWORD lpiIcon)
984 { TRACE_(shell)("\n");
985 return ExtractAssociatedIcon16(hInst,lpIconPath,lpiIcon);
988 HICON16 WINAPI ExtractAssociatedIcon16(HINSTANCE16 hInst, LPSTR lpIconPath, LPWORD lpiIcon)
993 hIcon = ExtractIcon16(hInst, lpIconPath, *lpiIcon);
996 { if( hIcon == 1 ) /* no icons found in given file */
997 { char tempPath[0x80];
998 UINT16 uRet = FindExecutable16(lpIconPath,NULL,tempPath);
1000 if( uRet > 32 && tempPath[0] )
1001 { strcpy(lpIconPath,tempPath);
1002 hIcon = ExtractIcon16(hInst, lpIconPath, *lpiIcon);
1010 *lpiIcon = 2; /* MSDOS icon - we found .exe but no icons in it */
1012 *lpiIcon = 6; /* generic icon - found nothing */
1014 GetModuleFileName16(hInst, lpIconPath, 0x80);
1015 hIcon = LoadIcon16( hInst, MAKEINTRESOURCE16(*lpiIcon));
1020 /*************************************************************************
1021 * FindEnvironmentString [SHELL.38]
1023 * Returns a pointer into the DOS environment... Ugh.
1025 LPSTR SHELL_FindString(LPSTR lpEnv, LPCSTR entry)
1028 TRACE_(shell)("\n");
1031 for( ; *lpEnv ; lpEnv+=strlen(lpEnv)+1 )
1032 { if( lstrncmpiA(lpEnv, entry, l) )
1035 return (lpEnv + l); /* empty entry */
1036 else if ( *(lpEnv+l)== '=' )
1037 return (lpEnv + l + 1);
1042 SEGPTR WINAPI FindEnvironmentString16(LPSTR str)
1044 LPSTR lpEnv,lpString;
1045 TRACE_(shell)("\n");
1047 spEnv = GetDOSEnvironment16();
1049 lpEnv = (LPSTR)PTR_SEG_TO_LIN(spEnv);
1050 lpString = (spEnv)?SHELL_FindString(lpEnv, str):NULL;
1052 if( lpString ) /* offset should be small enough */
1053 return spEnv + (lpString - lpEnv);
1054 return (SEGPTR)NULL;
1057 /*************************************************************************
1058 * DoEnvironmentSubst [SHELL.37]
1060 * Replace %KEYWORD% in the str with the value of variable KEYWORD
1061 * from "DOS" environment.
1063 DWORD WINAPI DoEnvironmentSubst16(LPSTR str,WORD length)
1065 LPSTR lpEnv = (LPSTR)PTR_SEG_TO_LIN(GetDOSEnvironment16());
1066 LPSTR lpBuffer = (LPSTR)HeapAlloc( GetProcessHeap(), 0, length);
1068 LPSTR lpbstr = lpBuffer;
1070 CharToOemA(str,str);
1072 TRACE_(shell)("accept %s\n", str);
1074 while( *lpstr && lpbstr - lpBuffer < length )
1076 LPSTR lpend = lpstr;
1080 do { lpend++; } while( *lpend && *lpend != '%' );
1081 if( *lpend == '%' && lpend - lpstr > 1 ) /* found key */
1085 lpKey = SHELL_FindString(lpEnv, lpstr+1);
1086 if( lpKey ) /* found key value */
1088 int l = strlen(lpKey);
1090 if( l > length - (lpbstr - lpBuffer) - 1 )
1092 WARN_(shell)("-- Env subst aborted - string too short\n");
1096 strcpy(lpbstr, lpKey);
1103 else break; /* back off and whine */
1108 *lpbstr++ = *lpstr++;
1112 if( lpstr - str == strlen(str) )
1114 strncpy(str, lpBuffer, length);
1120 TRACE_(shell)("-- return %s\n", str);
1122 OemToCharA(str,str);
1123 HeapFree( GetProcessHeap(), 0, lpBuffer);
1125 /* Return str length in the LOWORD
1126 * and 1 in HIWORD if subst was successful.
1128 return (DWORD)MAKELONG(strlen(str), length);
1131 /*************************************************************************
1132 * ShellHookProc [SHELL.103]
1133 * System-wide WH_SHELL hook.
1135 LRESULT WINAPI ShellHookProc16(INT16 code, WPARAM16 wParam, LPARAM lParam)
1137 TRACE_(shell)("%i, %04x, %08x\n", code, wParam,
1139 if( SHELL_hHook && SHELL_hWnd )
1144 case HSHELL_WINDOWCREATED: uMsg = uMsgWndCreated; break;
1145 case HSHELL_WINDOWDESTROYED: uMsg = uMsgWndDestroyed; break;
1146 case HSHELL_ACTIVATESHELLWINDOW: uMsg = uMsgShellActivate;
1148 PostMessage16( SHELL_hWnd, uMsg, wParam, 0 );
1150 return CallNextHookEx16( WH_SHELL, code, wParam, lParam );
1153 /*************************************************************************
1154 * RegisterShellHook [SHELL.102]
1156 BOOL WINAPI RegisterShellHook16(HWND16 hWnd, UINT16 uAction)
1158 TRACE_(shell)("%04x [%u]\n", hWnd, uAction );
1162 case 2: /* register hWnd as a shell window */
1165 HMODULE16 hShell = GetModuleHandle16( "SHELL" );
1166 HOOKPROC16 hookProc = (HOOKPROC16)NE_GetEntryPoint( hShell, 103 );
1167 SHELL_hHook = SetWindowsHookEx16( WH_SHELL, hookProc, hShell, 0 );
1170 uMsgWndCreated = RegisterWindowMessageA( lpstrMsgWndCreated );
1171 uMsgWndDestroyed = RegisterWindowMessageA( lpstrMsgWndDestroyed );
1172 uMsgShellActivate = RegisterWindowMessageA( lpstrMsgShellActivate );
1175 WARN_(shell)("-- unable to install ShellHookProc()!\n");
1179 return ((SHELL_hWnd = hWnd) != 0);
1183 WARN_(shell)("-- unknown code %i\n", uAction );
1184 SHELL_hWnd = 0; /* just in case */