include: Fix packing bug in shlobj.h. pragma pack 8 for ITEMSPACING, CSFV, SFV_CREATE.
[wine] / dlls / shell32 / shellole.c
1 /*
2  *      handling of SHELL32.DLL OLE-Objects
3  *
4  *      Copyright 1997  Marcus Meissner
5  *      Copyright 1998  Juergen Schmied  <juergen.schmied@metronet.de>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #define COBJMACROS
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "shellapi.h"
33 #include "wingdi.h"
34 #include "winuser.h"
35 #include "shlobj.h"
36 #include "shlguid.h"
37 #include "winreg.h"
38 #include "winerror.h"
39
40 #include "undocshell.h"
41 #include "wine/unicode.h"
42 #include "shell32_main.h"
43
44 #include "wine/debug.h"
45 #include "shlwapi.h"
46 #include "debughlp.h"
47
48 WINE_DEFAULT_DEBUG_CHANNEL(shell);
49
50 extern INT WINAPI SHStringFromGUIDW(REFGUID guid, LPWSTR lpszDest, INT cchMax);  /* shlwapi.24 */
51
52 /**************************************************************************
53  * Default ClassFactory types
54  */
55 typedef HRESULT (CALLBACK *LPFNCREATEINSTANCE)(IUnknown* pUnkOuter, REFIID riid, LPVOID* ppvObject);
56 static IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst);
57
58 /* this table contains all CLSID's of shell32 objects */
59 static const struct {
60         REFIID                  riid;
61         LPFNCREATEINSTANCE      lpfnCI;
62 } InterfaceTable[] = {
63
64         {&CLSID_AutoComplete,   IAutoComplete_Constructor},
65         {&CLSID_ControlPanel,   IControlPanel_Constructor},
66         {&CLSID_DragDropHelper, IDropTargetHelper_Constructor},
67         {&CLSID_FolderShortcut, FolderShortcut_Constructor},
68         {&CLSID_MyComputer,     ISF_MyComputer_Constructor},
69         {&CLSID_MyDocuments,    MyDocuments_Constructor},
70         {&CLSID_NetworkPlaces,  ISF_NetworkPlaces_Constructor},
71         {&CLSID_Printers,       Printers_Constructor},
72         {&CLSID_QueryAssociations, QueryAssociations_Constructor},
73         {&CLSID_RecycleBin,     RecycleBin_Constructor},
74         {&CLSID_ShellDesktop,   ISF_Desktop_Constructor},
75         {&CLSID_ShellFSFolder,  IFSFolder_Constructor},
76         {&CLSID_ShellItem,      IShellItem_Constructor},
77         {&CLSID_ShellLink,      IShellLink_Constructor},
78         {&CLSID_UnixDosFolder,  UnixDosFolder_Constructor},
79         {&CLSID_UnixFolder,     UnixFolder_Constructor},
80         {NULL, NULL}
81 };
82
83 /*************************************************************************
84  * SHCoCreateInstance [SHELL32.102]
85  *
86  * Equivalent to CoCreateInstance. Under Windows 9x this function could sometimes
87  * use the shell32 built-in "mini-COM" without the need to load ole32.dll - see
88  * SHLoadOLE for details.
89  *
90  * Under wine if a "LoadWithoutCOM" value is present or the object resides in
91  * shell32.dll the function will load the object manually without the help of ole32
92  *
93  * NOTES
94  *     exported by ordinal
95  *
96  * SEE ALSO
97  *     CoCreateInstace, SHLoadOLE
98  */
99 HRESULT WINAPI SHCoCreateInstance(
100         LPCWSTR aclsid,
101         const CLSID *clsid,
102         LPUNKNOWN pUnkOuter,
103         REFIID refiid,
104         LPVOID *ppv)
105 {
106         DWORD   hres;
107         IID     iid;
108         const   CLSID * myclsid = clsid;
109         WCHAR   sKeyName[MAX_PATH];
110         const   WCHAR sCLSID[7] = {'C','L','S','I','D','\\','\0'};
111         WCHAR   sClassID[60];
112         const WCHAR sInProcServer32[16] ={'\\','I','n','p','r','o','c','S','e','r','v','e','r','3','2','\0'};
113         const WCHAR sLoadWithoutCOM[15] ={'L','o','a','d','W','i','t','h','o','u','t','C','O','M','\0'};
114         WCHAR   sDllPath[MAX_PATH];
115         HKEY    hKey = 0;
116         DWORD   dwSize;
117         IClassFactory * pcf = NULL;
118
119         if(!ppv) return E_POINTER;
120         *ppv=NULL;
121
122         /* if the clsid is a string, convert it */
123         if (!clsid)
124         {
125           if (!aclsid) return REGDB_E_CLASSNOTREG;
126           SHCLSIDFromStringW(aclsid, &iid);
127           myclsid = &iid;
128         }
129
130         TRACE("(%p,%s,unk:%p,%s,%p)\n",
131                 aclsid,shdebugstr_guid(myclsid),pUnkOuter,shdebugstr_guid(refiid),ppv);
132
133         if (SUCCEEDED(DllGetClassObject(myclsid, &IID_IClassFactory,(LPVOID*)&pcf)))
134         {
135             hres = IClassFactory_CreateInstance(pcf, pUnkOuter, refiid, ppv);
136             IClassFactory_Release(pcf);
137             goto end;
138         }
139
140         /* we look up the dll path in the registry */
141         SHStringFromGUIDW(myclsid, sClassID, sizeof(sClassID)/sizeof(WCHAR));
142         lstrcpyW(sKeyName, sCLSID);
143         lstrcatW(sKeyName, sClassID);
144         lstrcatW(sKeyName, sInProcServer32);
145
146         if (RegOpenKeyExW(HKEY_CLASSES_ROOT, sKeyName, 0, KEY_READ, &hKey))
147             return E_ACCESSDENIED;
148
149         /* if a special registry key is set, we load a shell extension without help of OLE32 */
150         if (!SHQueryValueExW(hKey, sLoadWithoutCOM, 0, 0, 0, 0))
151         {
152             /* load an external dll without ole32 */
153             HANDLE hLibrary;
154             typedef HRESULT (CALLBACK *DllGetClassObjectFunc)(REFCLSID clsid, REFIID iid, LPVOID *ppv);
155             DllGetClassObjectFunc DllGetClassObject;
156
157             dwSize = sizeof(sDllPath);
158             SHQueryValueExW(hKey, NULL, 0,0, sDllPath, &dwSize );
159
160             if ((hLibrary = LoadLibraryExW(sDllPath, 0, LOAD_WITH_ALTERED_SEARCH_PATH)) == 0) {
161                 ERR("couldn't load InprocServer32 dll %s\n", debugstr_w(sDllPath));
162                 hres = E_ACCESSDENIED;
163                 goto end;
164             } else if (!(DllGetClassObject = (DllGetClassObjectFunc)GetProcAddress(hLibrary, "DllGetClassObject"))) {
165                 ERR("couldn't find function DllGetClassObject in %s\n", debugstr_w(sDllPath));
166                 FreeLibrary( hLibrary );
167                 hres = E_ACCESSDENIED;
168                 goto end;
169             } else if (FAILED(hres = DllGetClassObject(myclsid, &IID_IClassFactory, (LPVOID*)&pcf))) {
170                     TRACE("GetClassObject failed 0x%08x\n", hres);
171                     goto end;
172             }
173
174             hres = IClassFactory_CreateInstance(pcf, pUnkOuter, refiid, ppv);
175             IClassFactory_Release(pcf);
176         } else {
177
178             /* load an external dll in the usual way */
179             hres = CoCreateInstance(myclsid, pUnkOuter, CLSCTX_INPROC_SERVER, refiid, ppv);
180         }
181
182 end:
183         if (hKey) RegCloseKey(hKey);
184         if(hres!=S_OK)
185         {
186           ERR("failed (0x%08x) to create CLSID:%s IID:%s\n",
187               hres, shdebugstr_guid(myclsid), shdebugstr_guid(refiid));
188           ERR("class not found in registry\n");
189         }
190
191         TRACE("-- instance: %p\n",*ppv);
192         return hres;
193 }
194
195 /*************************************************************************
196  * DllGetClassObject     [SHELL32.@]
197  * SHDllGetClassObject   [SHELL32.128]
198  */
199 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
200 {
201         HRESULT hres = E_OUTOFMEMORY;
202         IClassFactory * pcf = NULL;
203         int i;
204
205         TRACE("CLSID:%s,IID:%s\n",shdebugstr_guid(rclsid),shdebugstr_guid(iid));
206
207         if (!ppv) return E_INVALIDARG;
208         *ppv = NULL;
209
210         /* search our internal interface table */
211         for(i=0;InterfaceTable[i].riid;i++) {
212             if(IsEqualIID(InterfaceTable[i].riid, rclsid)) {
213                 TRACE("index[%u]\n", i);
214                 pcf = IDefClF_fnConstructor(InterfaceTable[i].lpfnCI, NULL, NULL);
215             }
216         }
217
218         if (!pcf) {
219             FIXME("failed for CLSID=%s\n", shdebugstr_guid(rclsid));
220             return CLASS_E_CLASSNOTAVAILABLE;
221         }
222
223         hres = IClassFactory_QueryInterface(pcf, iid, ppv);
224         IClassFactory_Release(pcf);
225
226         TRACE("-- pointer to class factory: %p\n",*ppv);
227         return hres;
228 }
229
230 /*************************************************************************
231  * SHCLSIDFromString                            [SHELL32.147]
232  *
233  * Under Windows 9x this was an ANSI version of CLSIDFromString. It also allowed
234  * to avoid dependency on ole32.dll (see SHLoadOLE for details).
235  *
236  * Under Windows NT/2000/XP this is equivalent to CLSIDFromString
237  *
238  * NOTES
239  *     exported by ordinal
240  *
241  * SEE ALSO
242  *     CLSIDFromString, SHLoadOLE
243  */
244 DWORD WINAPI SHCLSIDFromStringA (LPCSTR clsid, CLSID *id)
245 {
246     WCHAR buffer[40];
247     TRACE("(%p(%s) %p)\n", clsid, clsid, id);
248     if (!MultiByteToWideChar( CP_ACP, 0, clsid, -1, buffer, sizeof(buffer)/sizeof(WCHAR) ))
249         return CO_E_CLASSSTRING;
250     return CLSIDFromString( buffer, id );
251 }
252 DWORD WINAPI SHCLSIDFromStringW (LPCWSTR clsid, CLSID *id)
253 {
254         TRACE("(%p(%s) %p)\n", clsid, debugstr_w(clsid), id);
255         return CLSIDFromString(clsid, id);
256 }
257 DWORD WINAPI SHCLSIDFromStringAW (LPCVOID clsid, CLSID *id)
258 {
259         if (SHELL_OsIsUnicode())
260           return SHCLSIDFromStringW (clsid, id);
261         return SHCLSIDFromStringA (clsid, id);
262 }
263
264 /*************************************************************************
265  *                       SHGetMalloc                    [SHELL32.@]
266  *
267  * Equivalent to CoGetMalloc(MEMCTX_TASK, ...). Under Windows 9x this function
268  * could use the shell32 built-in "mini-COM" without the need to load ole32.dll -
269  * see SHLoadOLE for details. 
270  *
271  * PARAMS
272  *  lpmal [O] Destination for IMalloc interface.
273  *
274  * RETURNS
275  *  Success: S_OK. lpmal contains the shells IMalloc interface.
276  *  Failure. An HRESULT error code.
277  *
278  * SEE ALSO
279  *  CoGetMalloc, SHLoadOLE
280  */
281 HRESULT WINAPI SHGetMalloc(LPMALLOC *lpmal)
282 {
283         TRACE("(%p)\n", lpmal);
284         return CoGetMalloc(MEMCTX_TASK, lpmal);
285 }
286
287 /*************************************************************************
288  * SHAlloc                                      [SHELL32.196]
289  *
290  * Equivalent to CoTaskMemAlloc. Under Windows 9x this function could use
291  * the shell32 built-in "mini-COM" without the need to load ole32.dll -
292  * see SHLoadOLE for details. 
293  *
294  * NOTES
295  *     exported by ordinal
296  *
297  * SEE ALSO
298  *     CoTaskMemAlloc, SHLoadOLE
299  */
300 LPVOID WINAPI SHAlloc(DWORD len)
301 {
302         LPVOID ret;
303
304         ret = CoTaskMemAlloc(len);
305         TRACE("%u bytes at %p\n",len, ret);
306         return ret;
307 }
308
309 /*************************************************************************
310  * SHFree                                       [SHELL32.195]
311  *
312  * Equivalent to CoTaskMemFree. Under Windows 9x this function could use
313  * the shell32 built-in "mini-COM" without the need to load ole32.dll -
314  * see SHLoadOLE for details. 
315  *
316  * NOTES
317  *     exported by ordinal
318  *
319  * SEE ALSO
320  *     CoTaskMemFree, SHLoadOLE
321  */
322 void WINAPI SHFree(LPVOID pv)
323 {
324         TRACE("%p\n",pv);
325         CoTaskMemFree(pv);
326 }
327
328 /*************************************************************************
329  * SHGetDesktopFolder                   [SHELL32.@]
330  */
331 HRESULT WINAPI SHGetDesktopFolder(IShellFolder **psf)
332 {
333         HRESULT hres;
334
335         TRACE("(%p)\n", psf);
336
337         if(!psf) return E_INVALIDARG;
338
339         *psf = NULL;
340         hres = ISF_Desktop_Constructor(NULL, &IID_IShellFolder, (LPVOID*)psf);
341
342         TRACE("-- %p->(%p) 0x%08x\n", psf, *psf, hres);
343         return hres;
344 }
345 /**************************************************************************
346  * Default ClassFactory Implementation
347  *
348  * SHCreateDefClassObject
349  *
350  * NOTES
351  *  Helper function for dlls without their own classfactory.
352  *  A generic classfactory is returned.
353  *  When the CreateInstance of the cf is called the callback is executed.
354  */
355
356 typedef struct
357 {
358     const IClassFactoryVtbl    *lpVtbl;
359     LONG                        ref;
360     CLSID                       *rclsid;
361     LPFNCREATEINSTANCE          lpfnCI;
362     const IID *                 riidInst;
363     LONG *                      pcRefDll; /* pointer to refcounter in external dll (ugrrr...) */
364 } IDefClFImpl;
365
366 static const IClassFactoryVtbl dclfvt;
367
368 /**************************************************************************
369  *  IDefClF_fnConstructor
370  */
371
372 static IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pcRefDll, REFIID riidInst)
373 {
374         IDefClFImpl* lpclf;
375
376         lpclf = HeapAlloc(GetProcessHeap(),0,sizeof(IDefClFImpl));
377         lpclf->ref = 1;
378         lpclf->lpVtbl = &dclfvt;
379         lpclf->lpfnCI = lpfnCI;
380         lpclf->pcRefDll = pcRefDll;
381
382         if (pcRefDll) InterlockedIncrement(pcRefDll);
383         lpclf->riidInst = riidInst;
384
385         TRACE("(%p)%s\n",lpclf, shdebugstr_guid(riidInst));
386         return (LPCLASSFACTORY)lpclf;
387 }
388 /**************************************************************************
389  *  IDefClF_fnQueryInterface
390  */
391 static HRESULT WINAPI IDefClF_fnQueryInterface(
392   LPCLASSFACTORY iface, REFIID riid, LPVOID *ppvObj)
393 {
394         IDefClFImpl *This = (IDefClFImpl *)iface;
395
396         TRACE("(%p)->(%s)\n",This,shdebugstr_guid(riid));
397
398         *ppvObj = NULL;
399
400         if(IsEqualIID(riid, &IID_IUnknown) || IsEqualIID(riid, &IID_IClassFactory)) {
401           *ppvObj = This;
402           InterlockedIncrement(&This->ref);
403           return S_OK;
404         }
405
406         TRACE("-- E_NOINTERFACE\n");
407         return E_NOINTERFACE;
408 }
409 /******************************************************************************
410  * IDefClF_fnAddRef
411  */
412 static ULONG WINAPI IDefClF_fnAddRef(LPCLASSFACTORY iface)
413 {
414         IDefClFImpl *This = (IDefClFImpl *)iface;
415         ULONG refCount = InterlockedIncrement(&This->ref);
416
417         TRACE("(%p)->(count=%u)\n", This, refCount - 1);
418
419         return refCount;
420 }
421 /******************************************************************************
422  * IDefClF_fnRelease
423  */
424 static ULONG WINAPI IDefClF_fnRelease(LPCLASSFACTORY iface)
425 {
426         IDefClFImpl *This = (IDefClFImpl *)iface;
427         ULONG refCount = InterlockedDecrement(&This->ref);
428         
429         TRACE("(%p)->(count=%u)\n", This, refCount + 1);
430
431         if (!refCount)
432         {
433           if (This->pcRefDll) InterlockedDecrement(This->pcRefDll);
434
435           TRACE("-- destroying IClassFactory(%p)\n",This);
436           HeapFree(GetProcessHeap(),0,This);
437           return 0;
438         }
439         return refCount;
440 }
441 /******************************************************************************
442  * IDefClF_fnCreateInstance
443  */
444 static HRESULT WINAPI IDefClF_fnCreateInstance(
445   LPCLASSFACTORY iface, LPUNKNOWN pUnkOuter, REFIID riid, LPVOID *ppvObject)
446 {
447         IDefClFImpl *This = (IDefClFImpl *)iface;
448
449         TRACE("%p->(%p,%s,%p)\n",This,pUnkOuter,shdebugstr_guid(riid),ppvObject);
450
451         *ppvObject = NULL;
452
453         if ( This->riidInst==NULL ||
454              IsEqualCLSID(riid, This->riidInst) ||
455              IsEqualCLSID(riid, &IID_IUnknown) )
456         {
457           return This->lpfnCI(pUnkOuter, riid, ppvObject);
458         }
459
460         ERR("unknown IID requested %s\n",shdebugstr_guid(riid));
461         return E_NOINTERFACE;
462 }
463 /******************************************************************************
464  * IDefClF_fnLockServer
465  */
466 static HRESULT WINAPI IDefClF_fnLockServer(LPCLASSFACTORY iface, BOOL fLock)
467 {
468         IDefClFImpl *This = (IDefClFImpl *)iface;
469         TRACE("%p->(0x%x), not implemented\n",This, fLock);
470         return E_NOTIMPL;
471 }
472
473 static const IClassFactoryVtbl dclfvt =
474 {
475     IDefClF_fnQueryInterface,
476     IDefClF_fnAddRef,
477   IDefClF_fnRelease,
478   IDefClF_fnCreateInstance,
479   IDefClF_fnLockServer
480 };
481
482 /******************************************************************************
483  * SHCreateDefClassObject                       [SHELL32.70]
484  */
485 HRESULT WINAPI SHCreateDefClassObject(
486         REFIID  riid,
487         LPVOID* ppv,
488         LPFNCREATEINSTANCE lpfnCI,      /* [in] create instance callback entry */
489         LPDWORD pcRefDll,               /* [in/out] ref count of the dll */
490         REFIID  riidInst)               /* [in] optional interface to the instance */
491 {
492         IClassFactory * pcf;
493
494         TRACE("%s %p %p %p %s\n",
495               shdebugstr_guid(riid), ppv, lpfnCI, pcRefDll, shdebugstr_guid(riidInst));
496
497         if (! IsEqualCLSID(riid, &IID_IClassFactory) ) return E_NOINTERFACE;
498         if (! (pcf = IDefClF_fnConstructor(lpfnCI, (PLONG)pcRefDll, riidInst))) return E_OUTOFMEMORY;
499         *ppv = pcf;
500         return NOERROR;
501 }
502
503 /*************************************************************************
504  *  DragAcceptFiles             [SHELL32.@]
505  */
506 void WINAPI DragAcceptFiles(HWND hWnd, BOOL b)
507 {
508         LONG exstyle;
509
510         if( !IsWindow(hWnd) ) return;
511         exstyle = GetWindowLongA(hWnd,GWL_EXSTYLE);
512         if (b)
513           exstyle |= WS_EX_ACCEPTFILES;
514         else
515           exstyle &= ~WS_EX_ACCEPTFILES;
516         SetWindowLongA(hWnd,GWL_EXSTYLE,exstyle);
517 }
518
519 /*************************************************************************
520  * DragFinish           [SHELL32.@]
521  */
522 void WINAPI DragFinish(HDROP h)
523 {
524         TRACE("\n");
525         GlobalFree(h);
526 }
527
528 /*************************************************************************
529  * DragQueryPoint               [SHELL32.@]
530  */
531 BOOL WINAPI DragQueryPoint(HDROP hDrop, POINT *p)
532 {
533         DROPFILES *lpDropFileStruct;
534         BOOL bRet;
535
536         TRACE("\n");
537
538         lpDropFileStruct = GlobalLock(hDrop);
539
540         *p = lpDropFileStruct->pt;
541         bRet = lpDropFileStruct->fNC;
542
543         GlobalUnlock(hDrop);
544         return bRet;
545 }
546
547 /*************************************************************************
548  *  DragQueryFileA              [SHELL32.@]
549  *  DragQueryFile               [SHELL32.@]
550  */
551 UINT WINAPI DragQueryFileA(
552         HDROP hDrop,
553         UINT lFile,
554         LPSTR lpszFile,
555         UINT lLength)
556 {
557         LPSTR lpDrop;
558         UINT i = 0;
559         DROPFILES *lpDropFileStruct = GlobalLock(hDrop);
560
561         TRACE("(%p, %x, %p, %u)\n",     hDrop,lFile,lpszFile,lLength);
562
563         if(!lpDropFileStruct) goto end;
564
565         lpDrop = (LPSTR) lpDropFileStruct + lpDropFileStruct->pFiles;
566
567         if(lpDropFileStruct->fWide) {
568             LPWSTR lpszFileW = NULL;
569
570             if(lpszFile) {
571                 lpszFileW = HeapAlloc(GetProcessHeap(), 0, lLength*sizeof(WCHAR));
572                 if(lpszFileW == NULL) {
573                     goto end;
574                 }
575             }
576             i = DragQueryFileW(hDrop, lFile, lpszFileW, lLength);
577
578             if(lpszFileW) {
579                 WideCharToMultiByte(CP_ACP, 0, lpszFileW, -1, lpszFile, lLength, 0, NULL);
580                 HeapFree(GetProcessHeap(), 0, lpszFileW);
581             }
582             goto end;
583         }
584
585         while (i++ < lFile)
586         {
587           while (*lpDrop++); /* skip filename */
588           if (!*lpDrop)
589           {
590             i = (lFile == 0xFFFFFFFF) ? i : 0;
591             goto end;
592           }
593         }
594
595         i = strlen(lpDrop);
596         if (!lpszFile ) goto end;   /* needed buffer size */
597         lstrcpynA (lpszFile, lpDrop, lLength);
598 end:
599         GlobalUnlock(hDrop);
600         return i;
601 }
602
603 /*************************************************************************
604  *  DragQueryFileW              [SHELL32.@]
605  */
606 UINT WINAPI DragQueryFileW(
607         HDROP hDrop,
608         UINT lFile,
609         LPWSTR lpszwFile,
610         UINT lLength)
611 {
612         LPWSTR lpwDrop;
613         UINT i = 0;
614         DROPFILES *lpDropFileStruct = GlobalLock(hDrop);
615
616         TRACE("(%p, %x, %p, %u)\n", hDrop,lFile,lpszwFile,lLength);
617
618         if(!lpDropFileStruct) goto end;
619
620         lpwDrop = (LPWSTR) ((LPSTR)lpDropFileStruct + lpDropFileStruct->pFiles);
621
622         if(lpDropFileStruct->fWide == FALSE) {
623             LPSTR lpszFileA = NULL;
624
625             if(lpszwFile) {
626                 lpszFileA = HeapAlloc(GetProcessHeap(), 0, lLength);
627                 if(lpszFileA == NULL) {
628                     goto end;
629                 }
630             }
631             i = DragQueryFileA(hDrop, lFile, lpszFileA, lLength);
632
633             if(lpszFileA) {
634                 MultiByteToWideChar(CP_ACP, 0, lpszFileA, -1, lpszwFile, lLength);
635                 HeapFree(GetProcessHeap(), 0, lpszFileA);
636             }
637             goto end;
638         }
639
640         i = 0;
641         while (i++ < lFile)
642         {
643           while (*lpwDrop++); /* skip filename */
644           if (!*lpwDrop)
645           {
646             i = (lFile == 0xFFFFFFFF) ? i : 0;
647             goto end;
648           }
649         }
650
651         i = strlenW(lpwDrop);
652         if ( !lpszwFile) goto end;   /* needed buffer size */
653         lstrcpynW (lpszwFile, lpwDrop, lLength);
654 end:
655         GlobalUnlock(hDrop);
656         return i;
657 }