2 * The parameters of many functions changes between different OS versions
3 * (NT uses Unicode strings, 95 uses ASCII strings)
5 * Copyright 1997 Marcus Meissner
13 #include "winversion.h"
17 #include "shell32_main.h"
19 /*************************************************************************
20 * SHChangeNotifyRegister [SHELL32.2]
22 * Idlist is an array of structures and Count specifies how many items in the array
23 * (usually just one I think).
26 SHChangeNotifyRegister(
33 { FIXME(shell,"(0x%04x,0x%08lx,0x%08lx,0x%08lx,0x%08x,%p):stub.\n",
34 hwnd,events1,events2,msg,count,idlist);
37 /*************************************************************************
38 * SHChangeNotifyDeregister [SHELL32.4]
41 SHChangeNotifyDeregister(LONG x1)
42 { FIXME(shell,"(0x%08lx):stub.\n",x1);
45 /*************************************************************************
46 * NTSHChangeNotifyRegister [SHELL32.640]
48 * Idlist is an array of structures and Count specifies how many items in the array
49 * (usually just one I think).
51 DWORD WINAPI NTSHChangeNotifyRegister(
58 { FIXME(shell,"(0x%04x,0x%08lx,0x%08lx,0x%08lx,0x%08x,%p):stub.\n",
59 hwnd,events1,events2,msg,count,idlist);
62 /*************************************************************************
63 * NTSHChangeNotifyDeregister [SHELL32.641]
65 DWORD WINAPI NTSHChangeNotifyDeregister(LONG x1)
66 { FIXME(shell,"(0x%08lx):stub.\n",x1);
70 /*************************************************************************
71 * ParseField [SHELL32.58]
74 DWORD WINAPI ParseField32A(LPCSTR src, DWORD field, LPSTR dst, DWORD len)
75 { WARN(shell,"('%s',0x%08lx,%p,%ld) semi-stub.\n",src,field,dst,len);
77 if (!src || !src[0] || !dst || !len)
83 { if (*src==0x0) return FALSE;
84 if (*src==',') field--;
89 while (*src!=0x00 && *src!=',' && len>0)
90 { *dst=*src; dst++, src++; len--;
97 /*************************************************************************
98 * PickIconDlg [SHELL32.62]
101 DWORD WINAPI PickIconDlg(DWORD x,DWORD y,DWORD z,DWORD a)
102 { FIXME(shell,"(%08lx,%08lx,%08lx,%08lx):stub.\n",x,y,z,a);
106 /*************************************************************************
107 * GetFileNameFromBrowse [SHELL32.63]
110 DWORD WINAPI GetFileNameFromBrowse(HWND32 howner, LPSTR targetbuf, DWORD len, DWORD x, LPCSTR suffix, LPCSTR y, LPCSTR cmd)
111 { FIXME(shell,"(%04x,%p,%ld,%08lx,%s,%s,%s):stub.\n",
112 howner,targetbuf,len,x,suffix,y,cmd);
113 /* puts up a Open Dialog and requests input into targetbuf */
114 /* OFN_HIDEREADONLY|OFN_NOCHANGEDIR|OFN_FILEMUSTEXIST|OFN_unknown */
115 lstrcpy32A(targetbuf,"x:\\dummy.exe");
119 /*************************************************************************
120 * SHGetSettings [SHELL32.68]
123 DWORD WINAPI SHGetSettings(DWORD x,DWORD y,DWORD z)
124 { FIXME(shell,"(0x%08lx,0x%08lx,0x%08lx):stub.\n",x,y,z);
128 /*************************************************************************
129 * SHShellFolderView_Message [SHELL32.73]
132 * hwndCabinet defines the explorer cabinet window that contains the
133 * shellview you need to communicate with
134 * uMsg identifying the SFVM enum to perform
138 * Message SFVM_REARRANGE = 1
139 * This message gets sent when a column gets clicked to instruct the
140 * shell view to re-sort the item list. lParam identifies the column
143 int WINAPI SHShellFolderView_Message(HWND32 hwndCabinet,UINT32 uMsg,LPARAM lParam)
144 { FIXME(shell,"%04x %08ux %08lx stub\n",hwndCabinet,uMsg,lParam);
148 /*************************************************************************
149 * OleStrToStrN [SHELL32.78]
152 * exported by ordinal
154 * wrong implemented OleStr is NOT wide string !!!! (jsch)
157 OleStrToStrN (LPSTR lpMulti, INT32 nMulti, LPCWSTR lpWide, INT32 nWide) {
158 return WideCharToMultiByte (0, 0, lpWide, nWide,
159 lpMulti, nMulti, NULL, NULL);
162 /*************************************************************************
163 * StrToOleStrN [SHELL32.79]
166 * exported by ordinal
168 * wrong implemented OleStr is NOT wide string !!!! (jsch)
171 StrToOleStrN (LPWSTR lpWide, INT32 nWide, LPCSTR lpMulti, INT32 nMulti) {
172 return MultiByteToWideChar (0, 0, lpMulti, nMulti, lpWide, nWide);
175 /*************************************************************************
176 * RegisterShellHook [SHELL32.181]
179 * hwnd [I] window handle
183 * exported by ordinal
185 void WINAPI RegisterShellHook32(HWND32 hwnd, DWORD y) {
186 FIXME(shell,"(0x%08x,0x%08lx):stub.\n",hwnd,y);
188 /*************************************************************************
189 * ShellMessageBoxW [SHELL32.182]
191 * Format and output errormessage.
194 * exported by ordinal
197 ShellMessageBoxW(HMODULE32 hmod,HWND32 hwnd,DWORD id,DWORD x,DWORD type,LPVOID arglist) {
200 if (!LoadString32W(hmod,x,buf,100))
201 lstrcpyAtoW (buf,"Desktop");
203 FIXME(shell,"(%08lx,%08lx,%08lx,%08lx(%s),%08lx,%p):stub.\n",
204 (DWORD)hmod,(DWORD)hwnd,id,x,debugstr_w(buf),type,arglist);
207 /*************************************************************************
208 * ShellMessageBoxA [SHELL32.183]
210 * Format and output errormessage.
213 * exported by ordinal
216 ShellMessageBoxA(HMODULE32 hmod,HWND32 hwnd,DWORD id,DWORD x,DWORD type,LPVOID arglist) {
217 char buf[100],buf2[100]/*,*buf3*/;
218 /* LPVOID args = &arglist;*/
220 if (!LoadString32A(hmod,x,buf,100))
221 strcpy(buf,"Desktop");
222 /* LoadString32A(hmod,id,buf2,100); */
223 /* FIXME: the varargs handling doesn't. */
224 /* FormatMessage32A(0x500,buf2,0,0,(LPSTR)&buf3,256,(LPDWORD)&args); */
226 FIXME(shell,"(%08lx,%08lx,%08lx(%s),%08lx(%s),%08lx,%p):stub.\n",
227 (DWORD)hmod,(DWORD)hwnd,id,buf2,x,buf,type,arglist
229 /*MessageBox32A(hwnd,buf3,buf,id|0x10000);*/
232 /*************************************************************************
233 * SHRestricted [SHELL32.100]
235 * walks through policy table, queries <app> key, <type> value, returns
236 * queried (DWORD) value.
237 * {0x00001,Explorer,NoRun}
238 * {0x00002,Explorer,NoClose}
239 * {0x00004,Explorer,NoSaveSettings}
240 * {0x00008,Explorer,NoFileMenu}
241 * {0x00010,Explorer,NoSetFolders}
242 * {0x00020,Explorer,NoSetTaskbar}
243 * {0x00040,Explorer,NoDesktop}
244 * {0x00080,Explorer,NoFind}
245 * {0x00100,Explorer,NoDrives}
246 * {0x00200,Explorer,NoDriveAutoRun}
247 * {0x00400,Explorer,NoDriveTypeAutoRun}
248 * {0x00800,Explorer,NoNetHood}
249 * {0x01000,Explorer,NoStartBanner}
250 * {0x02000,Explorer,RestrictRun}
251 * {0x04000,Explorer,NoPrinterTabs}
252 * {0x08000,Explorer,NoDeletePrinter}
253 * {0x10000,Explorer,NoAddPrinter}
254 * {0x20000,Explorer,NoStartMenuSubFolders}
255 * {0x40000,Explorer,MyDocsOnNet}
256 * {0x80000,WinOldApp,NoRealMode}
259 * exported by ordinal
261 DWORD WINAPI SHRestricted (DWORD pol) {
264 FIXME(shell,"(%08lx):stub.\n",pol);
265 if (RegOpenKey32A(HKEY_CURRENT_USER,"Software\\Microsoft\\Windows\\CurrentVersion\\Policies",&xhkey))
267 /* FIXME: do nothing for now, just return 0 (== "allowed") */
272 /*************************************************************************
273 * SHCreateDirectory [SHELL32.165]
276 * exported by ordinal
277 * not sure about LPSECURITY_ATTRIBUTES
279 DWORD WINAPI SHCreateDirectory(LPSECURITY_ATTRIBUTES sec,LPCSTR path) {
280 TRACE(shell,"(%p,%s):stub.\n",sec,path);
281 if (CreateDirectory32A(path,sec))
283 /* SHChangeNotify(8,1,path,0); */
286 if (SHELL32_79(path,(LPVOID)x))
288 FIXME(shell,"(%08lx,%s):stub.\n",x,path);
293 /*************************************************************************
294 * SHFree [SHELL32.195]
297 * free_ptr() - frees memory using IMalloc
298 * exported by ordinal
300 DWORD WINAPI SHFree(LPVOID x) {
301 TRACE(shell,"%p\n",x);
303 { *(LPDWORD)0xdeaf0000 = 0;
305 return HeapFree(GetProcessHeap(),0,x);
308 /*************************************************************************
309 * SHAlloc [SHELL32.196]
312 * void *task_alloc(DWORD len), uses SHMalloc allocator
313 * exported by ordinal
315 LPVOID WINAPI SHAlloc(DWORD len) {
316 /* void * ret = (LPVOID)LocalAlloc32(len,LMEM_ZEROINIT);*/ /* chrashes */
317 void * ret = (LPVOID) HeapAlloc(GetProcessHeap(),0,len);
318 TRACE(shell,"%lu bytes at %p\n",len, ret);
322 /*************************************************************************
323 * OpenRegStream [SHELL32.85]
326 * exported by ordinal
328 DWORD WINAPI OpenRegStream(DWORD x1,DWORD x2,DWORD x3,DWORD x4) {
329 FIXME(shell,"(0x%08lx,0x%08lx,0x%08lx,0x%08lx):stub.\n",
335 /*************************************************************************
336 * SHRegisterDragDrop [SHELL32.86]
339 * exported by ordinal
341 DWORD WINAPI SHRegisterDragDrop(HWND32 hwnd,DWORD x2) {
342 FIXME (shell, "(0x%08x,0x%08lx):stub.\n", hwnd, x2);
346 /*************************************************************************
347 * SHRevokeDragDrop [SHELL32.87]
350 * exported by ordinal
352 DWORD WINAPI SHRevokeDragDrop(DWORD x) {
353 FIXME(shell,"(0x%08lx):stub.\n",x);
357 /*************************************************************************
358 * RunFileDlg [SHELL32.61]
361 * Original name: RunFileDlg (exported by ordinal)
364 RunFileDlg (HWND32 hwndOwner, DWORD dwParam1, DWORD dwParam2,
365 LPSTR lpszTitle, LPSTR lpszPrompt, UINT32 uFlags)
367 FIXME (shell,"(0x%08x 0x%lx 0x%lx \"%s\" \"%s\" 0x%x):stub.\n",
368 hwndOwner, dwParam1, dwParam2, lpszTitle, lpszPrompt, uFlags);
372 /*************************************************************************
373 * ExitWindowsDialog [SHELL32.60]
376 * exported by ordinal
379 ExitWindowsDialog (HWND32 hwndOwner)
381 FIXME (shell,"(0x%08x):stub.\n", hwndOwner);
385 /*************************************************************************
386 * ArrangeWindows [SHELL32.184]
390 ArrangeWindows (DWORD dwParam1, DWORD dwParam2, DWORD dwParam3,
391 DWORD dwParam4, DWORD dwParam5)
393 FIXME (shell,"(0x%lx 0x%lx 0x%lx 0x%lx 0x%lx):stub.\n",
394 dwParam1, dwParam2, dwParam3, dwParam4, dwParam5);
398 /*************************************************************************
399 * SHCLSIDFromString [SHELL32.147]
402 * exported by ordinal
405 SHCLSIDFromString (DWORD dwParam1, DWORD dwParam2)
407 FIXME (shell,"(0x%lx 0x%lx):stub.\n", dwParam1, dwParam2);
408 FIXME (shell,"(\"%s\" \"%s\"):stub.\n", (LPSTR)dwParam1, (LPSTR)dwParam2);
414 /*************************************************************************
415 * SignalFileOpen [SHELL32.103]
418 * exported by ordinal
421 SignalFileOpen (DWORD dwParam1)
423 FIXME (shell,"(0x%08lx):stub.\n", dwParam1);
428 /*************************************************************************
429 * SHAddToRecentDocs [SHELL32.234]
432 * uFlags [IN] SHARD_PATH or SHARD_PIDL
433 * pv [IN] string or pidl, NULL clears the list
438 DWORD WINAPI SHAddToRecentDocs32 (UINT32 uFlags,LPCVOID pv)
439 { if (SHARD_PIDL==uFlags)
440 { FIXME (shell,"(0x%08x,pidl=%p):stub.\n", uFlags,pv);
443 { FIXME (shell,"(0x%08x,%s):stub.\n", uFlags,(char*)pv);
447 /*************************************************************************
448 * SHFileOperation32 [SHELL32.242]
451 DWORD WINAPI SHFileOperation32(DWORD x)
452 { FIXME(shell,"0x%08lx stub\n",x);
457 /*************************************************************************
458 * SHFileOperation32A [SHELL32.243]
463 DWORD WINAPI SHFileOperation32A (LPSHFILEOPSTRUCT32A lpFileOp)
464 { FIXME (shell,"(%p):stub.\n", lpFileOp);
467 /*************************************************************************
468 * SHFileOperation32W [SHELL32.244]
473 DWORD WINAPI SHFileOperation32W (LPSHFILEOPSTRUCT32W lpFileOp)
474 { FIXME (shell,"(%p):stub.\n", lpFileOp);
478 /*************************************************************************
479 * SHChangeNotify [SHELL32.239]
484 DWORD WINAPI SHChangeNotify32 (
485 INT32 wEventId, /* [IN] flags that specifies the event*/
486 UINT32 uFlags, /* [IN] the meaning of dwItem[1|2]*/
489 { FIXME (shell,"(0x%08x,0x%08ux,%p,%p):stub.\n", wEventId,uFlags,dwItem1,dwItem2);
492 /*************************************************************************
493 * SHCreateShellFolderViewEx [SHELL32.174]
496 * see IShellFolder::CreateViewObject
498 HRESULT WINAPI SHCreateShellFolderViewEx32(
499 LPSHELLVIEWDATA psvcbi, /*[in ] shelltemplate struct*/
500 LPVOID* ppv) /*[out] IShellView pointer*/
501 { FIXME (shell,"(%p,%p):stub.\n", psvcbi,ppv);
504 /*************************************************************************
505 * SHFind_InitMenuPopup [SHELL32.149]
508 * Registers the menu behind the "Start" button
511 * hMenu [in] handel of menu previously created
512 * hWndParent [in] parent window
516 HRESULT WINAPI SHFind_InitMenuPopup (HMENU32 hMenu, HWND32 hWndParent, DWORD w, DWORD x)
517 { FIXME(shell,"hmenu=0x%08x hwnd=0x%08x 0x%08lx 0x%08lx stub\n",
518 hMenu,hWndParent,w,x);
521 /*************************************************************************
522 * FileMenu_InitMenuPopup [SHELL32.109]
525 HRESULT WINAPI FileMenu_InitMenuPopup (DWORD hmenu)
526 { FIXME(shell,"hmenu=0x%lx stub\n",hmenu);
529 /*************************************************************************
530 * FileMenu_Create [SHELL32.114]
532 * w retval from LoadBitmapA
536 HRESULT WINAPI FileMenu_Create (DWORD u, DWORD v, DWORD w, DWORD x, DWORD z)
537 { FIXME(shell,"0x%08lx 0x%08lx hbmp=0x%lx 0x%08lx 0x%08lx stub\n",u,v,w,x,z);
540 /*************************************************************************
541 * FileMenu_TrackPopupMenuEx [SHELL32.116]
544 * uFlags [in] according to TrackPopupMenuEx
548 * z could be rect (trace) or TPMPARAMS (TrackPopupMenuEx)
550 HRESULT WINAPI FileMenu_TrackPopupMenuEx (DWORD t, DWORD uFlags, DWORD posX, DWORD posY, HWND32 hWndParent, DWORD z)
551 { FIXME(shell,"0x%lx flags=0x%lx posx=0x%lx posy=0x%lx hwndp=0x%x 0x%lx stub\n",
552 t,uFlags,posX,posY, hWndParent,z);
555 /*************************************************************************
556 * SHWinHelp [SHELL32.127]
559 HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z)
560 { FIXME(shell,"0x%08lx 0x%08lx 0x%08lx 0x%08lx stub\n",v,w,x,z);
563 /*************************************************************************
564 * SHRunControlPanel [SHELL32.161]
567 HRESULT WINAPI SHRunControlPanel (DWORD x, DWORD z)
568 { FIXME(shell,"0x%08lx 0x%08lx stub\n",x,z);
571 /*************************************************************************
572 * ShellExecuteEx [SHELL32.291]
575 BOOL32 WINAPI ShellExecuteEx32 (LPVOID sei)
576 { if (VERSION_OsIsUnicode())
577 return ShellExecuteEx32W (sei);
578 return ShellExecuteEx32A (sei);
580 /*************************************************************************
581 * ShellExecuteEx32A [SHELL32.292]
584 BOOL32 WINAPI ShellExecuteEx32A (LPSHELLEXECUTEINFO32A sei)
585 { CHAR szApplicationName[MAX_PATH],szCommandline[MAX_PATH],szPidl[20];
588 STARTUPINFO32A startupinfo;
589 PROCESS_INFORMATION processinformation;
591 WARN(shell,"mask=0x%08lx hwnd=0x%04x verb=%s file=%s parm=%s dir=%s show=0x%08x class=%s incomplete\n",
592 sei->fMask, sei->hwnd, sei->lpVerb, sei->lpFile,
593 sei->lpParameters, sei->lpDirectory, sei->nShow, sei->lpClass);
595 ZeroMemory(szApplicationName,MAX_PATH);
597 strcpy(szApplicationName, sei->lpFile);
599 ZeroMemory(szCommandline,MAX_PATH);
600 if (sei->lpParameters)
601 strcpy(szCommandline, sei->lpParameters);
603 if (sei->fMask & (SEE_MASK_CLASSKEY | SEE_MASK_INVOKEIDLIST | SEE_MASK_ICON | SEE_MASK_HOTKEY |
604 SEE_MASK_NOCLOSEPROCESS | SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT |
605 SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI | SEE_MASK_UNICODE |
606 SEE_MASK_NO_CONSOLE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR ))
607 { FIXME (shell,"flags ignored: 0x%08lx\n", sei->fMask);
610 if (sei->fMask & SEE_MASK_CLASSNAME)
611 { HCR_GetExecuteCommand(sei->lpClass, (sei->lpVerb) ? sei->lpVerb : "open", szCommandline, 256);
614 /* process the IDList */
615 if ( (sei->fMask & SEE_MASK_INVOKEIDLIST) == SEE_MASK_INVOKEIDLIST) /*0x0c*/
616 { SHGetPathFromIDList32A (sei->lpIDList,szApplicationName);
617 TRACE(shell,"-- idlist=%p (%s)\n", sei->lpIDList, szApplicationName);
620 { if (sei->fMask & SEE_MASK_IDLIST )
621 { /* %I is the adress of a global item ID*/
622 pos = strstr(szCommandline, "%I");
624 { HGLOBAL32 hmem = SHAllocShared ( sei->lpIDList, ILGetSize(sei->lpIDList), 0);
625 sprintf(szPidl,":%li",(DWORD)SHLockShared(hmem,0) );
626 SHUnlockShared(hmem);
628 gap = strlen(szPidl);
630 memmove(pos+gap,pos+2,len);
631 memcpy(pos,szPidl,gap);
637 pos = strstr(szCommandline, ",%L"); /* dunno what it means: kill it*/
639 { len = strlen(pos)-2;
641 memmove(pos,pos+3,len);
644 TRACE(shell,"execute: %s %s\n",szApplicationName, szCommandline);
646 ZeroMemory(&startupinfo,sizeof(STARTUPINFO32A));
647 startupinfo.cb = sizeof(STARTUPINFO32A);
649 return CreateProcess32A(szApplicationName[0] ? szApplicationName:NULL,
650 szCommandline[0] ? szCommandline : NULL,
651 NULL, NULL, FALSE, 0,
652 NULL, NULL, &startupinfo, &processinformation);
656 /*************************************************************************
657 * ShellExecuteEx32W [SHELL32.293]
660 BOOL32 WINAPI ShellExecuteEx32W (LPSHELLEXECUTEINFO32W sei)
661 { SHELLEXECUTEINFO32A seiA;
664 TRACE (shell,"%p\n", sei);
666 memcpy(&seiA, sei, sizeof(SHELLEXECUTEINFO32A));
669 seiA.lpVerb = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpVerb);
672 seiA.lpFile = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpFile);
674 if (sei->lpParameters)
675 seiA.lpParameters = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpParameters);
677 if (sei->lpDirectory)
678 seiA.lpDirectory = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpDirectory);
680 if ((sei->fMask & SEE_MASK_CLASSNAME) && sei->lpClass)
681 seiA.lpClass = HEAP_strdupWtoA( GetProcessHeap(), 0, sei->lpClass);
685 ret = ShellExecuteEx32A(&seiA);
687 if (seiA.lpVerb) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpVerb );
688 if (seiA.lpFile) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpFile );
689 if (seiA.lpParameters) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpParameters );
690 if (seiA.lpDirectory) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpDirectory );
691 if (seiA.lpClass) HeapFree( GetProcessHeap(), 0, (LPSTR) seiA.lpClass );
696 static LPUNKNOWN SHELL32_IExplorerInterface=0;
697 /*************************************************************************
698 * SHSetInstanceExplorer [SHELL32.176]
703 HRESULT WINAPI SHSetInstanceExplorer (LPUNKNOWN lpUnknown)
704 { TRACE (shell,"%p\n", lpUnknown);
705 SHELL32_IExplorerInterface = lpUnknown;
706 return (HRESULT) lpUnknown;
708 /*************************************************************************
709 * SHGetInstanceExplorer [SHELL32.256]
712 * gets the interface pointer of the explorer and a reference
714 HRESULT WINAPI SHGetInstanceExplorer (LPUNKNOWN * lpUnknown)
715 { TRACE(shell,"%p\n", lpUnknown);
717 *lpUnknown = SHELL32_IExplorerInterface;
719 if (!SHELL32_IExplorerInterface)
722 SHELL32_IExplorerInterface->lpvtbl->fnAddRef(SHELL32_IExplorerInterface);
725 /*************************************************************************
726 * SHFreeUnusedLibraries [SHELL32.123]
731 HRESULT WINAPI SHFreeUnusedLibraries (void)
732 { FIXME(shell,"stub\n");
735 /*************************************************************************
736 * DAD_ShowDragImage [SHELL32.137]
741 HRESULT WINAPI DAD_ShowDragImage (DWORD u)
742 { FIXME(shell,"0x%08lx stub\n",u);
745 /*************************************************************************
746 * FileMenu_Destroy [SHELL32.118]
751 HRESULT WINAPI FileMenu_Destroy (DWORD u)
752 { FIXME(shell,"0x%08lx stub\n",u);
755 /*************************************************************************
756 * SHRegCloseKey32 [NT4.0:SHELL32.505]
759 HRESULT WINAPI SHRegCloseKey32 (HKEY hkey)
760 { TRACE(shell,"0x%04x\n",hkey);
761 return RegCloseKey( hkey );
763 /*************************************************************************
764 * SHRegOpenKey32A [SHELL32.506]
767 HRESULT WINAPI SHRegOpenKey32A(HKEY hKey, LPSTR lpSubKey, LPHKEY phkResult)
768 { FIXME(shell,"(0x%08x, %s, %p)\n", hKey, debugstr_a(lpSubKey),
770 return RegOpenKey32A(hKey, lpSubKey, phkResult);
773 /*************************************************************************
774 * SHRegOpenKey32W [NT4.0:SHELL32.507]
777 HRESULT WINAPI SHRegOpenKey32W (HKEY hkey, LPCWSTR lpszSubKey, LPHKEY retkey)
778 { WARN(shell,"0x%04x %s %p\n",hkey,debugstr_w(lpszSubKey),retkey);
779 return RegOpenKey32W( hkey, lpszSubKey, retkey );
781 /*************************************************************************
782 * SHRegQueryValueExA [SHELL32.509]
785 HRESULT WINAPI SHRegQueryValueEx32A(DWORD u, LPSTR v, DWORD w, DWORD x,
787 { FIXME(shell,"0x%04lx %s 0x%04lx 0x%04lx 0x%04lx 0x%04lx stub\n",
788 u,debugstr_a(v),w,x,y,z);
791 /*************************************************************************
792 * SHRegQueryValue32W [NT4.0:SHELL32.510]
795 HRESULT WINAPI SHRegQueryValue32W (HKEY hkey, LPWSTR lpszSubKey,
796 LPWSTR lpszData, LPDWORD lpcbData )
797 { WARN(shell,"0x%04x %s %p %p semi-stub\n",
798 hkey, debugstr_w(lpszSubKey), lpszData, lpcbData);
799 return RegQueryValue32W( hkey, lpszSubKey, lpszData, lpcbData );
802 /*************************************************************************
803 * SHRegQueryValueEx32W [NT4.0:SHELL32.511]
806 * if the datatype REG_EXPAND_SZ then expand the string and change
807 * *pdwType to REG_SZ.
809 HRESULT WINAPI SHRegQueryValueEx32W (HKEY hkey, LPWSTR pszValue, LPDWORD pdwReserved,
810 LPDWORD pdwType, LPVOID pvData, LPDWORD pcbData)
812 WARN(shell,"0x%04x %s %p %p %p %p semi-stub\n",
813 hkey, debugstr_w(pszValue), pdwReserved, pdwType, pvData, pcbData);
814 ret = RegQueryValueEx32W ( hkey, pszValue, pdwReserved, pdwType, pvData, pcbData);
818 /*************************************************************************
819 * ReadCabinetState [NT 4.0:SHELL32.651]
822 HRESULT WINAPI ReadCabinetState(DWORD u, DWORD v)
823 { FIXME(shell,"0x%04lx 0x%04lx stub\n",u,v);
826 /*************************************************************************
827 * WriteCabinetState [NT 4.0:SHELL32.652]
830 HRESULT WINAPI WriteCabinetState(DWORD u)
831 { FIXME(shell,"0x%04lx stub\n",u);
834 /*************************************************************************
835 * FileIconInit [SHELL32.660]
838 BOOL32 WINAPI FileIconInit(BOOL32 bFullInit)
839 { FIXME(shell,"(%s)\n", bFullInit ? "true" : "false");
842 /*************************************************************************
843 * IsUserAdmin [NT 4.0:SHELL32.680]
846 HRESULT WINAPI IsUserAdmin(void)
847 { FIXME(shell,"stub\n");
850 /*************************************************************************
851 * StrRetToStrN [SHELL32.96]
853 * converts a STRRET to a normal string
856 * FIXME the string handling is to simple (different STRRET choices)
857 * at the moment only CSTR
858 * the pidl is for STRRET OFFSET
860 HRESULT WINAPI StrRetToStrN (LPVOID dest, DWORD len, LPSTRRET src, LPITEMIDLIST pidl)
861 { TRACE(shell,"dest=0x%p len=0x%lx strret=0x%p pidl=%p stub\n",dest,len,src,pidl);
865 WideCharToMultiByte(CP_ACP, 0, src->u.pOleStr, -1, (LPSTR)dest, len, NULL, NULL);
866 SHFree(src->u.pOleStr);
870 if (VERSION_OsIsUnicode())
871 lstrcpynAtoW((LPWSTR)dest, src->u.cStr, len);
873 strncpy((LPSTR)dest, src->u.cStr, len);
878 { if(VERSION_OsIsUnicode())
879 lstrcpynAtoW((LPWSTR)dest, ((LPCSTR)&pidl->mkid)+src->u.uOffset, len);
881 strncpy((LPSTR)dest, ((LPCSTR)&pidl->mkid)+src->u.uOffset, len);
886 FIXME(shell,"unknown type!\n");
888 { *(LPSTR)dest = '\0';
895 /*************************************************************************
896 * StrChrW [NT 4.0:SHELL32.651]
899 LPWSTR WINAPI StrChrW (LPWSTR str, WCHAR x )
902 TRACE(shell,"%s 0x%04x\n",debugstr_w(str),x);
912 /*************************************************************************
913 * StrCmpNIW [NT 4.0:SHELL32.*]
916 INT32 WINAPI StrCmpNIW ( LPWSTR wstr1, LPWSTR wstr2, INT32 len)
917 { FIXME( shell,"%s %s %i stub\n", debugstr_w(wstr1),debugstr_w(wstr2),len);
921 /*************************************************************************
922 * SHAllocShared [SHELL32.520]
925 * parameter1 is return value from HeapAlloc
926 * parameter2 is equal to the size allocated with HeapAlloc
927 * parameter3 is return value from GetCurrentProcessId
929 * the return value is posted as lParam with 0x402 (WM_USER+2) to somewhere
930 * WM_USER+2 could be the undocumented CWM_SETPATH
931 * the allocated memory contains a pidl
933 HGLOBAL32 WINAPI SHAllocShared(LPVOID psrc, DWORD size, DWORD procID)
937 TRACE(shell,"ptr=%p size=0x%04lx procID=0x%04lx\n",psrc,size,procID);
938 hmem = GlobalAlloc32(GMEM_FIXED, size);
942 pmem = GlobalLock32 (hmem);
947 memcpy (pmem, psrc, size);
948 GlobalUnlock32(hmem);
951 /*************************************************************************
952 * SHLockShared [SHELL32.521]
955 * parameter1 is return value from SHAllocShared
956 * parameter2 is return value from GetCurrentProcessId
957 * the receiver of (WM_USER+2) trys to lock the HANDLE (?)
958 * the returnvalue seems to be a memoryadress
960 LPVOID WINAPI SHLockShared(HANDLE32 hmem, DWORD procID)
961 { TRACE(shell,"handle=0x%04x procID=0x%04lx\n",hmem,procID);
962 return GlobalLock32(hmem);
964 /*************************************************************************
965 * SHUnlockShared [SHELL32.522]
968 * parameter1 is return value from SHLockShared
970 BOOL32 WINAPI SHUnlockShared(HANDLE32 pmem)
971 { TRACE(shell,"handle=0x%04x\n",pmem);
972 return GlobalUnlock32(pmem);
974 /*************************************************************************
975 * SHFreeShared [SHELL32.523]
978 * parameter1 is return value from SHAllocShared
979 * parameter2 is return value from GetCurrentProcessId
981 HANDLE32 WINAPI SHFreeShared(HANDLE32 hmem, DWORD procID)
982 { TRACE(shell,"handle=0x%04x 0x%04lx\n",hmem,procID);
983 return GlobalFree32(hmem);
986 /*************************************************************************
987 * SetAppStartingCursor32 [SHELL32.99]
990 HRESULT WINAPI SetAppStartingCursor32(HWND32 u, DWORD v)
991 { FIXME(shell,"hwnd=0x%04x 0x%04lx stub\n",u,v );
994 /*************************************************************************
995 * SHLoadOLE32 [SHELL32.151]
998 HRESULT WINAPI SHLoadOLE32(DWORD u)
999 { FIXME(shell,"0x%04lx stub\n",u);
1002 /*************************************************************************
1003 * Shell_MergeMenus32 [SHELL32.67]
1006 BOOL32 _SHIsMenuSeparator(HMENU32 hm, int i)
1008 MENUITEMINFO32A mii;
1010 mii.cbSize = sizeof(MENUITEMINFO32A);
1011 mii.fMask = MIIM_TYPE;
1012 mii.cch = 0; /* WARNING: We MUST initialize it to 0*/
1013 if (!GetMenuItemInfo32A(hm, i, TRUE, &mii))
1017 if (mii.fType & MFT_SEPARATOR)
1023 #define MM_ADDSEPARATOR 0x00000001L
1024 #define MM_SUBMENUSHAVEIDS 0x00000002L
1025 HRESULT WINAPI Shell_MergeMenus32 (HMENU32 hmDst, HMENU32 hmSrc, UINT32 uInsert, UINT32 uIDAdjust, UINT32 uIDAdjustMax, ULONG uFlags)
1028 BOOL32 bAlreadySeparated;
1029 MENUITEMINFO32A miiSrc;
1031 UINT32 uTemp, uIDMax = uIDAdjust;
1033 FIXME(shell,"hmenu1=0x%04x hmenu2=0x%04x 0x%04x 0x%04x 0x%04x 0x%04lx stub\n",
1034 hmDst, hmSrc, uInsert, uIDAdjust, uIDAdjustMax, uFlags);
1036 if (!hmDst || !hmSrc)
1040 nItem = GetMenuItemCount32(hmDst);
1041 if (uInsert >= (UINT32)nItem)
1042 { uInsert = (UINT32)nItem;
1043 bAlreadySeparated = TRUE;
1046 { bAlreadySeparated = _SHIsMenuSeparator(hmDst, uInsert);;
1048 if ((uFlags & MM_ADDSEPARATOR) && !bAlreadySeparated)
1049 { /* Add a separator between the menus */
1050 InsertMenu32A(hmDst, uInsert, MF_BYPOSITION | MF_SEPARATOR, 0, NULL);
1051 bAlreadySeparated = TRUE;
1055 /* Go through the menu items and clone them*/
1056 for (nItem = GetMenuItemCount32(hmSrc) - 1; nItem >= 0; nItem--)
1057 { miiSrc.cbSize = sizeof(MENUITEMINFO32A);
1058 miiSrc.fMask = MIIM_STATE | MIIM_ID | MIIM_SUBMENU | MIIM_CHECKMARKS | MIIM_TYPE | MIIM_DATA;
1059 /* We need to reset this every time through the loop in case
1060 menus DON'T have IDs*/
1061 miiSrc.fType = MFT_STRING;
1062 miiSrc.dwTypeData = szName;
1063 miiSrc.dwItemData = 0;
1064 miiSrc.cch = sizeof(szName);
1066 if (!GetMenuItemInfo32A(hmSrc, nItem, TRUE, &miiSrc))
1069 if (miiSrc.fType & MFT_SEPARATOR)
1070 { /* This is a separator; don't put two of them in a row*/
1071 if (bAlreadySeparated)
1074 bAlreadySeparated = TRUE;
1076 else if (miiSrc.hSubMenu)
1077 { if (uFlags & MM_SUBMENUSHAVEIDS)
1078 { /* Adjust the ID and check it*/
1079 miiSrc.wID += uIDAdjust;
1080 if (miiSrc.wID > uIDAdjustMax)
1083 if (uIDMax <= miiSrc.wID)
1084 { uIDMax = miiSrc.wID + 1;
1088 { /* Don't set IDs for submenus that didn't have them already */
1089 miiSrc.fMask &= ~MIIM_ID;
1091 hmSubMenu = miiSrc.hSubMenu;
1092 miiSrc.hSubMenu = CreatePopupMenu32();
1093 if (!miiSrc.hSubMenu)
1096 uTemp = Shell_MergeMenus32(miiSrc.hSubMenu, hmSubMenu, 0, uIDAdjust, uIDAdjustMax, uFlags&MM_SUBMENUSHAVEIDS);
1097 if (uIDMax <= uTemp)
1100 bAlreadySeparated = FALSE;
1103 { /* Adjust the ID and check it*/
1104 miiSrc.wID += uIDAdjust;
1105 if (miiSrc.wID > uIDAdjustMax)
1108 if (uIDMax <= miiSrc.wID)
1109 { uIDMax = miiSrc.wID + 1;
1111 bAlreadySeparated = FALSE;
1113 if (!InsertMenuItem32A(hmDst, uInsert, TRUE, &miiSrc))
1118 /* Ensure the correct number of separators at the beginning of the
1119 inserted menu items*/
1121 { if (bAlreadySeparated)
1122 { DeleteMenu32(hmDst, uInsert, MF_BYPOSITION);
1126 { if (_SHIsMenuSeparator(hmDst, uInsert-1))
1127 { if (bAlreadySeparated)
1128 { DeleteMenu32(hmDst, uInsert, MF_BYPOSITION);
1132 { if ((uFlags & MM_ADDSEPARATOR) && !bAlreadySeparated)
1133 { /* Add a separator between the menus*/
1134 InsertMenu32A(hmDst, uInsert, MF_BYPOSITION | MF_SEPARATOR, 0, NULL);
1141 /*************************************************************************
1142 * DriveType32 [SHELL32.64]
1145 HRESULT WINAPI DriveType32(DWORD u)
1146 { FIXME(shell,"0x%04lx stub\n",u);
1149 /*************************************************************************
1150 * SHAbortInvokeCommand [SHELL32.198]
1153 HRESULT WINAPI SHAbortInvokeCommand(void)
1154 { FIXME(shell,"stub\n");
1157 /*************************************************************************
1158 * SHOutOfMemoryMessageBox [SHELL32.126]
1161 HRESULT WINAPI SHOutOfMemoryMessageBox(DWORD u, DWORD v, DWORD w)
1162 { FIXME(shell,"0x%04lx 0x%04lx 0x%04lx stub\n",u,v,w);
1165 /*************************************************************************
1166 * SHFlushClipboard [SHELL32.121]
1169 HRESULT WINAPI SHFlushClipboard(void)
1170 { FIXME(shell,"stub\n");
1173 /*************************************************************************
1174 * StrRChrW [SHELL32.320]
1177 LPWSTR WINAPI StrRChrW(LPWSTR lpStart, LPWSTR lpEnd, DWORD wMatch)
1179 TRACE(shell,"%s %s 0x%04x\n",debugstr_w(lpStart),debugstr_w(lpEnd), (WCHAR)wMatch );
1181 /* if the end not given, search*/
1189 { if (*lpStart==(WCHAR)wMatch)
1192 } while ( lpStart<=lpEnd );
1195 /*************************************************************************
1196 * StrFormatByteSize [SHLWAPI]
1198 LPSTR WINAPI StrFormatByteSize32A ( DWORD dw, LPSTR pszBuf, UINT32 cchBuf )
1200 TRACE(shell,"%lx %p %i\n", dw, pszBuf, cchBuf);
1202 { sprintf (buf,"%3.1f bytes", (FLOAT)dw);
1204 else if ( dw<1048576L)
1205 { sprintf (buf,"%3.1f KB", (FLOAT)dw/1024);
1207 else if ( dw < 1073741824L)
1208 { sprintf (buf,"%3.1f MB", (FLOAT)dw/1048576L);
1211 { sprintf (buf,"%3.1f GB", (FLOAT)dw/1073741824L);
1213 strncpy (pszBuf, buf, cchBuf);
1216 LPWSTR WINAPI StrFormatByteSize32W ( DWORD dw, LPWSTR pszBuf, UINT32 cchBuf )
1218 TRACE(shell,"%lx %p %i\n", dw, pszBuf, cchBuf);
1220 { sprintf (buf,"%3.1f bytes", (FLOAT)dw);
1222 else if ( dw<1048576L)
1223 { sprintf (buf,"%3.1f KB", (FLOAT)dw/1024);
1225 else if ( dw < 1073741824L)
1226 { sprintf (buf,"%3.1f MB", (FLOAT)dw/1048576L);
1229 { sprintf (buf,"%3.1f GB", (FLOAT)dw/1073741824L);
1231 lstrcpynAtoW (pszBuf, buf, cchBuf);
1234 /*************************************************************************
1235 * SHWaitForFileToOpen [SHELL32.97]
1238 HRESULT WINAPI SHWaitForFileToOpen(DWORD u, DWORD v, DWORD w)
1239 { FIXME(shell,"0x%04lx 0x%04lx 0x%04lx stub\n",u,v,w);
1242 /*************************************************************************
1243 * Control_FillCache_RunDLL [SHELL32.8]
1246 HRESULT WINAPI Control_FillCache_RunDLL(HWND32 hWnd, HANDLE32 hModule, DWORD w, DWORD x)
1247 { FIXME(shell,"0x%04x 0x%04x 0x%04lx 0x%04lx stub\n",hWnd, hModule,w,x);
1250 /*************************************************************************
1251 * RunDLL_CallEntry16 [SHELL32.122]
1252 * the name is propably wrong
1254 HRESULT WINAPI RunDLL_CallEntry16(DWORD v, DWORD w, DWORD x, DWORD y, DWORD z)
1255 { FIXME(shell,"0x%04lx 0x%04lx 0x%04lx 0x%04lx 0x%04lx stub\n",v,w,x,y,z);