Distinguish between Open and Explore commands.
[wine] / dlls / shell32 / shellord.c
1 /*
2  * The parameters of many functions changes between different OS versions
3  * (NT uses Unicode strings, 95 uses ASCII strings)
4  *
5  * Copyright 1997 Marcus Meissner
6  *           1998 Jürgen Schmied
7  *
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.
12  *
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.
17  *
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
21  */
22 #include "config.h"
23
24 #include <string.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include "winerror.h"
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winreg.h"
31 #include "wine/debug.h"
32 #include "winnls.h"
33
34 #include "shellapi.h"
35 #include "objbase.h"
36 #include "shlguid.h"
37 #include "wingdi.h"
38 #include "winuser.h"
39 #include "shlobj.h"
40 #include "shell32_main.h"
41 #include "undocshell.h"
42 #include "pidl.h"
43 #include "shlwapi.h"
44 #include "commdlg.h"
45
46 WINE_DEFAULT_DEBUG_CHANNEL(shell);
47 WINE_DECLARE_DEBUG_CHANNEL(pidl);
48
49 /* FIXME: !!! move CREATEMRULIST and flags to header file !!! */
50 /*        !!! it is in both here and comctl32undoc.c      !!! */
51 typedef struct tagCREATEMRULIST
52 {
53     DWORD  cbSize;        /* size of struct */
54     DWORD  nMaxItems;     /* max no. of items in list */
55     DWORD  dwFlags;       /* see below */
56     HKEY   hKey;          /* root reg. key under which list is saved */
57     LPCSTR lpszSubKey;    /* reg. subkey */
58     PROC   lpfnCompare;   /* item compare proc */
59 } CREATEMRULISTA, *LPCREATEMRULISTA;
60
61 /* dwFlags */
62 #define MRUF_STRING_LIST  0 /* list will contain strings */
63 #define MRUF_BINARY_LIST  1 /* list will contain binary data */
64 #define MRUF_DELAYED_SAVE 2 /* only save list order to reg. is FreeMRUList */
65
66 extern HANDLE WINAPI CreateMRUListA(LPCREATEMRULISTA lpcml);
67 extern DWORD  WINAPI FreeMRUList(HANDLE hMRUList);
68 extern INT    WINAPI AddMRUData(HANDLE hList, LPCVOID lpData, DWORD cbData);
69 extern INT    WINAPI FindMRUData(HANDLE hList, LPCVOID lpData, DWORD cbData, LPINT lpRegNum);
70 extern INT    WINAPI EnumMRUListA(HANDLE hList, INT nItemPos, LPVOID lpBuffer, DWORD nBufferSize);
71
72 /*************************************************************************
73  * ParseFieldA                                  [internal]
74  *
75  * copies a field from a ',' delimited string
76  *
77  * first field is nField = 1
78  */
79 DWORD WINAPI ParseFieldA(
80         LPCSTR src,
81         DWORD nField,
82         LPSTR dst,
83         DWORD len)
84 {
85         WARN("(%s,0x%08lx,%p,%ld) semi-stub.\n",debugstr_a(src),nField,dst,len);
86
87         if (!src || !src[0] || !dst || !len)
88           return 0;
89
90         /* skip n fields delimited by ',' */
91         while (nField > 1)
92         {
93           if (*src=='\0') return FALSE;
94           if (*(src++)==',') nField--;
95         }
96
97         /* copy part till the next ',' to dst */
98         while ( *src!='\0' && *src!=',' && (len--)>0 ) *(dst++)=*(src++);
99
100         /* finalize the string */
101         *dst=0x0;
102
103         return TRUE;
104 }
105
106 /*************************************************************************
107  * ParseFieldW                  [internal]
108  *
109  * copies a field from a ',' delimited string
110  *
111  * first field is nField = 1
112  */
113 DWORD WINAPI ParseFieldW(LPCWSTR src, DWORD nField, LPWSTR dst, DWORD len)
114 {
115         WARN("(%s,0x%08lx,%p,%ld) semi-stub.\n", debugstr_w(src), nField, dst, len);
116
117         if (!src || !src[0] || !dst || !len)
118           return 0;
119
120         /* skip n fields delimited by ',' */
121         while (nField > 1)
122         {
123           if (*src == 0x0) return FALSE;
124           if (*src++ == ',') nField--;
125         }
126
127         /* copy part till the next ',' to dst */
128         while ( *src != 0x0 && *src != ',' && (len--)>0 ) *(dst++) = *(src++);
129
130         /* finalize the string */
131         *dst = 0x0;
132
133         return TRUE;
134 }
135
136 /*************************************************************************
137  * ParseField                   [SHELL32.58]
138  */
139 DWORD WINAPI ParseFieldAW(LPCVOID src, DWORD nField, LPVOID dst, DWORD len)
140 {
141         if (SHELL_OsIsUnicode())
142           return ParseFieldW(src, nField, dst, len);
143         return ParseFieldA(src, nField, dst, len);
144 }
145
146 /*************************************************************************
147  * GetFileNameFromBrowse                        [SHELL32.63]
148  *
149  */
150 BOOL WINAPI GetFileNameFromBrowse(
151         HWND hwndOwner,
152         LPSTR lpstrFile,
153         DWORD nMaxFile,
154         LPCSTR lpstrInitialDir,
155         LPCSTR lpstrDefExt,
156         LPCSTR lpstrFilter,
157         LPCSTR lpstrTitle)
158 {
159     HMODULE hmodule;
160     FARPROC pGetOpenFileNameA;
161     OPENFILENAMEA ofn;
162     BOOL ret;
163
164     TRACE("%p, %s, %ld, %s, %s, %s, %s)\n",
165           hwndOwner, lpstrFile, nMaxFile, lpstrInitialDir, lpstrDefExt,
166           lpstrFilter, lpstrTitle);
167
168     hmodule = LoadLibraryA("comdlg32.dll");
169     if(!hmodule) return FALSE;
170     pGetOpenFileNameA = GetProcAddress(hmodule, "GetOpenFileNameA");
171     if(!pGetOpenFileNameA)
172     {
173         FreeLibrary(hmodule);
174         return FALSE;
175     }
176
177     memset(&ofn, 0, sizeof(ofn));
178
179     ofn.lStructSize = sizeof(ofn);
180     ofn.hwndOwner = hwndOwner;
181     ofn.lpstrFilter = lpstrFilter;
182     ofn.lpstrFile = lpstrFile;
183     ofn.nMaxFile = nMaxFile;
184     ofn.lpstrInitialDir = lpstrInitialDir;
185     ofn.lpstrTitle = lpstrTitle;
186     ofn.lpstrDefExt = lpstrDefExt;
187     ofn.Flags = OFN_EXPLORER | OFN_HIDEREADONLY | OFN_FILEMUSTEXIST;
188     ret = pGetOpenFileNameA(&ofn);
189
190     FreeLibrary(hmodule);
191     return ret;
192 }
193
194 /*************************************************************************
195  * SHGetSetSettings                             [SHELL32.68]
196  */
197 VOID WINAPI SHGetSetSettings(LPSHELLSTATE lpss, DWORD dwMask, BOOL bSet)
198 {
199   if(bSet)
200   {
201     FIXME("%p 0x%08lx TRUE\n", lpss, dwMask);
202   }
203   else
204   {
205     SHGetSettings((LPSHELLFLAGSTATE)lpss,dwMask);
206   }
207 }
208
209 /*************************************************************************
210  * SHGetSettings                                [SHELL32.@]
211  *
212  * NOTES
213  *  the registry path are for win98 (tested)
214  *  and possibly are the same in nt40
215  *
216  */
217 VOID WINAPI SHGetSettings(LPSHELLFLAGSTATE lpsfs, DWORD dwMask)
218 {
219         HKEY    hKey;
220         DWORD   dwData;
221         DWORD   dwDataSize = sizeof (DWORD);
222
223         TRACE("(%p 0x%08lx)\n",lpsfs,dwMask);
224
225         if (RegCreateKeyExA(HKEY_CURRENT_USER, "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
226                                  0, 0, 0, KEY_ALL_ACCESS, 0, &hKey, 0))
227           return;
228
229         if ( (SSF_SHOWEXTENSIONS & dwMask) && !RegQueryValueExA(hKey, "HideFileExt", 0, 0, (LPBYTE)&dwData, &dwDataSize))
230           lpsfs->fShowExtensions  = ((dwData == 0) ?  0 : 1);
231
232         if ( (SSF_SHOWINFOTIP & dwMask) && !RegQueryValueExA(hKey, "ShowInfoTip", 0, 0, (LPBYTE)&dwData, &dwDataSize))
233           lpsfs->fShowInfoTip  = ((dwData == 0) ?  0 : 1);
234
235         if ( (SSF_DONTPRETTYPATH & dwMask) && !RegQueryValueExA(hKey, "DontPrettyPath", 0, 0, (LPBYTE)&dwData, &dwDataSize))
236           lpsfs->fDontPrettyPath  = ((dwData == 0) ?  0 : 1);
237
238         if ( (SSF_HIDEICONS & dwMask) && !RegQueryValueExA(hKey, "HideIcons", 0, 0, (LPBYTE)&dwData, &dwDataSize))
239           lpsfs->fHideIcons  = ((dwData == 0) ?  0 : 1);
240
241         if ( (SSF_MAPNETDRVBUTTON & dwMask) && !RegQueryValueExA(hKey, "MapNetDrvBtn", 0, 0, (LPBYTE)&dwData, &dwDataSize))
242           lpsfs->fMapNetDrvBtn  = ((dwData == 0) ?  0 : 1);
243
244         if ( (SSF_SHOWATTRIBCOL & dwMask) && !RegQueryValueExA(hKey, "ShowAttribCol", 0, 0, (LPBYTE)&dwData, &dwDataSize))
245           lpsfs->fShowAttribCol  = ((dwData == 0) ?  0 : 1);
246
247         if (((SSF_SHOWALLOBJECTS | SSF_SHOWSYSFILES) & dwMask) && !RegQueryValueExA(hKey, "Hidden", 0, 0, (LPBYTE)&dwData, &dwDataSize))
248         { if (dwData == 0)
249           { if (SSF_SHOWALLOBJECTS & dwMask)    lpsfs->fShowAllObjects  = 0;
250             if (SSF_SHOWSYSFILES & dwMask)      lpsfs->fShowSysFiles  = 0;
251           }
252           else if (dwData == 1)
253           { if (SSF_SHOWALLOBJECTS & dwMask)    lpsfs->fShowAllObjects  = 1;
254             if (SSF_SHOWSYSFILES & dwMask)      lpsfs->fShowSysFiles  = 0;
255           }
256           else if (dwData == 2)
257           { if (SSF_SHOWALLOBJECTS & dwMask)    lpsfs->fShowAllObjects  = 0;
258             if (SSF_SHOWSYSFILES & dwMask)      lpsfs->fShowSysFiles  = 1;
259           }
260         }
261         RegCloseKey (hKey);
262
263         TRACE("-- 0x%04x\n", *(WORD*)lpsfs);
264 }
265
266 /*************************************************************************
267  * SHShellFolderView_Message                    [SHELL32.73]
268  *
269  * Send a message to an explorer cabinet window.
270  *
271  * PARAMS
272  *  hwndCabinet [I] The window containing the shellview to communicate with
273  *  dwMessage   [I] The SFVM message to send
274  *  dwParam     [I] Message parameter
275  *
276  * RETURNS
277  *  fixme.
278  *
279  * NOTES
280  *  Message SFVM_REARRANGE = 1
281  *
282  *    This message gets sent when a column gets clicked to instruct the
283  *    shell view to re-sort the item list. dwParam identifies the column
284  *    that was clicked.
285  */
286 int WINAPI SHShellFolderView_Message(
287         HWND hwndCabinet,
288         DWORD dwMessage,
289         DWORD dwParam)
290 {
291         FIXME("%p %08lx %08lx stub\n",hwndCabinet, dwMessage, dwParam);
292         return 0;
293 }
294
295 /*************************************************************************
296  * RegisterShellHook                            [SHELL32.181]
297  *
298  * Register a shell hook.
299  *
300  * PARAMS
301  *      hwnd   [I]  Window handle
302  *      dwType [I]  Type of hook.
303  *
304  * NOTES
305  *     Exported by ordinal
306  */
307 BOOL WINAPI RegisterShellHook(
308         HWND hWnd,
309         DWORD dwType)
310 {
311         FIXME("(%p,0x%08lx):stub.\n",hWnd, dwType);
312         return TRUE;
313 }
314
315 /*************************************************************************
316  * ShellMessageBoxW                             [SHELL32.182]
317  *
318  * See ShellMessageBoxA.
319  */
320 int WINAPIV ShellMessageBoxW(
321         HINSTANCE hInstance,
322         HWND hWnd,
323         LPCWSTR lpText,
324         LPCWSTR lpCaption,
325         UINT uType,
326         ...)
327 {
328         WCHAR   szText[100],szTitle[100];
329         LPCWSTR pszText = szText, pszTitle = szTitle, pszTemp;
330         va_list args;
331         int     ret;
332
333         va_start(args, uType);
334         /* wvsprintfA(buf,fmt, args); */
335
336         TRACE("(%08lx,%08lx,%p,%p,%08x)\n",
337         (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType);
338
339         if (!HIWORD(lpCaption))
340           LoadStringW(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle)/sizeof(szTitle[0]));
341         else
342           pszTitle = lpCaption;
343
344         if (!HIWORD(lpText))
345           LoadStringW(hInstance, (DWORD)lpText, szText, sizeof(szText)/sizeof(szText[0]));
346         else
347           pszText = lpText;
348
349         FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING,
350                        pszText, 0, 0, (LPWSTR)&pszTemp, 0, &args);
351
352         va_end(args);
353
354         ret = MessageBoxW(hWnd,pszTemp,pszTitle,uType);
355         LocalFree((HLOCAL)pszTemp);
356         return ret;
357 }
358
359 /*************************************************************************
360  * ShellMessageBoxA                             [SHELL32.183]
361  *
362  * Format and output an error message.
363  *
364  * PARAMS
365  *  hInstance [I] Instance handle of message creator
366  *  hWnd      [I] Window handle of message creator
367  *  lpText    [I] Resource Id of title or LPSTR
368  *  lpCaption [I] Resource Id of title or LPSTR
369  *  uType     [I] Type of error message
370  *
371  * RETURNS
372  *  A return value from MessageBoxA().
373  *
374  * NOTES
375  *     Exported by ordinal
376  */
377 int WINAPIV ShellMessageBoxA(
378         HINSTANCE hInstance,
379         HWND hWnd,
380         LPCSTR lpText,
381         LPCSTR lpCaption,
382         UINT uType,
383         ...)
384 {
385         char    szText[100],szTitle[100];
386         LPCSTR  pszText = szText, pszTitle = szTitle, pszTemp;
387         va_list args;
388         int     ret;
389
390         va_start(args, uType);
391         /* wvsprintfA(buf,fmt, args); */
392
393         TRACE("(%08lx,%08lx,%p,%p,%08x)\n",
394         (DWORD)hInstance,(DWORD)hWnd,lpText,lpCaption,uType);
395
396         if (!HIWORD(lpCaption))
397           LoadStringA(hInstance, (DWORD)lpCaption, szTitle, sizeof(szTitle));
398         else
399           pszTitle = lpCaption;
400
401         if (!HIWORD(lpText))
402           LoadStringA(hInstance, (DWORD)lpText, szText, sizeof(szText));
403         else
404           pszText = lpText;
405
406         FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_STRING,
407                        pszText, 0, 0, (LPSTR)&pszTemp, 0, &args);
408
409         va_end(args);
410
411         ret = MessageBoxA(hWnd,pszTemp,pszTitle,uType);
412         LocalFree((HLOCAL)pszTemp);
413         return ret;
414 }
415
416 /*************************************************************************
417  * SHRegisterDragDrop                           [SHELL32.86]
418  *
419  * NOTES
420  *     exported by ordinal
421  */
422 HRESULT WINAPI SHRegisterDragDrop(
423         HWND hWnd,
424         LPDROPTARGET pDropTarget)
425 {
426         FIXME("(%p,%p):stub.\n", hWnd, pDropTarget);
427         return RegisterDragDrop(hWnd, pDropTarget);
428 }
429
430 /*************************************************************************
431  * SHRevokeDragDrop                             [SHELL32.87]
432  *
433  * NOTES
434  *     exported by ordinal
435  */
436 HRESULT WINAPI SHRevokeDragDrop(HWND hWnd)
437 {
438     FIXME("(%p):stub.\n",hWnd);
439     return RevokeDragDrop(hWnd);
440 }
441
442 /*************************************************************************
443  * SHDoDragDrop                                 [SHELL32.88]
444  *
445  * NOTES
446  *     exported by ordinal
447  */
448 HRESULT WINAPI SHDoDragDrop(
449         HWND hWnd,
450         LPDATAOBJECT lpDataObject,
451         LPDROPSOURCE lpDropSource,
452         DWORD dwOKEffect,
453         LPDWORD pdwEffect)
454 {
455     FIXME("(%p %p %p 0x%08lx %p):stub.\n",
456     hWnd, lpDataObject, lpDropSource, dwOKEffect, pdwEffect);
457         return DoDragDrop(lpDataObject, lpDropSource, dwOKEffect, pdwEffect);
458 }
459
460 /*************************************************************************
461  * ArrangeWindows                               [SHELL32.184]
462  *
463  */
464 WORD WINAPI ArrangeWindows(
465         HWND hwndParent,
466         DWORD dwReserved,
467         LPCRECT lpRect,
468         WORD cKids,
469         CONST HWND * lpKids)
470 {
471     FIXME("(%p 0x%08lx %p 0x%04x %p):stub.\n",
472            hwndParent, dwReserved, lpRect, cKids, lpKids);
473     return 0;
474 }
475
476 /*************************************************************************
477  * SignalFileOpen                               [SHELL32.103]
478  *
479  * NOTES
480  *     exported by ordinal
481  */
482 DWORD WINAPI
483 SignalFileOpen (DWORD dwParam1)
484 {
485     FIXME("(0x%08lx):stub.\n", dwParam1);
486
487     return 0;
488 }
489
490 /*************************************************************************
491  * SHADD_get_policy - helper function for SHAddToRecentDocs
492  *
493  * PARAMETERS
494  *   policy    [IN]  policy name (null termed string) to find
495  *   type      [OUT] ptr to DWORD to receive type
496  *   buffer    [OUT] ptr to area to hold data retrieved
497  *   len       [IN/OUT] ptr to DWORD holding size of buffer and getting
498  *                      length filled
499  *
500  * RETURNS
501  *   result of the SHQueryValueEx call
502  */
503 static INT SHADD_get_policy(LPSTR policy, LPDWORD type, LPVOID buffer, LPDWORD len)
504 {
505     HKEY Policy_basekey;
506     INT ret;
507
508     /* Get the key for the policies location in the registry
509      */
510     if (RegOpenKeyExA(HKEY_LOCAL_MACHINE,
511                       "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
512                       0, KEY_READ, &Policy_basekey)) {
513
514         if (RegOpenKeyExA(HKEY_CURRENT_USER,
515                           "Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
516                           0, KEY_READ, &Policy_basekey)) {
517             TRACE("No Explorer Policies location exists. Policy wanted=%s\n",
518                   policy);
519             *len = 0;
520             return ERROR_FILE_NOT_FOUND;
521         }
522     }
523
524     /* Retrieve the data if it exists
525      */
526     ret = SHQueryValueExA(Policy_basekey, policy, 0, type, buffer, len);
527     RegCloseKey(Policy_basekey);
528     return ret;
529 }
530
531
532 /*************************************************************************
533  * SHADD_compare_mru - helper function for SHAddToRecentDocs
534  *
535  * PARAMETERS
536  *   data1     [IN] data being looked for
537  *   data2     [IN] data in MRU
538  *   cbdata    [IN] length from FindMRUData call (not used)
539  *
540  * RETURNS
541  *   position within MRU list that data was added.
542  */
543 static INT CALLBACK SHADD_compare_mru(LPCVOID data1, LPCVOID data2, DWORD cbData)
544 {
545     return lstrcmpiA(data1, data2);
546 }
547
548 /*************************************************************************
549  * SHADD_create_add_mru_data - helper function for SHAddToRecentDocs
550  *
551  * PARAMETERS
552  *   mruhandle    [IN] handle for created MRU list
553  *   doc_name     [IN] null termed pure doc name
554  *   new_lnk_name [IN] null termed path and file name for .lnk file
555  *   buffer       [IN/OUT] 2048 byte area to consturct MRU data
556  *   len          [OUT] ptr to int to receive space used in buffer
557  *
558  * RETURNS
559  *   position within MRU list that data was added.
560  */
561 static INT SHADD_create_add_mru_data(HANDLE mruhandle, LPSTR doc_name, LPSTR new_lnk_name,
562                                      LPSTR buffer, INT *len)
563 {
564     LPSTR ptr;
565     INT wlen;
566
567     /*FIXME: Document:
568      *  RecentDocs MRU data structure seems to be:
569      *    +0h   document file name w/ terminating 0h
570      *    +nh   short int w/ size of remaining
571      *    +n+2h 02h 30h, or 01h 30h, or 00h 30h  -  unknown
572      *    +n+4h 10 bytes zeros  -   unknown
573      *    +n+eh shortcut file name w/ terminating 0h
574      *    +n+e+nh 3 zero bytes  -  unknown
575      */
576
577     /* Create the MRU data structure for "RecentDocs"
578          */
579     ptr = buffer;
580     lstrcpyA(ptr, doc_name);
581     ptr += (lstrlenA(buffer) + 1);
582     wlen= lstrlenA(new_lnk_name) + 1 + 12;
583     *((short int*)ptr) = wlen;
584     ptr += 2;   /* step past the length */
585     *(ptr++) = 0x30;  /* unknown reason */
586     *(ptr++) = 0;     /* unknown, but can be 0x00, 0x01, 0x02 */
587     memset(ptr, 0, 10);
588     ptr += 10;
589     lstrcpyA(ptr, new_lnk_name);
590     ptr += (lstrlenA(new_lnk_name) + 1);
591     memset(ptr, 0, 3);
592     ptr += 3;
593     *len = ptr - buffer;
594
595     /* Add the new entry into the MRU list
596      */
597     return AddMRUData(mruhandle, (LPCVOID)buffer, *len);
598 }
599
600 /*************************************************************************
601  * SHAddToRecentDocs                            [SHELL32.@]
602  *
603  * PARAMETERS
604  *   uFlags  [IN] SHARD_PATH or SHARD_PIDL
605  *   pv      [IN] string or pidl, NULL clears the list
606  *
607  * NOTES
608  *     exported by name
609  */
610 void WINAPI SHAddToRecentDocs (UINT uFlags,LPCVOID pv)
611 {
612 /* If list is a string list lpfnCompare has the following prototype
613  * int CALLBACK MRUCompareString(LPCSTR s1, LPCSTR s2)
614  * for binary lists the prototype is
615  * int CALLBACK MRUCompareBinary(LPCVOID data1, LPCVOID data2, DWORD cbData)
616  * where cbData is the no. of bytes to compare.
617  * Need to check what return value means identical - 0?
618  */
619
620
621     UINT olderrormode;
622     HKEY HCUbasekey;
623     CHAR doc_name[MAX_PATH];
624     CHAR link_dir[MAX_PATH];
625     CHAR new_lnk_filepath[MAX_PATH];
626     CHAR new_lnk_name[MAX_PATH];
627     IMalloc *ppM;
628     LPITEMIDLIST pidl;
629     HWND hwnd = 0;       /* FIXME:  get real window handle */
630     INT ret;
631     DWORD data[64], datalen, type;
632
633     /*FIXME: Document:
634      *  RecentDocs MRU data structure seems to be:
635      *    +0h   document file name w/ terminating 0h
636      *    +nh   short int w/ size of remaining
637      *    +n+2h 02h 30h, or 01h 30h, or 00h 30h  -  unknown
638      *    +n+4h 10 bytes zeros  -   unknown
639      *    +n+eh shortcut file name w/ terminating 0h
640      *    +n+e+nh 3 zero bytes  -  unknown
641      */
642
643     /* See if we need to do anything.
644      */
645     datalen = 64;
646     ret=SHADD_get_policy( "NoRecentDocsHistory", &type, &data, &datalen);
647     if ((ret > 0) && (ret != ERROR_FILE_NOT_FOUND)) {
648         ERR("Error %d getting policy \"NoRecentDocsHistory\"\n", ret);
649         return;
650     }
651     if (ret == ERROR_SUCCESS) {
652         if (!( (type == REG_DWORD) ||
653                ((type == REG_BINARY) && (datalen == 4)) )) {
654             ERR("Error policy data for \"NoRecentDocsHistory\" not formated correctly, type=%ld, len=%ld\n",
655                 type, datalen);
656             return;
657         }
658
659         TRACE("policy value for NoRecentDocsHistory = %08lx\n", data[0]);
660         /* now test the actual policy value */
661         if ( data[0] != 0)
662             return;
663     }
664
665     /* Open key to where the necessary info is
666      */
667     /* FIXME: This should be done during DLL PROCESS_ATTACH (or THREAD_ATTACH)
668      *        and the close should be done during the _DETACH. The resulting
669      *        key is stored in the DLL global data.
670      */
671     if (RegCreateKeyExA(HKEY_CURRENT_USER,
672                         "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
673                         0, 0, 0, KEY_READ, 0, &HCUbasekey, 0)) {
674         ERR("Failed to create 'Software\\Microsoft\\Windows\\CurrentVersion\\Explorer'\n");
675         return;
676     }
677
678     /* Get path to user's "Recent" directory
679      */
680     if(SUCCEEDED(SHGetMalloc(&ppM))) {
681         if (SUCCEEDED(SHGetSpecialFolderLocation(hwnd, CSIDL_RECENT,
682                                                  &pidl))) {
683             SHGetPathFromIDListA(pidl, link_dir);
684             IMalloc_Free(ppM, pidl);
685         }
686         else {
687             /* serious issues */
688             link_dir[0] = 0;
689             ERR("serious issues 1\n");
690         }
691         IMalloc_Release(ppM);
692     }
693     else {
694         /* serious issues */
695         link_dir[0] = 0;
696         ERR("serious issues 2\n");
697     }
698     TRACE("Users Recent dir %s\n", link_dir);
699
700     /* If no input, then go clear the lists */
701     if (!pv) {
702         /* clear user's Recent dir
703          */
704
705         /* FIXME: delete all files in "link_dir"
706          *
707          * while( more files ) {
708          *    lstrcpyA(old_lnk_name, link_dir);
709          *    PathAppendA(old_lnk_name, filenam);
710          *    DeleteFileA(old_lnk_name);
711          * }
712          */
713         FIXME("should delete all files in %s\\ \n", link_dir);
714
715         /* clear MRU list
716          */
717         /* MS Bug ?? v4.72.3612.1700 of shell32 does the delete against
718          *  HKEY_LOCAL_MACHINE version of ...CurrentVersion\Explorer
719          *  and naturally it fails w/ rc=2. It should do it against
720          *  HKEY_CURRENT_USER which is where it is stored, and where
721          *  the MRU routines expect it!!!!
722          */
723         RegDeleteKeyA(HCUbasekey, "RecentDocs");
724         RegCloseKey(HCUbasekey);
725         return;
726     }
727
728     /* Have data to add, the jobs to be done:
729      *   1. Add document to MRU list in registry "HKCU\Software\
730      *      Microsoft\Windows\CurrentVersion\Explorer\RecentDocs".
731      *   2. Add shortcut to document in the user's Recent directory
732      *      (CSIDL_RECENT).
733      *   3. Add shortcut to Start menu's Documents submenu.
734      */
735
736     /* Get the pure document name from the input
737      */
738     if (uFlags & SHARD_PIDL) {
739         SHGetPathFromIDListA((LPCITEMIDLIST) pv, doc_name);
740     }
741     else {
742         lstrcpyA(doc_name, (LPSTR) pv);
743     }
744     TRACE("full document name %s\n", doc_name);
745     PathStripPathA(doc_name);
746     TRACE("stripped document name %s\n", doc_name);
747
748
749     /* ***  JOB 1: Update registry for ...\Explorer\RecentDocs list  *** */
750
751     {  /* on input needs:
752         *      doc_name    -  pure file-spec, no path
753         *      link_dir    -  path to the user's Recent directory
754         *      HCUbasekey  -  key of ...Windows\CurrentVersion\Explorer" node
755         * creates:
756         *      new_lnk_name-  pure file-spec, no path for new .lnk file
757         *      new_lnk_filepath
758         *                  -  path and file name of new .lnk file
759         */
760         CREATEMRULISTA mymru;
761         HANDLE mruhandle;
762         INT len, pos, bufused, err;
763         INT i;
764         DWORD attr;
765         CHAR buffer[2048];
766         CHAR *ptr;
767         CHAR old_lnk_name[MAX_PATH];
768         short int slen;
769
770         mymru.cbSize = sizeof(CREATEMRULISTA);
771         mymru.nMaxItems = 15;
772         mymru.dwFlags = MRUF_BINARY_LIST | MRUF_DELAYED_SAVE;
773         mymru.hKey = HCUbasekey;
774         mymru.lpszSubKey = "RecentDocs";
775         mymru.lpfnCompare = &SHADD_compare_mru;
776         mruhandle = CreateMRUListA(&mymru);
777         if (!mruhandle) {
778             /* MRU failed */
779             ERR("MRU processing failed, handle zero\n");
780             RegCloseKey(HCUbasekey);
781             return;
782         }
783         len = lstrlenA(doc_name);
784         pos = FindMRUData(mruhandle, doc_name, len, 0);
785
786         /* Now get the MRU entry that will be replaced
787          * and delete the .lnk file for it
788          */
789         if ((bufused = EnumMRUListA(mruhandle, (pos == -1) ? 14 : pos,
790                                     buffer, 2048)) != -1) {
791             ptr = buffer;
792             ptr += (lstrlenA(buffer) + 1);
793             slen = *((short int*)ptr);
794             ptr += 2;  /* skip the length area */
795             if (bufused >= slen + (ptr-buffer)) {
796                 /* buffer size looks good */
797                 ptr += 12; /* get to string */
798                 len = bufused - (ptr-buffer);  /* get length of buf remaining */
799                 if ((lstrlenA(ptr) > 0) && (lstrlenA(ptr) <= len-1)) {
800                     /* appears to be good string */
801                     lstrcpyA(old_lnk_name, link_dir);
802                     PathAppendA(old_lnk_name, ptr);
803                     if (!DeleteFileA(old_lnk_name)) {
804                         if ((attr = GetFileAttributesA(old_lnk_name)) == INVALID_FILE_ATTRIBUTES) {
805                             if ((err = GetLastError()) != ERROR_FILE_NOT_FOUND) {
806                                 ERR("Delete for %s failed, err=%d, attr=%08lx\n",
807                                     old_lnk_name, err, attr);
808                             }
809                             else {
810                                 TRACE("old .lnk file %s did not exist\n",
811                                       old_lnk_name);
812                             }
813                         }
814                         else {
815                             ERR("Delete for %s failed, attr=%08lx\n",
816                                 old_lnk_name, attr);
817                         }
818                     }
819                     else {
820                         TRACE("deleted old .lnk file %s\n", old_lnk_name);
821                     }
822                 }
823             }
824         }
825
826         /* Create usable .lnk file name for the "Recent" directory
827          */
828         wsprintfA(new_lnk_name, "%s.lnk", doc_name);
829         lstrcpyA(new_lnk_filepath, link_dir);
830         PathAppendA(new_lnk_filepath, new_lnk_name);
831         i = 1;
832         olderrormode = SetErrorMode(SEM_FAILCRITICALERRORS);
833         while (GetFileAttributesA(new_lnk_filepath) != INVALID_FILE_ATTRIBUTES) {
834             i++;
835             wsprintfA(new_lnk_name, "%s (%u).lnk", doc_name, i);
836             lstrcpyA(new_lnk_filepath, link_dir);
837             PathAppendA(new_lnk_filepath, new_lnk_name);
838         }
839         SetErrorMode(olderrormode);
840         TRACE("new shortcut will be %s\n", new_lnk_filepath);
841
842         /* Now add the new MRU entry and data
843          */
844         pos = SHADD_create_add_mru_data(mruhandle, doc_name, new_lnk_name,
845                                         buffer, &len);
846         FreeMRUList(mruhandle);
847         TRACE("Updated MRU list, new doc is position %d\n", pos);
848     }
849
850     /* ***  JOB 2: Create shortcut in user's "Recent" directory  *** */
851
852     {  /* on input needs:
853         *      doc_name    -  pure file-spec, no path
854         *      new_lnk_filepath
855         *                  -  path and file name of new .lnk file
856         *      uFlags[in]  -  flags on call to SHAddToRecentDocs
857         *      pv[in]      -  document path/pidl on call to SHAddToRecentDocs
858         */
859         IShellLinkA *psl = NULL;
860         IPersistFile *pPf = NULL;
861         HRESULT hres;
862         CHAR desc[MAX_PATH];
863         WCHAR widelink[MAX_PATH];
864
865         CoInitialize(0);
866
867         hres = CoCreateInstance( &CLSID_ShellLink,
868                                  NULL,
869                                  CLSCTX_INPROC_SERVER,
870                                  &IID_IShellLinkA,
871                                  (LPVOID )&psl);
872         if(SUCCEEDED(hres)) {
873
874             hres = IShellLinkA_QueryInterface(psl, &IID_IPersistFile,
875                                              (LPVOID *)&pPf);
876             if(FAILED(hres)) {
877                 /* bombed */
878                 ERR("failed QueryInterface for IPersistFile %08lx\n", hres);
879                 goto fail;
880             }
881
882             /* Set the document path or pidl */
883             if (uFlags & SHARD_PIDL) {
884                 hres = IShellLinkA_SetIDList(psl, (LPCITEMIDLIST) pv);
885             } else {
886                 hres = IShellLinkA_SetPath(psl, (LPCSTR) pv);
887             }
888             if(FAILED(hres)) {
889                 /* bombed */
890                 ERR("failed Set{IDList|Path} %08lx\n", hres);
891                 goto fail;
892             }
893
894             lstrcpyA(desc, "Shortcut to ");
895             lstrcatA(desc, doc_name);
896             hres = IShellLinkA_SetDescription(psl, desc);
897             if(FAILED(hres)) {
898                 /* bombed */
899                 ERR("failed SetDescription %08lx\n", hres);
900                 goto fail;
901             }
902
903             MultiByteToWideChar(CP_ACP, 0, new_lnk_filepath, -1,
904                                 widelink, MAX_PATH);
905             /* create the short cut */
906             hres = IPersistFile_Save(pPf, widelink, TRUE);
907             if(FAILED(hres)) {
908                 /* bombed */
909                 ERR("failed IPersistFile::Save %08lx\n", hres);
910                 IPersistFile_Release(pPf);
911                 IShellLinkA_Release(psl);
912                 goto fail;
913             }
914             hres = IPersistFile_SaveCompleted(pPf, widelink);
915             IPersistFile_Release(pPf);
916             IShellLinkA_Release(psl);
917             TRACE("shortcut %s has been created, result=%08lx\n",
918                   new_lnk_filepath, hres);
919         }
920         else {
921             ERR("CoCreateInstance failed, hres=%08lx\n", hres);
922         }
923     }
924
925  fail:
926     CoUninitialize();
927
928     /* all done */
929     RegCloseKey(HCUbasekey);
930     return;
931 }
932
933 /*************************************************************************
934  * SHCreateShellFolderViewEx                    [SHELL32.174]
935  *
936  * NOTES
937  *  see IShellFolder::CreateViewObject
938  */
939 HRESULT WINAPI SHCreateShellFolderViewEx(
940         LPCSHELLFOLDERVIEWINFO psvcbi, /* [in] shelltemplate struct */
941         LPSHELLVIEW* ppv)              /* [out] IShellView pointer */
942 {
943         IShellView * psf;
944         HRESULT hRes;
945
946         TRACE("sf=%p pidl=%p cb=%p mode=0x%08x parm=0x%08lx\n",
947           psvcbi->pshf, psvcbi->pidlFolder, psvcbi->lpfnCallback,
948           psvcbi->uViewMode, psvcbi->dwUser);
949
950         psf = IShellView_Constructor(psvcbi->pshf);
951
952         if (!psf)
953           return E_OUTOFMEMORY;
954
955         IShellView_AddRef(psf);
956         hRes = IShellView_QueryInterface(psf, &IID_IShellView, (LPVOID *)ppv);
957         IShellView_Release(psf);
958
959         return hRes;
960 }
961 /*************************************************************************
962  *  SHWinHelp                                   [SHELL32.127]
963  *
964  */
965 HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z)
966 {       FIXME("0x%08lx 0x%08lx 0x%08lx 0x%08lx stub\n",v,w,x,z);
967         return 0;
968 }
969 /*************************************************************************
970  *  SHRunControlPanel [SHELL32.161]
971  *
972  */
973 HRESULT WINAPI SHRunControlPanel (DWORD x, DWORD z)
974 {       FIXME("0x%08lx 0x%08lx stub\n",x,z);
975         return 0;
976 }
977
978 static LPUNKNOWN SHELL32_IExplorerInterface=0;
979 /*************************************************************************
980  * SHSetInstanceExplorer                        [SHELL32.176]
981  *
982  * NOTES
983  *  Sets the interface
984  */
985 HRESULT WINAPI SHSetInstanceExplorer (LPUNKNOWN lpUnknown)
986 {       TRACE("%p\n", lpUnknown);
987         SHELL32_IExplorerInterface = lpUnknown;
988         return (HRESULT) lpUnknown;
989 }
990 /*************************************************************************
991  * SHGetInstanceExplorer                        [SHELL32.@]
992  *
993  * NOTES
994  *  gets the interface pointer of the explorer and a reference
995  */
996 HRESULT WINAPI SHGetInstanceExplorer (LPUNKNOWN * lpUnknown)
997 {       TRACE("%p\n", lpUnknown);
998
999         *lpUnknown = SHELL32_IExplorerInterface;
1000
1001         if (!SHELL32_IExplorerInterface)
1002           return E_FAIL;
1003
1004         IUnknown_AddRef(SHELL32_IExplorerInterface);
1005         return NOERROR;
1006 }
1007 /*************************************************************************
1008  * SHFreeUnusedLibraries                        [SHELL32.123]
1009  *
1010  * NOTES
1011  *  exported by name
1012  */
1013 void WINAPI SHFreeUnusedLibraries (void)
1014 {
1015         FIXME("stub\n");
1016 }
1017 /*************************************************************************
1018  * DAD_AutoScroll                               [SHELL32.129]
1019  *
1020  */
1021 BOOL WINAPI DAD_AutoScroll(HWND hwnd, AUTO_SCROLL_DATA *samples, LPPOINT pt)
1022 {
1023     FIXME("hwnd = %p %p %p\n",hwnd,samples,pt);
1024     return 0;
1025 }
1026 /*************************************************************************
1027  * DAD_DragEnter                                [SHELL32.130]
1028  *
1029  */
1030 BOOL WINAPI DAD_DragEnter(HWND hwnd)
1031 {
1032     FIXME("hwnd = %p\n",hwnd);
1033     return FALSE;
1034 }
1035 /*************************************************************************
1036  * DAD_DragEnterEx                              [SHELL32.131]
1037  *
1038  */
1039 BOOL WINAPI DAD_DragEnterEx(HWND hwnd, POINT p)
1040 {
1041     FIXME("hwnd = %p (%ld,%ld)\n",hwnd,p.x,p.y);
1042     return FALSE;
1043 }
1044 /*************************************************************************
1045  * DAD_DragMove                         [SHELL32.134]
1046  *
1047  */
1048 BOOL WINAPI DAD_DragMove(POINT p)
1049 {
1050     FIXME("(%ld,%ld)\n",p.x,p.y);
1051     return FALSE;
1052 }
1053 /*************************************************************************
1054  * DAD_DragLeave                                [SHELL32.132]
1055  *
1056  */
1057 BOOL WINAPI DAD_DragLeave(VOID)
1058 {
1059     FIXME("\n");
1060     return FALSE;
1061 }
1062 /*************************************************************************
1063  * DAD_SetDragImage                             [SHELL32.136]
1064  *
1065  * NOTES
1066  *  exported by name
1067  */
1068 BOOL WINAPI DAD_SetDragImage(
1069         HIMAGELIST himlTrack,
1070         LPPOINT lppt)
1071 {
1072         FIXME("%p %p stub\n",himlTrack, lppt);
1073   return 0;
1074 }
1075 /*************************************************************************
1076  * DAD_ShowDragImage                            [SHELL32.137]
1077  *
1078  * NOTES
1079  *  exported by name
1080  */
1081 BOOL WINAPI DAD_ShowDragImage(BOOL bShow)
1082 {
1083         FIXME("0x%08x stub\n",bShow);
1084         return 0;
1085 }
1086
1087 static const WCHAR szwCabLocation[] = {
1088   'S','o','f','t','w','a','r','e','\\',
1089   'M','i','c','r','o','s','o','f','t','\\',
1090   'W','i','n','d','o','w','s','\\',
1091   'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
1092   'E','x','p','l','o','r','e','r','\\',
1093   'C','a','b','i','n','e','t','S','t','a','t','e',0
1094 };
1095
1096 static const WCHAR szwSettings[] = { 'S','e','t','t','i','n','g','s',0 };
1097
1098 /*************************************************************************
1099  * ReadCabinetState                             [SHELL32.651] NT 4.0
1100  *
1101  */
1102 BOOL WINAPI ReadCabinetState(CABINETSTATE *cs, int length)
1103 {
1104         HKEY hkey = 0;
1105         DWORD type, r;
1106
1107         TRACE("%p %d \n",cs,length);
1108
1109         if( (cs == NULL) || (length < (int)sizeof(*cs))  )
1110                 return FALSE;
1111
1112         r = RegOpenKeyW( HKEY_CURRENT_USER, szwCabLocation, &hkey );
1113         if( r == ERROR_SUCCESS )
1114         {
1115                 type = REG_BINARY;
1116                 r = RegQueryValueExW( hkey, szwSettings, 
1117                         NULL, &type, (LPBYTE)cs, (LPDWORD)&length );
1118                 RegCloseKey( hkey );
1119                         
1120         }
1121
1122         /* if we can't read from the registry, create default values */
1123         if ( (r != ERROR_SUCCESS) || (cs->cLength < sizeof(*cs)) ||
1124                 (cs->cLength != length) )
1125         {
1126                 ERR("Initializing shell cabinet settings\n");
1127                 memset(cs, 0, sizeof(*cs));
1128                 cs->cLength          = sizeof(*cs);
1129                 cs->nVersion         = 2;
1130                 cs->fFullPathTitle   = FALSE;
1131                 cs->fSaveLocalView   = TRUE;
1132                 cs->fNotShell        = FALSE;
1133                 cs->fSimpleDefault   = TRUE;
1134                 cs->fDontShowDescBar = FALSE;
1135                 cs->fNewWindowMode   = FALSE;
1136                 cs->fShowCompColor   = FALSE;
1137                 cs->fDontPrettyNames = FALSE;
1138                 cs->fAdminsCreateCommonGroups = TRUE;
1139                 cs->fMenuEnumFilter  = 96;
1140         }
1141         
1142         return TRUE;
1143 }
1144
1145 /*************************************************************************
1146  * WriteCabinetState                            [SHELL32.652] NT 4.0
1147  *
1148  */
1149 BOOL WINAPI WriteCabinetState(CABINETSTATE *cs)
1150 {
1151         DWORD r;
1152         HKEY hkey = 0;
1153
1154         TRACE("%p\n",cs);
1155
1156         if( cs == NULL )
1157                 return FALSE;
1158
1159         r = RegCreateKeyExW( HKEY_CURRENT_USER, szwCabLocation, 0,
1160                  NULL, 0, KEY_ALL_ACCESS, NULL, &hkey, NULL);
1161         if( r == ERROR_SUCCESS )
1162         {
1163                 r = RegSetValueExW( hkey, szwSettings, 0, 
1164                         REG_BINARY, (LPBYTE) cs, cs->cLength);
1165
1166                 RegCloseKey( hkey );
1167         }
1168
1169         return (r==ERROR_SUCCESS);
1170 }
1171
1172 /*************************************************************************
1173  * FileIconInit                                 [SHELL32.660]
1174  *
1175  */
1176 BOOL WINAPI FileIconInit(BOOL bFullInit)
1177 {       FIXME("(%s)\n", bFullInit ? "true" : "false");
1178         return 0;
1179 }
1180 /*************************************************************************
1181  * IsUserAdmin                                  [SHELL32.680] NT 4.0
1182  *
1183  */
1184 HRESULT WINAPI IsUserAdmin(void)
1185 {       FIXME("stub\n");
1186         return TRUE;
1187 }
1188
1189 /*************************************************************************
1190  * SHAllocShared                                [SHELL32.520]
1191  *
1192  * NOTES
1193  *  parameter1 is return value from HeapAlloc
1194  *  parameter2 is equal to the size allocated with HeapAlloc
1195  *  parameter3 is return value from GetCurrentProcessId
1196  *
1197  *  the return value is posted as lParam with 0x402 (WM_USER+2) to somewhere
1198  *  WM_USER+2 could be the undocumented CWM_SETPATH
1199  *  the allocated memory contains a pidl
1200  */
1201 HGLOBAL WINAPI SHAllocShared(LPVOID psrc, DWORD size, DWORD procID)
1202 {       HGLOBAL hmem;
1203         LPVOID pmem;
1204
1205         TRACE("ptr=%p size=0x%04lx procID=0x%04lx\n",psrc,size,procID);
1206         hmem = GlobalAlloc(GMEM_FIXED, size);
1207         if (!hmem)
1208           return 0;
1209
1210         pmem =  GlobalLock (hmem);
1211
1212         if (! pmem)
1213           return 0;
1214
1215         memcpy (pmem, psrc, size);
1216         GlobalUnlock(hmem);
1217         return hmem;
1218 }
1219 /*************************************************************************
1220  * SHLockShared                                 [SHELL32.521]
1221  *
1222  * NOTES
1223  *  parameter1 is return value from SHAllocShared
1224  *  parameter2 is return value from GetCurrentProcessId
1225  *  the receiver of (WM_USER+2) tries to lock the HANDLE (?)
1226  *  the return value seems to be a memory address
1227  */
1228 LPVOID WINAPI SHLockShared(HANDLE hmem, DWORD procID)
1229 {       TRACE("handle=%p procID=0x%04lx\n",hmem,procID);
1230         return GlobalLock(hmem);
1231 }
1232 /*************************************************************************
1233  * SHUnlockShared                               [SHELL32.522]
1234  *
1235  * NOTES
1236  *  parameter1 is return value from SHLockShared
1237  */
1238 BOOL WINAPI SHUnlockShared(LPVOID pv)
1239 {
1240         TRACE("%p\n",pv);
1241         return GlobalUnlock((HANDLE)pv);
1242 }
1243 /*************************************************************************
1244  * SHFreeShared                                 [SHELL32.523]
1245  *
1246  * NOTES
1247  *  parameter1 is return value from SHAllocShared
1248  *  parameter2 is return value from GetCurrentProcessId
1249  */
1250 BOOL WINAPI SHFreeShared(
1251         HANDLE hMem,
1252         DWORD pid)
1253 {
1254         TRACE("handle=%p 0x%04lx\n",hMem,pid);
1255         return (BOOL)GlobalFree(hMem);
1256 }
1257
1258 /*************************************************************************
1259  * SetAppStartingCursor                         [SHELL32.99]
1260  */
1261 HRESULT WINAPI SetAppStartingCursor(HWND u, DWORD v)
1262 {       FIXME("hwnd=%p 0x%04lx stub\n",u,v );
1263         return 0;
1264 }
1265 /*************************************************************************
1266  * SHLoadOLE                                    [SHELL32.151]
1267  *
1268  */
1269 HRESULT WINAPI SHLoadOLE(DWORD u)
1270 {       FIXME("0x%04lx stub\n",u);
1271         return S_OK;
1272 }
1273 /*************************************************************************
1274  * DriveType                                    [SHELL32.64]
1275  *
1276  */
1277 HRESULT WINAPI DriveType(DWORD u)
1278 {       FIXME("0x%04lx stub\n",u);
1279         return 0;
1280 }
1281 /*************************************************************************
1282  * SHAbortInvokeCommand                         [SHELL32.198]
1283  *
1284  */
1285 HRESULT WINAPI SHAbortInvokeCommand(void)
1286 {       FIXME("stub\n");
1287         return 1;
1288 }
1289 /*************************************************************************
1290  * SHOutOfMemoryMessageBox                      [SHELL32.126]
1291  *
1292  */
1293 int WINAPI SHOutOfMemoryMessageBox(
1294         HWND hwndOwner,
1295         LPCSTR lpCaption,
1296         UINT uType)
1297 {
1298         FIXME("%p %s 0x%08x stub\n",hwndOwner, lpCaption, uType);
1299         return 0;
1300 }
1301 /*************************************************************************
1302  * SHFlushClipboard                             [SHELL32.121]
1303  *
1304  */
1305 HRESULT WINAPI SHFlushClipboard(void)
1306 {       FIXME("stub\n");
1307         return 1;
1308 }
1309
1310 /*************************************************************************
1311  * SHWaitForFileToOpen                          [SHELL32.97]
1312  *
1313  */
1314 BOOL WINAPI SHWaitForFileToOpen(
1315         LPCITEMIDLIST pidl,
1316         DWORD dwFlags,
1317         DWORD dwTimeout)
1318 {
1319         FIXME("%p 0x%08lx 0x%08lx stub\n", pidl, dwFlags, dwTimeout);
1320         return 0;
1321 }
1322
1323 /************************************************************************
1324  *      @                               [SHELL32.654]
1325  *
1326  * NOTES: first parameter seems to be a pointer (same as passed to WriteCabinetState)
1327  * second one could be a size (0x0c). The size is the same as the structure saved to
1328  * HCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState
1329  * I'm (js) guessing: this one is just ReadCabinetState ;-)
1330  */
1331 HRESULT WINAPI shell32_654 (CABINETSTATE *cs, int length)
1332 {
1333         TRACE("%p %d\n",cs,length);
1334         return ReadCabinetState(cs,length);
1335 }
1336
1337 /************************************************************************
1338  *      RLBuildListOfPaths                      [SHELL32.146]
1339  *
1340  * NOTES
1341  *   builds a DPA
1342  */
1343 DWORD WINAPI RLBuildListOfPaths (void)
1344 {       FIXME("stub\n");
1345         return 0;
1346 }
1347 /************************************************************************
1348  *      SHValidateUNC                           [SHELL32.173]
1349  *
1350  */
1351 HRESULT WINAPI SHValidateUNC (DWORD x, DWORD y, DWORD z)
1352 {
1353         FIXME("0x%08lx 0x%08lx 0x%08lx stub\n",x,y,z);
1354         return 0;
1355 }
1356
1357 /************************************************************************
1358  *      DoEnvironmentSubstA                     [SHELL32.@]
1359  *
1360  */
1361 HRESULT WINAPI DoEnvironmentSubstA(LPSTR x, LPSTR y)
1362 {
1363         FIXME("(%s, %s) stub\n", debugstr_a(x), debugstr_a(y));
1364         return 0;
1365 }
1366
1367 /************************************************************************
1368  *      DoEnvironmentSubstW                     [SHELL32.@]
1369  *
1370  */
1371 HRESULT WINAPI DoEnvironmentSubstW(LPWSTR x, LPWSTR y)
1372 {
1373         FIXME("(%s, %s): stub\n", debugstr_w(x), debugstr_w(y));
1374         return 0;
1375 }
1376
1377 /************************************************************************
1378  *      DoEnvironmentSubst                      [SHELL32.53]
1379  *
1380  */
1381 HRESULT WINAPI DoEnvironmentSubstAW(LPVOID x, LPVOID y)
1382 {
1383         if (SHELL_OsIsUnicode())
1384           return DoEnvironmentSubstW(x, y);
1385         return DoEnvironmentSubstA(x, y);
1386 }
1387
1388 /*************************************************************************
1389  *      @                             [SHELL32.243]
1390  *
1391  * Win98+ by-ordinal routine.  In Win98 this routine returns zero and
1392  * does nothing else.  Possibly this does something in NT or SHELL32 5.0?
1393  *
1394  */
1395
1396 BOOL WINAPI shell32_243(DWORD a, DWORD b)
1397 {
1398   return FALSE;
1399 }
1400
1401 /*************************************************************************
1402  *      @       [SHELL32.714]
1403  */
1404 DWORD WINAPI SHELL32_714(LPVOID x)
1405 {
1406         FIXME("(%s)stub\n", debugstr_w(x));
1407         return 0;
1408 }
1409
1410 /*************************************************************************
1411  *      SHAddFromPropSheetExtArray      [SHELL32.167]
1412  */
1413 DWORD WINAPI SHAddFromPropSheetExtArray(DWORD a, DWORD b, DWORD c)
1414 {
1415         FIXME("(%08lx,%08lx,%08lx)stub\n", a, b, c);
1416         return 0;
1417 }
1418
1419 /*************************************************************************
1420  *      SHCreatePropSheetExtArray       [SHELL32.168]
1421  */
1422 DWORD WINAPI SHCreatePropSheetExtArray(DWORD a, LPCSTR b, DWORD c)
1423 {
1424         FIXME("(%08lx,%s,%08lx)stub\n", a, debugstr_a(b), c);
1425         return 0;
1426 }
1427
1428 /*************************************************************************
1429  *      SHReplaceFromPropSheetExtArray  [SHELL32.170]
1430  */
1431 DWORD WINAPI SHReplaceFromPropSheetExtArray(DWORD a, DWORD b, DWORD c, DWORD d)
1432 {
1433         FIXME("(%08lx,%08lx,%08lx,%08lx)stub\n", a, b, c, d);
1434         return 0;
1435 }
1436
1437 /*************************************************************************
1438  *      SHDestroyPropSheetExtArray      [SHELL32.169]
1439  */
1440 DWORD WINAPI SHDestroyPropSheetExtArray(DWORD a)
1441 {
1442         FIXME("(%08lx)stub\n", a);
1443         return 0;
1444 }
1445
1446 /*************************************************************************
1447  *      CIDLData_CreateFromIDArray      [SHELL32.83]
1448  *
1449  *  Create IDataObject from PIDLs??
1450  */
1451 HRESULT WINAPI CIDLData_CreateFromIDArray(
1452         LPCITEMIDLIST pidlFolder,
1453         DWORD cpidlFiles,
1454         LPCITEMIDLIST *lppidlFiles,
1455         LPDATAOBJECT *ppdataObject)
1456 {
1457     UINT i;
1458     HWND hwnd = 0;   /*FIXME: who should be hwnd of owner? set to desktop */
1459
1460     TRACE("(%p, %ld, %p, %p)\n", pidlFolder, cpidlFiles, lppidlFiles, ppdataObject);
1461     if (TRACE_ON(pidl))
1462     {
1463         pdump (pidlFolder);
1464         for (i=0; i<cpidlFiles; i++) pdump (lppidlFiles[i]);
1465     }
1466     *ppdataObject = IDataObject_Constructor( hwnd, pidlFolder,
1467                                              lppidlFiles, cpidlFiles);
1468     if (*ppdataObject) return S_OK;
1469     return E_OUTOFMEMORY;
1470 }
1471
1472 /*************************************************************************
1473  * SHCreateStdEnumFmtEtc                        [SHELL32.74]
1474  *
1475  * NOTES
1476  *
1477  */
1478 HRESULT WINAPI SHCreateStdEnumFmtEtc(
1479         DWORD cFormats,
1480         const FORMATETC *lpFormats,
1481         LPENUMFORMATETC *ppenumFormatetc)
1482 {
1483         IEnumFORMATETC *pef;
1484         HRESULT hRes;
1485         TRACE("cf=%ld fe=%p pef=%p\n", cFormats, lpFormats, ppenumFormatetc);
1486
1487         pef = IEnumFORMATETC_Constructor(cFormats, lpFormats);
1488         if (!pef)
1489           return E_OUTOFMEMORY;
1490
1491         IEnumFORMATETC_AddRef(pef);
1492         hRes = IEnumFORMATETC_QueryInterface(pef, &IID_IEnumFORMATETC, (LPVOID*)ppenumFormatetc);
1493         IEnumFORMATETC_Release(pef);
1494
1495         return hRes;
1496 }
1497
1498
1499 /*************************************************************************
1500  *              SHELL32_256 (SHELL32.256)
1501  */
1502 HRESULT WINAPI SHELL32_256(LPDWORD lpdw0, LPDWORD lpdw1)
1503 {
1504     HRESULT ret = S_OK;
1505
1506     FIXME("stub %p 0x%08lx %p\n", lpdw0, lpdw0 ? *lpdw0 : 0, lpdw1);
1507
1508     if (!lpdw0 || *lpdw0 != 0x10)
1509         ret = E_INVALIDARG;
1510     else
1511     {
1512         LPVOID lpdata = 0;/*LocalAlloc(GMEM_ZEROINIT, 0x4E4);*/
1513
1514         if (!lpdata)
1515             ret = E_OUTOFMEMORY;
1516         else
1517         {
1518             /* Initialize and return unknown lpdata structure */
1519         }
1520     }
1521
1522     return ret;
1523 }
1524
1525 /*************************************************************************
1526  *              SHFindFiles (SHELL32.90)
1527  */
1528 BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
1529 {
1530     FIXME("%p %p\n", pidlFolder, pidlSaveFile );
1531     return FALSE;
1532 }