2 * Shell Library Functions
18 #include "cursoricon.h"
24 /* .ICO file ICONDIR definitions */
30 BYTE bWidth
; /* Width, in pixels, of the image */
31 BYTE bHeight
; /* Height, in pixels, of the image */
32 BYTE bColorCount
; /* Number of colors in image (0 if >=8bpp) */
33 BYTE bReserved
; /* Reserved ( must be 0) */
34 WORD wPlanes
; /* Color Planes */
35 WORD wBitCount
; /* Bits per pixel */
36 DWORD dwBytesInRes
; /* How many bytes in this resource? */
37 DWORD dwImageOffset
; /* Where in the file is this image? */
38 } icoICONDIRENTRY
, *LPicoICONDIRENTRY
;
42 WORD idReserved
; /* Reserved (must be 0) */
43 WORD idType
; /* Resource Type (1 for icons) */
44 WORD idCount
; /* How many images? */
45 icoICONDIRENTRY idEntries
[1]; /* An entry for each image (idCount of 'em) */
46 } icoICONDIR
, *LPicoICONDIR
;
50 extern HGLOBAL16
CURSORICON_LoadHandler( HGLOBAL16
, HINSTANCE16
, BOOL
);
51 extern WORD
GetIconID( HGLOBAL16 hResource
, DWORD resType
);
53 /*************************************************************************
54 * DragAcceptFiles [SHELL.9]
56 void DragAcceptFiles(HWND hWnd
, BOOL b
)
58 WND
* wnd
= WIN_FindWndPtr(hWnd
);
61 wnd
->dwExStyle
= b
? wnd
->dwExStyle
| WS_EX_ACCEPTFILES
62 : wnd
->dwExStyle
& ~WS_EX_ACCEPTFILES
;
66 /*************************************************************************
67 * DragQueryFile [SHELL.11]
69 UINT
DragQueryFile(HDROP16 hDrop
, WORD wFile
, LPSTR lpszFile
, WORD wLength
)
71 /* hDrop is a global memory block allocated with GMEM_SHARE
72 * with DROPFILESTRUCT as a header and filenames following
73 * it, zero length filename is in the end */
75 LPDROPFILESTRUCT lpDropFileStruct
;
79 dprintf_reg(stddeb
,"DragQueryFile(%04x, %i, %p, %u)\n",
80 hDrop
,wFile
,lpszFile
,wLength
);
82 lpDropFileStruct
= (LPDROPFILESTRUCT
) GlobalLock16(hDrop
);
83 if(!lpDropFileStruct
) return 0;
85 lpCurrent
= (LPSTR
) lpDropFileStruct
+ lpDropFileStruct
->wSize
;
90 while (*lpCurrent
++); /* skip filename */
92 return (wFile
== 0xFFFF) ? i
: 0;
95 i
= strlen(lpCurrent
);
96 if (!lpszFile
) return i
+1; /* needed buffer size */
98 i
= (wLength
> i
) ? i
: wLength
-1;
99 strncpy(lpszFile
, lpCurrent
, i
);
102 GlobalUnlock16(hDrop
);
107 /*************************************************************************
108 * DragFinish [SHELL.12]
110 void DragFinish(HDROP16 h
)
112 GlobalFree16((HGLOBAL16
)h
);
116 /*************************************************************************
117 * DragQueryPoint [SHELL.13]
119 BOOL
DragQueryPoint(HDROP16 hDrop
, POINT16
*p
)
121 LPDROPFILESTRUCT lpDropFileStruct
;
124 lpDropFileStruct
= (LPDROPFILESTRUCT
) GlobalLock16(hDrop
);
126 memcpy(p
,&lpDropFileStruct
->ptMousePos
,sizeof(POINT16
));
127 bRet
= lpDropFileStruct
->fInNonClientArea
;
129 GlobalUnlock16(hDrop
);
133 /*************************************************************************
134 * SHELL_FindExecutable
135 * Utility for code sharing between FindExecutable and ShellExecute
137 static HINSTANCE16
SHELL_FindExecutable( LPCSTR lpFile
,
142 char *extension
= NULL
; /* pointer to file extension */
143 char tmpext
[5]; /* local copy to mung as we please */
144 char filetype
[256]; /* registry name for this filetype */
145 LONG filetypelen
=256; /* length of above */
146 char command
[256]; /* command from registry */
147 LONG commandlen
=256; /* This is the most DOS can handle :) */
148 char buffer
[256]; /* Used to GetProfileString */
149 HINSTANCE16 retval
=31; /* default - 'No association was found' */
150 char *tok
; /* token pointer */
151 int i
; /* random counter */
152 char xlpFile
[256]; /* result of SearchPath */
154 dprintf_exec(stddeb
, "SHELL_FindExecutable: File %s, Dir %s\n",
155 (lpFile
!= NULL
?lpFile
:"-"),
156 (lpDirectory
!= NULL
?lpDirectory
:"-"));
158 lpResult
[0]='\0'; /* Start off with an empty return string */
160 /* trap NULL parameters on entry */
161 if (( lpFile
== NULL
) || ( lpResult
== NULL
) || ( lpOperation
== NULL
))
163 /* FIXME - should throw a warning, perhaps! */
164 return 2; /* File not found. Close enough, I guess. */
166 if (SearchPath32A(lpDirectory
,lpFile
,NULL
,sizeof(xlpFile
),xlpFile
,NULL
))
169 if (SearchPath32A(lpDirectory
,lpFile
,".exe",sizeof(xlpFile
),xlpFile
,NULL
))
173 /* First thing we need is the file's extension */
174 extension
= strrchr( xlpFile
, '.' ); /* Assume last "." is the one; */
175 /* File->Run in progman uses */
177 if ((extension
== NULL
) || (extension
== &xlpFile
[strlen(xlpFile
)]))
179 return 31; /* no association */
182 /* Make local copy & lowercase it for reg & 'programs=' lookup */
183 strncpy( tmpext
, extension
, 5 );
184 if (strlen(extension
)<=4)
185 tmpext
[strlen(extension
)]='\0';
188 for (i
=0;i
<strlen(tmpext
);i
++) tmpext
[i
]=tolower(tmpext
[i
]);
189 dprintf_exec(stddeb
, "SHELL_FindExecutable: %s file\n", tmpext
);
191 /* Three places to check: */
192 /* 1. win.ini, [windows], programs (NB no leading '.') */
193 /* 2. Registry, HKEY_CLASS_ROOT\<filetype>\shell\open\command */
194 /* 3. win.ini, [extensions], extension (NB no leading '.' */
195 /* All I know of the order is that registry is checked before */
196 /* extensions; however, it'd make sense to check the programs */
197 /* section first, so that's what happens here. */
199 /* See if it's a program - if GetProfileString fails, we skip this
200 * section. Actually, if GetProfileString fails, we've probably
201 * got a lot more to worry about than running a program... */
202 if ( GetProfileString32A("windows", "programs", "exe pif bat com",
203 buffer
, sizeof(buffer
)) > 0 )
205 for (i
=0;i
<strlen(buffer
); i
++) buffer
[i
]=tolower(buffer
[i
]);
207 tok
= strtok(buffer
, " \t"); /* ? */
210 if (strcmp(tok
, &tmpext
[1])==0) /* have to skip the leading "." */
212 strcpy(lpResult
, xlpFile
);
213 /* Need to perhaps check that the file has a path
215 dprintf_exec(stddeb
, "SHELL_FindExecutable: found %s\n",
219 /* Greater than 32 to indicate success FIXME According to the
220 * docs, I should be returning a handle for the
221 * executable. Does this mean I'm supposed to open the
222 * executable file or something? More RTFM, I guess... */
224 tok
=strtok(NULL
, " \t");
229 if (RegQueryValue16( (HKEY
)HKEY_CLASSES_ROOT
, tmpext
, filetype
,
230 &filetypelen
) == SHELL_ERROR_SUCCESS
)
232 filetype
[filetypelen
]='\0';
233 dprintf_exec(stddeb
, "SHELL_FindExecutable: File type: %s\n",
236 /* Looking for ...buffer\shell\lpOperation\command */
237 strcat( filetype
, "\\shell\\" );
238 strcat( filetype
, lpOperation
);
239 strcat( filetype
, "\\command" );
241 if (RegQueryValue16( (HKEY
)HKEY_CLASSES_ROOT
, filetype
, command
,
242 &commandlen
) == SHELL_ERROR_SUCCESS
)
244 /* Is there a replace() function anywhere? */
245 command
[commandlen
]='\0';
246 strcpy( lpResult
, command
);
247 tok
=strstr( lpResult
, "%1" );
250 tok
[0]='\0'; /* truncate string at the percent */
251 strcat( lpResult
, xlpFile
); /* what if no dir in xlpFile? */
252 tok
=strstr( command
, "%1" );
253 if ((tok
!=NULL
) && (strlen(tok
)>2))
255 strcat( lpResult
, &tok
[2] );
258 retval
=33; /* FIXME see above */
261 else /* Check win.ini */
263 /* Toss the leading dot */
265 if ( GetProfileString32A( "extensions", extension
, "", command
,
266 sizeof(command
)) > 0)
268 if (strlen(command
)!=0)
270 strcpy( lpResult
, command
);
271 tok
=strstr( lpResult
, "^" ); /* should be ^.extension? */
275 strcat( lpResult
, xlpFile
); /* what if no dir in xlpFile? */
276 tok
=strstr( command
, "^" ); /* see above */
277 if ((tok
!= NULL
) && (strlen(tok
)>5))
279 strcat( lpResult
, &tok
[5]);
282 retval
=33; /* FIXME - see above */
287 dprintf_exec(stddeb
, "SHELL_FindExecutable: returning %s\n", lpResult
);
291 /*************************************************************************
292 * ShellExecute [SHELL.20]
294 HINSTANCE16
ShellExecute(HWND hWnd
, LPCSTR lpOperation
, LPCSTR lpFile
,
295 LPSTR lpParameters
, LPCSTR lpDirectory
,
298 HINSTANCE16 retval
=31;
301 dprintf_exec(stddeb
, "ShellExecute(%04x,'%s','%s','%s','%s',%x)\n",
302 hWnd
, lpOperation
? lpOperation
:"<null>", lpFile
? lpFile
:"<null>",
303 lpParameters
? lpParameters
: "<null>",
304 lpDirectory
? lpDirectory
: "<null>", iShowCmd
);
306 if (lpFile
==NULL
) return 0; /* should not happen */
307 if (lpOperation
==NULL
) /* default is open */
310 retval
= SHELL_FindExecutable( lpFile
, lpDirectory
, lpOperation
, cmd
);
320 strcat(cmd
,lpParameters
);
323 dprintf_exec(stddeb
,"ShellExecute:starting %s\n",cmd
);
324 return WinExec(cmd
,iShowCmd
);
327 /*************************************************************************
328 * FindExecutable [SHELL.21]
330 HINSTANCE16
FindExecutable(LPCSTR lpFile
, LPCSTR lpDirectory
, LPSTR lpResult
)
332 HINSTANCE16 retval
=31; /* default - 'No association was found' */
334 dprintf_exec(stddeb
, "FindExecutable: File %s, Dir %s\n",
335 (lpFile
!= NULL
?lpFile
:"-"),
336 (lpDirectory
!= NULL
?lpDirectory
:"-"));
338 lpResult
[0]='\0'; /* Start off with an empty return string */
340 /* trap NULL parameters on entry */
341 if (( lpFile
== NULL
) || ( lpResult
== NULL
))
343 /* FIXME - should throw a warning, perhaps! */
344 return 2; /* File not found. Close enough, I guess. */
347 retval
= SHELL_FindExecutable( lpFile
, lpDirectory
, "open",
350 dprintf_exec(stddeb
, "FindExecutable: returning %s\n", lpResult
);
354 static char AppName
[128], AppMisc
[1536];
356 /*************************************************************************
357 * AboutDlgProc [SHELL.33]
359 LRESULT
AboutDlgProc(HWND hWnd
, UINT msg
, WPARAM16 wParam
, LPARAM lParam
)
361 char Template
[512], AppTitle
[512];
365 SendDlgItemMessage32A(hWnd
,stc1
,STM_SETICON
,lParam
,0);
366 GetWindowText32A(hWnd
, Template
, sizeof(Template
));
367 sprintf(AppTitle
, Template
, AppName
);
368 SetWindowText32A(hWnd
, AppTitle
);
369 SetWindowText32A(GetDlgItem(hWnd
,100), AppMisc
);
375 EndDialog(hWnd
, TRUE
);
383 /*************************************************************************
384 * ShellAbout [SHELL.22]
386 INT
ShellAbout(HWND hWnd
, LPCSTR szApp
, LPCSTR szOtherStuff
, HICON16 hIcon
)
391 if (szApp
) strncpy(AppName
, szApp
, sizeof(AppName
));
393 AppName
[sizeof(AppName
)-1]=0;
395 if (szOtherStuff
) strncpy(AppMisc
, szOtherStuff
, sizeof(AppMisc
));
397 AppMisc
[sizeof(AppMisc
)-1]=0;
399 if (!hIcon
) hIcon
= LoadIcon16(0,MAKEINTRESOURCE(OIC_WINEICON
));
400 handle
= SYSRES_LoadResource( SYSRES_DIALOG_SHELL_ABOUT_MSGBOX
);
401 if (!handle
) return FALSE
;
402 bRet
= DialogBoxIndirectParam16( WIN_GetWindowInstance( hWnd
),
404 (DLGPROC16
)MODULE_GetWndProcEntry16("AboutDlgProc"),
406 SYSRES_FreeResource( handle
);
410 /*************************************************************************
411 * ShellAbout32W [SHELL32.83]
413 INT32
ShellAbout32W(HWND32 hWnd
, LPCWSTR szApp
, LPCWSTR szOtherStuff
, HICON16 hIcon
)
418 if (szApp
) lstrcpynWtoA(AppName
, szApp
, sizeof(AppName
));
420 AppName
[sizeof(AppName
)-1]=0;
422 if (szOtherStuff
) lstrcpynWtoA(AppMisc
, szOtherStuff
, sizeof(AppMisc
));
424 AppMisc
[sizeof(AppMisc
)-1]=0;
426 if (!hIcon
) hIcon
= LoadIcon16(0,MAKEINTRESOURCE(OIC_WINEICON
));
427 handle
= SYSRES_LoadResource( SYSRES_DIALOG_SHELL_ABOUT_MSGBOX
);
428 if (!handle
) return FALSE
;
429 bRet
= DialogBoxIndirectParam16( WIN_GetWindowInstance( hWnd
),
431 (DLGPROC16
)MODULE_GetWndProcEntry16("AboutDlgProc"),
433 SYSRES_FreeResource( handle
);
437 /*************************************************************************
438 * SHELL_GetResourceTable
440 * FIXME: Implement GetPEResourceTable in w32sys.c and call it here.
442 static BYTE
* SHELL_GetResourceTable(HFILE hFile
)
444 struct mz_header_s mz_header
;
445 struct ne_header_s ne_header
;
448 _llseek( hFile
, 0, SEEK_SET
);
449 if ((_lread32(hFile
,&mz_header
,sizeof(mz_header
)) != sizeof(mz_header
)) ||
450 (mz_header
.mz_magic
!= MZ_SIGNATURE
)) return (BYTE
*)-1;
452 _llseek( hFile
, mz_header
.ne_offset
, SEEK_SET
);
453 if (_lread32( hFile
, &ne_header
, sizeof(ne_header
) ) != sizeof(ne_header
))
456 if (ne_header
.ne_magic
== PE_SIGNATURE
)
457 { fprintf(stdnimp
,"Win32s FIXME: file %s line %i\n", __FILE__
, __LINE__
);
460 if (ne_header
.ne_magic
!= NE_SIGNATURE
) return NULL
;
462 size
= ne_header
.rname_tab_offset
- ne_header
.resource_tab_offset
;
464 if( size
> sizeof(NE_TYPEINFO
) )
466 BYTE
* pTypeInfo
= (BYTE
*)xmalloc(size
);
468 if( !pTypeInfo
) return NULL
;
470 _llseek(hFile
, mz_header
.ne_offset
+ne_header
.resource_tab_offset
, SEEK_SET
);
471 if( _lread32( hFile
, (char*)pTypeInfo
, size
) != size
)
472 { free(pTypeInfo
); return NULL
; }
480 /*************************************************************************
483 static HGLOBAL16
SHELL_LoadResource(HINSTANCE16 hInst
, HFILE hFile
, NE_NAMEINFO
* pNInfo
, WORD sizeShift
)
486 HGLOBAL16 handle
= DirectResAlloc( hInst
, 0x10, (DWORD
)pNInfo
->length
<< sizeShift
);
488 if( (ptr
= (BYTE
*)GlobalLock16( handle
)) )
490 _llseek( hFile
, (DWORD
)pNInfo
->offset
<< sizeShift
, SEEK_SET
);
491 _lread32( hFile
, (char*)ptr
, pNInfo
->length
<< sizeShift
);
497 /*************************************************************************
500 static HGLOBAL16
ICO_LoadIcon(HINSTANCE16 hInst
, HFILE hFile
, LPicoICONDIRENTRY lpiIDE
)
503 HGLOBAL16 handle
= DirectResAlloc( hInst
, 0x10, lpiIDE
->dwBytesInRes
);
505 if( (ptr
= (BYTE
*)GlobalLock16( handle
)) )
507 _llseek( hFile
, lpiIDE
->dwImageOffset
, SEEK_SET
);
508 _lread32( hFile
, (char*)ptr
, lpiIDE
->dwBytesInRes
);
514 /*************************************************************************
515 * ICO_GetIconDirectory
517 * Read .ico file and build phony ICONDIR struct for GetIconID
519 static HGLOBAL16
ICO_GetIconDirectory(HINSTANCE16 hInst
, HFILE hFile
, LPicoICONDIR
* lplpiID
)
521 WORD id
[3]; /* idReserved, idType, idCount */
525 _llseek( hFile
, 0, SEEK_SET
);
526 if( _lread32(hFile
,(char*)id
,sizeof(id
)) != sizeof(id
) ) return 0;
530 * - see http://www.microsoft.com/win32dev/ui/icons.htm
533 if( id
[0] || id
[1] != 1 || !id
[2] ) return 0;
535 i
= id
[2]*sizeof(icoICONDIRENTRY
) + sizeof(id
);
537 lpiID
= (LPicoICONDIR
)xmalloc(i
);
539 if( _lread32(hFile
,(char*)lpiID
->idEntries
,i
) == i
)
541 HGLOBAL16 handle
= DirectResAlloc( hInst
, 0x10,
542 id
[2]*sizeof(ICONDIRENTRY
) + sizeof(id
) );
545 CURSORICONDIR
* lpID
= (CURSORICONDIR
*)GlobalLock16( handle
);
546 lpID
->idReserved
= lpiID
->idReserved
= id
[0];
547 lpID
->idType
= lpiID
->idType
= id
[1];
548 lpID
->idCount
= lpiID
->idCount
= id
[2];
549 for( i
=0; i
< lpiID
->idCount
; i
++ )
551 memcpy((void*)(lpID
->idEntries
+ i
),
552 (void*)(lpiID
->idEntries
+ i
), sizeof(ICONDIRENTRY
) - 2);
553 lpID
->idEntries
[i
].icon
.wResId
= i
;
565 /*************************************************************************
566 * InternalExtractIcon [SHELL.39]
568 * This abortion is called directly by Progman
570 HGLOBAL16
InternalExtractIcon(HINSTANCE16 hInstance
, LPCSTR lpszExeFileName
, UINT nIconIndex
, WORD n
)
573 HGLOBAL16
* RetPtr
= NULL
;
576 HFILE hFile
= OpenFile( lpszExeFileName
, &ofs
, OF_READ
);
578 dprintf_reg(stddeb
, "InternalExtractIcon(%04x, file '%s', start from %d, extract %d\n",
579 hInstance
, lpszExeFileName
, nIconIndex
, n
);
581 if( hFile
== HFILE_ERROR
|| !n
) return 0;
583 hRet
= GlobalAlloc16( GMEM_FIXED
| GMEM_ZEROINIT
, sizeof(HICON16
)*n
);
584 RetPtr
= (HICON16
*)GlobalLock16(hRet
);
586 *RetPtr
= (n
== 0xFFFF)? 0: 1; /* error return values */
588 pData
= SHELL_GetResourceTable(hFile
);
592 BOOL icoFile
= FALSE
;
593 UINT iconDirCount
= 0;
595 NE_TYPEINFO
* pTInfo
= (NE_TYPEINFO
*)(pData
+ 2);
596 NE_NAMEINFO
* pIconStorage
= NULL
;
597 NE_NAMEINFO
* pIconDir
= NULL
;
598 LPicoICONDIR lpiID
= NULL
;
600 if( pData
== (BYTE
*)-1 )
602 /* check for .ICO file */
604 hIcon
= ICO_GetIconDirectory(hInstance
, hFile
, &lpiID
);
606 { icoFile
= TRUE
; iconDirCount
= 1; iconCount
= lpiID
->idCount
; }
608 else while( pTInfo
->type_id
&& !(pIconStorage
&& pIconDir
) )
610 /* find icon directory and icon repository */
612 if( pTInfo
->type_id
== NE_RSCTYPE_GROUP_ICON
)
614 iconDirCount
= pTInfo
->count
;
615 pIconDir
= ((NE_NAMEINFO
*)(pTInfo
+ 1));
616 dprintf_reg(stddeb
,"\tfound directory - %i icon families\n", iconDirCount
);
618 if( pTInfo
->type_id
== NE_RSCTYPE_ICON
)
620 iconCount
= pTInfo
->count
;
621 pIconStorage
= ((NE_NAMEINFO
*)(pTInfo
+ 1));
622 dprintf_reg(stddeb
,"\ttotal icons - %i\n", iconCount
);
624 pTInfo
= (NE_TYPEINFO
*)((char*)(pTInfo
+1)+pTInfo
->count
*sizeof(NE_NAMEINFO
));
627 /* load resources and create icons */
629 if( (pIconStorage
&& pIconDir
) || icoFile
)
630 if( nIconIndex
== (UINT
)-1 ) RetPtr
[0] = iconDirCount
;
631 else if( nIconIndex
< iconDirCount
)
635 if( n
> iconDirCount
- nIconIndex
) n
= iconDirCount
- nIconIndex
;
637 for( i
= nIconIndex
; i
< nIconIndex
+ n
; i
++ )
639 /* .ICO files have only one icon directory */
642 hIcon
= SHELL_LoadResource( hInstance
, hFile
, pIconDir
+ i
,
644 RetPtr
[i
-nIconIndex
] = GetIconID( hIcon
, 3 );
648 for( icon
= nIconIndex
; icon
< nIconIndex
+ n
; icon
++ )
652 hIcon
= ICO_LoadIcon( hInstance
, hFile
, lpiID
->idEntries
+ RetPtr
[icon
-nIconIndex
]);
654 for( i
= 0; i
< iconCount
; i
++ )
655 if( pIconStorage
[i
].id
== (RetPtr
[icon
-nIconIndex
] | 0x8000) )
656 hIcon
= SHELL_LoadResource( hInstance
, hFile
, pIconStorage
+ i
,
658 RetPtr
[icon
-nIconIndex
] = (hIcon
)?CURSORICON_LoadHandler( hIcon
, hInstance
, FALSE
):0;
661 if( icoFile
) free(lpiID
);
666 /* return array with icon handles */
671 /*************************************************************************
672 * ExtractIcon [SHELL.34]
674 HICON16
ExtractIcon(HINSTANCE16 hInstance
, LPCSTR lpszExeFileName
, WORD nIconIndex
)
676 HGLOBAL16 handle
= InternalExtractIcon(hInstance
,lpszExeFileName
,nIconIndex
, 1);
680 HICON16
* ptr
= (HICON16
*)GlobalLock16(handle
);
681 HICON16 hIcon
= *ptr
;
683 GlobalFree16(handle
);
689 /*************************************************************************
690 * ExtractAssociatedIcon [SHELL.36]
692 * Return icon for given file (either from file itself or from associated
693 * executable) and patch parameters if needed.
695 HICON16
ExtractAssociatedIcon(HINSTANCE16 hInst
,LPSTR lpIconPath
,LPWORD lpiIcon
)
697 HICON16 hIcon
= ExtractIcon(hInst
, lpIconPath
, *lpiIcon
);
702 if( hIcon
== 1 ) /* no icons found in given file */
705 UINT uRet
= FindExecutable(lpIconPath
,NULL
,tempPath
);
707 if( uRet
> 32 && tempPath
[0] )
709 strcpy(lpIconPath
,tempPath
);
710 hIcon
= ExtractIcon(hInst
, lpIconPath
, *lpiIcon
);
712 if( hIcon
> 2 ) return hIcon
;
718 *lpiIcon
= 2; /* MSDOS icon - we found .exe but no icons in it */
720 *lpiIcon
= 6; /* generic icon - found nothing */
722 GetModuleFileName16(hInst
, lpIconPath
, 0x80);
723 hIcon
= LoadIcon16( hInst
, MAKEINTRESOURCE(*lpiIcon
));
729 /*************************************************************************
730 * FindEnvironmentString [SHELL.38]
732 * Returns a pointer into the DOS environment... Ugh.
734 LPSTR
SHELL_FindString(LPSTR lpEnv
, LPCSTR entry
)
736 UINT l
= strlen(entry
);
737 for( ; *lpEnv
; lpEnv
+=strlen(lpEnv
)+1 )
739 if( lstrncmpi32A(lpEnv
, entry
, l
) ) continue;
742 return (lpEnv
+ l
); /* empty entry */
743 else if ( *(lpEnv
+l
)== '=' )
744 return (lpEnv
+ l
+ 1);
749 SEGPTR
FindEnvironmentString(LPSTR str
)
751 SEGPTR spEnv
= GetDOSEnvironment();
752 LPSTR lpEnv
= (LPSTR
)PTR_SEG_TO_LIN(spEnv
);
754 LPSTR lpString
= (spEnv
)?SHELL_FindString(lpEnv
, str
):NULL
;
756 if( lpString
) /* offset should be small enough */
757 return spEnv
+ (lpString
- lpEnv
);
762 /*************************************************************************
763 * DoEnvironmentSubst [SHELL.37]
765 * Replace %KEYWORD% in the str with the value of variable KEYWORD
766 * from "DOS" environment.
768 DWORD
DoEnvironmentSubst(LPSTR str
,WORD length
)
770 LPSTR lpEnv
= (LPSTR
)PTR_SEG_TO_LIN(GetDOSEnvironment());
771 LPSTR lpBuffer
= (LPSTR
)xmalloc(length
);
773 LPSTR lpbstr
= lpBuffer
;
775 CharToOem32A(str
,str
);
777 dprintf_reg(stddeb
,"DoEnvSubst: accept %s", str
);
779 while( *lpstr
&& lpbstr
- lpBuffer
< length
)
785 do { lpend
++; } while( *lpend
&& *lpend
!= '%' );
786 if( *lpend
== '%' && lpend
- lpstr
> 1 ) /* found key */
790 lpKey
= SHELL_FindString(lpEnv
, lpstr
+1);
791 if( lpKey
) /* found key value */
793 int l
= strlen(lpKey
);
795 if( l
> length
- (lpbstr
- lpBuffer
) - 1 )
797 fprintf(stdnimp
,"File %s, line %i: Env subst aborted - string too short\n",
802 strcpy(lpbstr
, lpKey
);
809 else break; /* back off and whine */
814 *lpbstr
++ = *lpstr
++;
818 if( lpstr
- str
== strlen(str
) )
820 strncpy(str
, lpBuffer
, length
);
826 dprintf_reg(stddeb
," return %s\n", str
);
828 OemToChar32A(str
,str
);
831 /* Return str length in the LOWORD
832 * and 1 in HIWORD if subst was successful.
834 return (DWORD
)MAKELONG(strlen(str
), length
);
837 /*************************************************************************
838 * RegisterShellHook [SHELL.102]
840 int RegisterShellHook(void *ptr
)
842 fprintf(stdnimp
, "RegisterShellHook( %p ) : Empty Stub !!!\n", ptr
);
847 /*************************************************************************
848 * ShellHookProc [SHELL.103]
850 int ShellHookProc(void)
852 fprintf(stdnimp
, "ShellHookProc : Empty Stub !!!\n");
856 /*************************************************************************
857 * SHGetFileInfoA [SHELL32.54]
860 SHGetFileInfo32A(LPCSTR path
,DWORD dwFileAttributes
,SHFILEINFO32A
*psfi
,
861 UINT32 sizeofpsfi
,UINT32 flags
863 fprintf(stdnimp
,"SHGetFileInfo32A(%s,0x%08lx,%p,%d,0x%08x)\n",
864 path
,dwFileAttributes
,psfi
,sizeofpsfi
,flags
869 /*************************************************************************
870 * CommandLineToArgvW [SHELL32.2]
873 CommandLineToArgvW(LPWSTR cmdline
,LPDWORD numargs
) {
877 /* to get writeable copy */
878 cmdline
= HEAP_strdupW( GetProcessHeap(), 0, cmdline
);
885 while (*s
&& *s
==0x0020)
891 argv
=(LPWSTR
*)HeapAlloc( GetProcessHeap(), 0, sizeof(LPWSTR
)*(i
+1) );
897 argv
[i
++]=HEAP_strdupW( GetProcessHeap(), 0, t
);
899 while (*s
&& *s
==0x0020)
910 argv
[i
++]=(LPWSTR
)HEAP_strdupW( GetProcessHeap(), 0, t
);
911 HeapFree( GetProcessHeap(), 0, cmdline
);