Added rules to build import libraries in the individual dll makefiles.
[wine.git] / dlls / shell32 / shellpath.c
blobff989675c6e7c8f7d484216ed154c630e2f4332a
1 /*
2 * Path Functions
4 * Copyright 1998, 1999, 2000 Juergen Schmied
5 * Copyright 2004 Juan Lang
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * NOTES:
23 * Many of these functions are in SHLWAPI.DLL also
27 #include "config.h"
28 #include "wine/port.h"
30 #include <stdarg.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include "wine/debug.h"
34 #include "windef.h"
35 #include "winbase.h"
36 #include "winnls.h"
37 #include "winreg.h"
38 #include "wingdi.h"
39 #include "winuser.h"
41 #include "shlobj.h"
42 #include "shresdef.h"
43 #include "shell32_main.h"
44 #include "undocshell.h"
45 #include "pidl.h"
46 #include "wine/unicode.h"
47 #include "shlwapi.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(shell);
52 ########## Combining and Constructing paths ##########
55 /*************************************************************************
56 * PathAppend [SHELL32.36]
58 BOOL WINAPI PathAppendAW(
59 LPVOID lpszPath1,
60 LPCVOID lpszPath2)
62 if (SHELL_OsIsUnicode())
63 return PathAppendW(lpszPath1, lpszPath2);
64 return PathAppendA(lpszPath1, lpszPath2);
67 /*************************************************************************
68 * PathCombine [SHELL32.37]
70 LPVOID WINAPI PathCombineAW(
71 LPVOID szDest,
72 LPCVOID lpszDir,
73 LPCVOID lpszFile)
75 if (SHELL_OsIsUnicode())
76 return PathCombineW( szDest, lpszDir, lpszFile );
77 return PathCombineA( szDest, lpszDir, lpszFile );
80 /*************************************************************************
81 * PathAddBackslash [SHELL32.32]
83 LPVOID WINAPI PathAddBackslashAW(LPVOID lpszPath)
85 if(SHELL_OsIsUnicode())
86 return PathAddBackslashW(lpszPath);
87 return PathAddBackslashA(lpszPath);
90 /*************************************************************************
91 * PathBuildRoot [SHELL32.30]
93 LPVOID WINAPI PathBuildRootAW(LPVOID lpszPath, int drive)
95 if(SHELL_OsIsUnicode())
96 return PathBuildRootW(lpszPath, drive);
97 return PathBuildRootA(lpszPath, drive);
101 Extracting Component Parts
104 /*************************************************************************
105 * PathFindFileName [SHELL32.34]
107 LPVOID WINAPI PathFindFileNameAW(LPCVOID lpszPath)
109 if(SHELL_OsIsUnicode())
110 return PathFindFileNameW(lpszPath);
111 return PathFindFileNameA(lpszPath);
114 /*************************************************************************
115 * PathFindExtension [SHELL32.31]
117 LPVOID WINAPI PathFindExtensionAW(LPCVOID lpszPath)
119 if (SHELL_OsIsUnicode())
120 return PathFindExtensionW(lpszPath);
121 return PathFindExtensionA(lpszPath);
125 /*************************************************************************
126 * PathGetExtensionA [internal]
128 * NOTES
129 * exported by ordinal
130 * return value points to the first char after the dot
132 static LPSTR PathGetExtensionA(LPCSTR lpszPath)
134 TRACE("(%s)\n",lpszPath);
136 lpszPath = PathFindExtensionA(lpszPath);
137 return (LPSTR)(*lpszPath?(lpszPath+1):lpszPath);
140 /*************************************************************************
141 * PathGetExtensionW [internal]
143 static LPWSTR PathGetExtensionW(LPCWSTR lpszPath)
145 TRACE("(%s)\n",debugstr_w(lpszPath));
147 lpszPath = PathFindExtensionW(lpszPath);
148 return (LPWSTR)(*lpszPath?(lpszPath+1):lpszPath);
151 /*************************************************************************
152 * PathGetExtension [SHELL32.158]
154 LPVOID WINAPI PathGetExtensionAW(LPCVOID lpszPath,DWORD void1, DWORD void2)
156 if (SHELL_OsIsUnicode())
157 return PathGetExtensionW(lpszPath);
158 return PathGetExtensionA(lpszPath);
161 /*************************************************************************
162 * PathGetArgs [SHELL32.52]
164 LPVOID WINAPI PathGetArgsAW(LPVOID lpszPath)
166 if (SHELL_OsIsUnicode())
167 return PathGetArgsW(lpszPath);
168 return PathGetArgsA(lpszPath);
171 /*************************************************************************
172 * PathGetDriveNumber [SHELL32.57]
174 int WINAPI PathGetDriveNumberAW(LPVOID lpszPath)
176 if (SHELL_OsIsUnicode())
177 return PathGetDriveNumberW(lpszPath);
178 return PathGetDriveNumberA(lpszPath);
181 /*************************************************************************
182 * PathRemoveFileSpec [SHELL32.35]
184 BOOL WINAPI PathRemoveFileSpecAW(LPVOID lpszPath)
186 if (SHELL_OsIsUnicode())
187 return PathRemoveFileSpecW(lpszPath);
188 return PathRemoveFileSpecA(lpszPath);
191 /*************************************************************************
192 * PathStripPath [SHELL32.38]
194 void WINAPI PathStripPathAW(LPVOID lpszPath)
196 if (SHELL_OsIsUnicode())
197 PathStripPathW(lpszPath);
198 else
199 PathStripPathA(lpszPath);
202 /*************************************************************************
203 * PathStripToRoot [SHELL32.50]
205 BOOL WINAPI PathStripToRootAW(LPVOID lpszPath)
207 if (SHELL_OsIsUnicode())
208 return PathStripToRootW(lpszPath);
209 return PathStripToRootA(lpszPath);
212 /*************************************************************************
213 * PathRemoveArgs [SHELL32.251]
215 void WINAPI PathRemoveArgsAW(LPVOID lpszPath)
217 if (SHELL_OsIsUnicode())
218 PathRemoveArgsW(lpszPath);
219 else
220 PathRemoveArgsA(lpszPath);
223 /*************************************************************************
224 * PathRemoveExtension [SHELL32.250]
226 void WINAPI PathRemoveExtensionAW(LPVOID lpszPath)
228 if (SHELL_OsIsUnicode())
229 PathRemoveExtensionW(lpszPath);
230 else
231 PathRemoveExtensionA(lpszPath);
236 Path Manipulations
239 /*************************************************************************
240 * PathGetShortPathA [internal]
242 static void PathGetShortPathA(LPSTR pszPath)
244 CHAR path[MAX_PATH];
246 TRACE("%s\n", pszPath);
248 if (GetShortPathNameA(pszPath, path, MAX_PATH))
250 lstrcpyA(pszPath, path);
254 /*************************************************************************
255 * PathGetShortPathW [internal]
257 static void PathGetShortPathW(LPWSTR pszPath)
259 WCHAR path[MAX_PATH];
261 TRACE("%s\n", debugstr_w(pszPath));
263 if (GetShortPathNameW(pszPath, path, MAX_PATH))
265 lstrcpyW(pszPath, path);
269 /*************************************************************************
270 * PathGetShortPath [SHELL32.92]
272 VOID WINAPI PathGetShortPathAW(LPVOID pszPath)
274 if(SHELL_OsIsUnicode())
275 PathGetShortPathW(pszPath);
276 PathGetShortPathA(pszPath);
279 /*************************************************************************
280 * PathRemoveBlanks [SHELL32.33]
282 void WINAPI PathRemoveBlanksAW(LPVOID str)
284 if(SHELL_OsIsUnicode())
285 PathRemoveBlanksW(str);
286 else
287 PathRemoveBlanksA(str);
290 /*************************************************************************
291 * PathQuoteSpaces [SHELL32.55]
293 VOID WINAPI PathQuoteSpacesAW (LPVOID lpszPath)
295 if(SHELL_OsIsUnicode())
296 PathQuoteSpacesW(lpszPath);
297 else
298 PathQuoteSpacesA(lpszPath);
301 /*************************************************************************
302 * PathUnquoteSpaces [SHELL32.56]
304 VOID WINAPI PathUnquoteSpacesAW(LPVOID str)
306 if(SHELL_OsIsUnicode())
307 PathUnquoteSpacesW(str);
308 else
309 PathUnquoteSpacesA(str);
312 /*************************************************************************
313 * PathParseIconLocation [SHELL32.249]
315 int WINAPI PathParseIconLocationAW (LPVOID lpszPath)
317 if(SHELL_OsIsUnicode())
318 return PathParseIconLocationW(lpszPath);
319 return PathParseIconLocationA(lpszPath);
323 ########## Path Testing ##########
325 /*************************************************************************
326 * PathIsUNC [SHELL32.39]
328 BOOL WINAPI PathIsUNCAW (LPCVOID lpszPath)
330 if (SHELL_OsIsUnicode())
331 return PathIsUNCW( lpszPath );
332 return PathIsUNCA( lpszPath );
335 /*************************************************************************
336 * PathIsRelative [SHELL32.40]
338 BOOL WINAPI PathIsRelativeAW (LPCVOID lpszPath)
340 if (SHELL_OsIsUnicode())
341 return PathIsRelativeW( lpszPath );
342 return PathIsRelativeA( lpszPath );
345 /*************************************************************************
346 * PathIsRoot [SHELL32.29]
348 BOOL WINAPI PathIsRootAW(LPCVOID lpszPath)
350 if (SHELL_OsIsUnicode())
351 return PathIsRootW(lpszPath);
352 return PathIsRootA(lpszPath);
355 /*************************************************************************
356 * PathIsExeA [internal]
358 static BOOL PathIsExeA (LPCSTR lpszPath)
360 LPCSTR lpszExtension = PathGetExtensionA(lpszPath);
361 int i;
362 static const char * const lpszExtensions[] =
363 {"exe", "com", "pif", "cmd", "bat", "scf", "scr", NULL };
365 TRACE("path=%s\n",lpszPath);
367 for(i=0; lpszExtensions[i]; i++)
368 if (!lstrcmpiA(lpszExtension,lpszExtensions[i])) return TRUE;
370 return FALSE;
373 /*************************************************************************
374 * PathIsExeW [internal]
376 static BOOL PathIsExeW (LPCWSTR lpszPath)
378 LPCWSTR lpszExtension = PathGetExtensionW(lpszPath);
379 int i;
380 static const WCHAR lpszExtensions[][4] =
381 {{'e','x','e','\0'}, {'c','o','m','\0'}, {'p','i','f','\0'},
382 {'c','m','d','\0'}, {'b','a','t','\0'}, {'s','c','f','\0'},
383 {'s','c','r','\0'}, {'\0'} };
385 TRACE("path=%s\n",debugstr_w(lpszPath));
387 for(i=0; lpszExtensions[i][0]; i++)
388 if (!strcmpiW(lpszExtension,lpszExtensions[i])) return TRUE;
390 return FALSE;
393 /*************************************************************************
394 * PathIsExe [SHELL32.43]
396 BOOL WINAPI PathIsExeAW (LPCVOID path)
398 if (SHELL_OsIsUnicode())
399 return PathIsExeW (path);
400 return PathIsExeA(path);
403 /*************************************************************************
404 * PathIsDirectory [SHELL32.159]
406 BOOL WINAPI PathIsDirectoryAW (LPCVOID lpszPath)
408 if (SHELL_OsIsUnicode())
409 return PathIsDirectoryW (lpszPath);
410 return PathIsDirectoryA (lpszPath);
413 /*************************************************************************
414 * PathFileExists [SHELL32.45]
416 BOOL WINAPI PathFileExistsAW (LPCVOID lpszPath)
418 if (SHELL_OsIsUnicode())
419 return PathFileExistsW (lpszPath);
420 return PathFileExistsA (lpszPath);
423 /*************************************************************************
424 * PathMatchSpec [SHELL32.46]
426 BOOL WINAPI PathMatchSpecAW(LPVOID name, LPVOID mask)
428 if (SHELL_OsIsUnicode())
429 return PathMatchSpecW( name, mask );
430 return PathMatchSpecA( name, mask );
433 /*************************************************************************
434 * PathIsSameRoot [SHELL32.650]
436 BOOL WINAPI PathIsSameRootAW(LPCVOID lpszPath1, LPCVOID lpszPath2)
438 if (SHELL_OsIsUnicode())
439 return PathIsSameRootW(lpszPath1, lpszPath2);
440 return PathIsSameRootA(lpszPath1, lpszPath2);
443 /*************************************************************************
444 * IsLFNDriveA [SHELL32.41]
446 BOOL WINAPI IsLFNDriveA(LPCSTR lpszPath)
448 DWORD fnlen;
450 if (!GetVolumeInformationA(lpszPath, NULL, 0, NULL, &fnlen, NULL, NULL, 0))
451 return FALSE;
452 return fnlen > 12;
455 /*************************************************************************
456 * IsLFNDriveW [SHELL32.42]
458 BOOL WINAPI IsLFNDriveW(LPCWSTR lpszPath)
460 DWORD fnlen;
462 if (!GetVolumeInformationW(lpszPath, NULL, 0, NULL, &fnlen, NULL, NULL, 0))
463 return FALSE;
464 return fnlen > 12;
467 /*************************************************************************
468 * IsLFNDrive [SHELL32.119]
470 BOOL WINAPI IsLFNDriveAW(LPCVOID lpszPath)
472 if (SHELL_OsIsUnicode())
473 return IsLFNDriveW(lpszPath);
474 return IsLFNDriveA(lpszPath);
478 ########## Creating Something Unique ##########
480 /*************************************************************************
481 * PathMakeUniqueNameA [internal]
483 BOOL WINAPI PathMakeUniqueNameA(
484 LPSTR lpszBuffer,
485 DWORD dwBuffSize,
486 LPCSTR lpszShortName,
487 LPCSTR lpszLongName,
488 LPCSTR lpszPathName)
490 FIXME("%p %lu %s %s %s stub\n",
491 lpszBuffer, dwBuffSize, debugstr_a(lpszShortName),
492 debugstr_a(lpszLongName), debugstr_a(lpszPathName));
493 return TRUE;
496 /*************************************************************************
497 * PathMakeUniqueNameW [internal]
499 BOOL WINAPI PathMakeUniqueNameW(
500 LPWSTR lpszBuffer,
501 DWORD dwBuffSize,
502 LPCWSTR lpszShortName,
503 LPCWSTR lpszLongName,
504 LPCWSTR lpszPathName)
506 FIXME("%p %lu %s %s %s stub\n",
507 lpszBuffer, dwBuffSize, debugstr_w(lpszShortName),
508 debugstr_w(lpszLongName), debugstr_w(lpszPathName));
509 return TRUE;
512 /*************************************************************************
513 * PathMakeUniqueName [SHELL32.47]
515 BOOL WINAPI PathMakeUniqueNameAW(
516 LPVOID lpszBuffer,
517 DWORD dwBuffSize,
518 LPCVOID lpszShortName,
519 LPCVOID lpszLongName,
520 LPCVOID lpszPathName)
522 if (SHELL_OsIsUnicode())
523 return PathMakeUniqueNameW(lpszBuffer,dwBuffSize, lpszShortName,lpszLongName,lpszPathName);
524 return PathMakeUniqueNameA(lpszBuffer,dwBuffSize, lpszShortName,lpszLongName,lpszPathName);
527 /*************************************************************************
528 * PathYetAnotherMakeUniqueName [SHELL32.75]
530 * NOTES
531 * exported by ordinal
533 BOOL WINAPI PathYetAnotherMakeUniqueName(
534 LPWSTR lpszBuffer,
535 LPCWSTR lpszPathName,
536 LPCWSTR lpszShortName,
537 LPCWSTR lpszLongName)
539 FIXME("(%p, %s, %s ,%s):stub.\n",
540 lpszBuffer, debugstr_w(lpszPathName), debugstr_w(lpszShortName), debugstr_w(lpszLongName));
541 return TRUE;
546 ########## cleaning and resolving paths ##########
549 /*************************************************************************
550 * PathFindOnPath [SHELL32.145]
552 BOOL WINAPI PathFindOnPathAW(LPVOID sFile, LPCVOID sOtherDirs)
554 if (SHELL_OsIsUnicode())
555 return PathFindOnPathW(sFile, (LPCWSTR *)sOtherDirs);
556 return PathFindOnPathA(sFile, (LPCSTR *)sOtherDirs);
559 /*************************************************************************
560 * PathCleanupSpec [SHELL32.171]
562 * lpszFile is changed in place.
564 int WINAPI PathCleanupSpec( LPCWSTR lpszPathW, LPWSTR lpszFileW )
566 int i = 0;
567 DWORD rc = 0;
568 int length = 0;
570 if (SHELL_OsIsUnicode())
572 LPWSTR p = lpszFileW;
574 TRACE("Cleanup %s\n",debugstr_w(lpszFileW));
576 if (lpszPathW)
577 length = strlenW(lpszPathW);
579 while (*p)
581 int gct = PathGetCharTypeW(*p);
582 if (gct == GCT_INVALID || gct == GCT_WILD || gct == GCT_SEPARATOR)
584 lpszFileW[i]='-';
585 rc |= PCS_REPLACEDCHAR;
587 else
588 lpszFileW[i]=*p;
589 i++;
590 p++;
591 if (length + i == MAX_PATH)
593 rc |= PCS_FATAL | PCS_PATHTOOLONG;
594 break;
597 lpszFileW[i]=0;
599 else
601 LPSTR lpszFileA = (LPSTR)lpszFileW;
602 LPCSTR lpszPathA = (LPSTR)lpszPathW;
603 LPSTR p = lpszFileA;
605 TRACE("Cleanup %s\n",debugstr_a(lpszFileA));
607 if (lpszPathA)
608 length = strlen(lpszPathA);
610 while (*p)
612 int gct = PathGetCharTypeA(*p);
613 if (gct == GCT_INVALID || gct == GCT_WILD || gct == GCT_SEPARATOR)
615 lpszFileA[i]='-';
616 rc |= PCS_REPLACEDCHAR;
618 else
619 lpszFileA[i]=*p;
620 i++;
621 p++;
622 if (length + i == MAX_PATH)
624 rc |= PCS_FATAL | PCS_PATHTOOLONG;
625 break;
628 lpszFileA[i]=0;
630 return rc;
633 /*************************************************************************
634 * PathQualifyA [SHELL32]
636 BOOL WINAPI PathQualifyA(LPCSTR pszPath)
638 FIXME("%s\n",pszPath);
639 return 0;
642 /*************************************************************************
643 * PathQualifyW [SHELL32]
645 BOOL WINAPI PathQualifyW(LPCWSTR pszPath)
647 FIXME("%s\n",debugstr_w(pszPath));
648 return 0;
651 /*************************************************************************
652 * PathQualify [SHELL32.49]
654 BOOL WINAPI PathQualifyAW(LPCVOID pszPath)
656 if (SHELL_OsIsUnicode())
657 return PathQualifyW(pszPath);
658 return PathQualifyA(pszPath);
661 /*************************************************************************
662 * PathResolveA [SHELL32.51]
664 BOOL WINAPI PathResolveA(
665 LPSTR lpszPath,
666 LPCSTR *alpszPaths,
667 DWORD dwFlags)
669 FIXME("(%s,%p,0x%08lx),stub!\n",
670 lpszPath, *alpszPaths, dwFlags);
671 return 0;
674 /*************************************************************************
675 * PathResolveW [SHELL32]
677 BOOL WINAPI PathResolveW(
678 LPWSTR lpszPath,
679 LPCWSTR *alpszPaths,
680 DWORD dwFlags)
682 FIXME("(%s,%p,0x%08lx),stub!\n",
683 debugstr_w(lpszPath), debugstr_w(*alpszPaths), dwFlags);
684 return 0;
687 /*************************************************************************
688 * PathResolve [SHELL32.51]
690 BOOL WINAPI PathResolveAW(
691 LPVOID lpszPath,
692 LPCVOID *alpszPaths,
693 DWORD dwFlags)
695 if (SHELL_OsIsUnicode())
696 return PathResolveW(lpszPath, (LPCWSTR*)alpszPaths, dwFlags);
697 return PathResolveA(lpszPath, (LPCSTR*)alpszPaths, dwFlags);
700 /*************************************************************************
701 * PathProcessCommandA [SHELL32.653]
703 HRESULT WINAPI PathProcessCommandA (
704 LPCSTR lpszPath,
705 LPSTR lpszBuff,
706 DWORD dwBuffSize,
707 DWORD dwFlags)
709 FIXME("%s %p 0x%04lx 0x%04lx stub\n",
710 lpszPath, lpszBuff, dwBuffSize, dwFlags);
711 strcpy(lpszBuff, lpszPath);
712 return 0;
715 /*************************************************************************
716 * PathProcessCommandW
718 HRESULT WINAPI PathProcessCommandW (
719 LPCWSTR lpszPath,
720 LPWSTR lpszBuff,
721 DWORD dwBuffSize,
722 DWORD dwFlags)
724 FIXME("(%s, %p, 0x%04lx, 0x%04lx) stub\n",
725 debugstr_w(lpszPath), lpszBuff, dwBuffSize, dwFlags);
726 strcpyW(lpszBuff, lpszPath);
727 return 0;
730 /*************************************************************************
731 * PathProcessCommand (SHELL32.653)
733 HRESULT WINAPI PathProcessCommandAW (
734 LPCVOID lpszPath,
735 LPVOID lpszBuff,
736 DWORD dwBuffSize,
737 DWORD dwFlags)
739 if (SHELL_OsIsUnicode())
740 return PathProcessCommandW(lpszPath, lpszBuff, dwBuffSize, dwFlags);
741 return PathProcessCommandA(lpszPath, lpszBuff, dwBuffSize, dwFlags);
745 ########## special ##########
748 /*************************************************************************
749 * PathSetDlgItemPath (SHELL32.48)
751 VOID WINAPI PathSetDlgItemPathAW(HWND hDlg, int id, LPCVOID pszPath)
753 if (SHELL_OsIsUnicode())
754 PathSetDlgItemPathW(hDlg, id, pszPath);
755 else
756 PathSetDlgItemPathA(hDlg, id, pszPath);
759 static const WCHAR szCurrentVersion[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\0'};
760 static const WCHAR Administrative_ToolsW[] = {'A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
761 static const WCHAR AppDataW[] = {'A','p','p','D','a','t','a','\0'};
762 static const WCHAR CacheW[] = {'C','a','c','h','e','\0'};
763 static const WCHAR CD_BurningW[] = {'C','D',' ','B','u','r','n','i','n','g','\0'};
764 static const WCHAR Common_Administrative_ToolsW[] = {'C','o','m','m','o','n',' ','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
765 static const WCHAR Common_AppDataW[] = {'C','o','m','m','o','n',' ','A','p','p','D','a','t','a','\0'};
766 static const WCHAR Common_DesktopW[] = {'C','o','m','m','o','n',' ','D','e','s','k','t','o','p','\0'};
767 static const WCHAR Common_DocumentsW[] = {'C','o','m','m','o','n',' ','D','o','c','u','m','e','n','t','s','\0'};
768 static const WCHAR CommonFilesDirW[] = {'C','o','m','m','o','n','F','i','l','e','s','D','i','r','\0'};
769 static const WCHAR CommonMusicW[] = {'C','o','m','m','o','n','M','u','s','i','c','\0'};
770 static const WCHAR CommonPicturesW[] = {'C','o','m','m','o','n','P','i','c','t','u','r','e','s','\0'};
771 static const WCHAR Common_ProgramsW[] = {'C','o','m','m','o','n',' ','P','r','o','g','r','a','m','s','\0'};
772 static const WCHAR Common_StartUpW[] = {'C','o','m','m','o','n',' ','S','t','a','r','t','U','p','\0'};
773 static const WCHAR Common_Start_MenuW[] = {'C','o','m','m','o','n',' ','S','t','a','r','t',' ','M','e','n','u','\0'};
774 static const WCHAR Common_TemplatesW[] = {'C','o','m','m','o','n',' ','T','e','m','p','l','a','t','e','s','\0'};
775 static const WCHAR CommonVideoW[] = {'C','o','m','m','o','n','V','i','d','e','o','\0'};
776 static const WCHAR CookiesW[] = {'C','o','o','k','i','e','s','\0'};
777 static const WCHAR DesktopW[] = {'D','e','s','k','t','o','p','\0'};
778 static const WCHAR FavoritesW[] = {'F','a','v','o','r','i','t','e','s','\0'};
779 static const WCHAR FontsW[] = {'F','o','n','t','s','\0'};
780 static const WCHAR HistoryW[] = {'H','i','s','t','o','r','y','\0'};
781 static const WCHAR Local_AppDataW[] = {'L','o','c','a','l',' ','A','p','p','D','a','t','a','\0'};
782 static const WCHAR My_MusicW[] = {'M','y',' ','M','u','s','i','c','\0'};
783 static const WCHAR My_PicturesW[] = {'M','y',' ','P','i','c','t','u','r','e','s','\0'};
784 static const WCHAR My_VideoW[] = {'M','y',' ','V','i','d','e','o','\0'};
785 static const WCHAR NetHoodW[] = {'N','e','t','H','o','o','d','\0'};
786 static const WCHAR PersonalW[] = {'P','e','r','s','o','n','a','l','\0'};
787 static const WCHAR PrintHoodW[] = {'P','r','i','n','t','H','o','o','d','\0'};
788 static const WCHAR ProgramFilesDirW[] = {'P','r','o','g','r','a','m','F','i','l','e','s','D','i','r','\0'};
789 static const WCHAR ProgramsW[] = {'P','r','o','g','r','a','m','s','\0'};
790 static const WCHAR RecentW[] = {'R','e','c','e','n','t','\0'};
791 static const WCHAR ResourcesW[] = {'R','e','s','o','u','r','c','e','s','\0'};
792 static const WCHAR SendToW[] = {'S','e','n','d','T','o','\0'};
793 static const WCHAR StartUpW[] = {'S','t','a','r','t','U','p','\0'};
794 static const WCHAR Start_MenuW[] = {'S','t','a','r','t',' ','M','e','n','u','\0'};
795 static const WCHAR TemplatesW[] = {'T','e','m','p','l','a','t','e','s','\0'};
796 static const WCHAR DefaultW[] = {'.','D','e','f','a','u','l','t','\0'};
797 static const WCHAR AllUsersProfileW[] = {'%','A','L','L','U','S','E','R','S','P','R','O','F','I','L','E','%','\0'};
798 static const WCHAR UserProfileW[] = {'%','U','S','E','R','P','R','O','F','I','L','E','%','\0'};
799 static const WCHAR SystemDriveW[] = {'%','S','y','s','t','e','m','D','r','i','v','e','%','\0'};
800 static const WCHAR ProfileListW[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s',' ','N','T','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','P','r','o','f','i','l','e','L','i','s','t',0};
801 static const WCHAR ProfilesDirectoryW[] = {'P','r','o','f','i','l','e','s','D','i','r','e','c','t','o','r','y',0};
802 static const WCHAR AllUsersProfileValueW[] = {'A','l','l','U','s','e','r','s','P','r','o','f','i','l','e','\0'};
803 static const WCHAR szSHFolders[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','S','h','e','l','l',' ','F','o','l','d','e','r','s','\0'};
804 static const WCHAR szSHUserFolders[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','U','s','e','r',' ','S','h','e','l','l',' ','F','o','l','d','e','r','s','\0'};
805 /* This defaults to L"Documents and Settings" on Windows 2000/XP, but we're
806 * acting more Windows 9x-like for now.
808 static const WCHAR szDefaultProfileDirW[] = {'w','i','n','d','o','w','s','\\','p','r','o','f','i','l','e','s','\0'};
809 static const WCHAR AllUsersW[] = {'A','l','l',' ','U','s','e','r','s','\0'};
811 typedef enum _CSIDL_Type {
812 CSIDL_Type_User,
813 CSIDL_Type_AllUsers,
814 CSIDL_Type_CurrVer,
815 CSIDL_Type_Disallowed,
816 CSIDL_Type_NonExistent,
817 CSIDL_Type_WindowsPath,
818 CSIDL_Type_SystemPath,
819 } CSIDL_Type;
821 typedef struct
823 CSIDL_Type type;
824 LPCWSTR szValueName;
825 LPCWSTR szDefaultPath; /* fallback string or resource ID */
826 } CSIDL_DATA;
828 static const CSIDL_DATA CSIDL_Data[] =
830 { /* 0x00 - CSIDL_DESKTOP */
831 CSIDL_Type_User,
832 DesktopW,
833 MAKEINTRESOURCEW(IDS_DESKTOPDIRECTORY)
835 { /* 0x01 - CSIDL_INTERNET */
836 CSIDL_Type_Disallowed,
837 NULL,
838 NULL
840 { /* 0x02 - CSIDL_PROGRAMS */
841 CSIDL_Type_User,
842 ProgramsW,
843 MAKEINTRESOURCEW(IDS_PROGRAMS)
845 { /* 0x03 - CSIDL_CONTROLS (.CPL files) */
846 CSIDL_Type_SystemPath,
847 NULL,
848 NULL
850 { /* 0x04 - CSIDL_PRINTERS */
851 CSIDL_Type_SystemPath,
852 NULL,
853 NULL
855 { /* 0x05 - CSIDL_PERSONAL */
856 CSIDL_Type_User,
857 PersonalW,
858 MAKEINTRESOURCEW(IDS_PERSONAL)
860 { /* 0x06 - CSIDL_FAVORITES */
861 CSIDL_Type_User,
862 FavoritesW,
863 MAKEINTRESOURCEW(IDS_FAVORITES)
865 { /* 0x07 - CSIDL_STARTUP */
866 CSIDL_Type_User,
867 StartUpW,
868 MAKEINTRESOURCEW(IDS_STARTUP)
870 { /* 0x08 - CSIDL_RECENT */
871 CSIDL_Type_User,
872 RecentW,
873 MAKEINTRESOURCEW(IDS_RECENT)
875 { /* 0x09 - CSIDL_SENDTO */
876 CSIDL_Type_User,
877 SendToW,
878 MAKEINTRESOURCEW(IDS_SENDTO)
880 { /* 0x0a - CSIDL_BITBUCKET - Recycle Bin */
881 CSIDL_Type_Disallowed,
882 NULL,
883 NULL,
885 { /* 0x0b - CSIDL_STARTMENU */
886 CSIDL_Type_User,
887 Start_MenuW,
888 MAKEINTRESOURCEW(IDS_STARTMENU)
890 { /* 0x0c - CSIDL_MYDOCUMENTS */
891 CSIDL_Type_Disallowed, /* matches WinXP--can't get its path */
892 NULL,
893 NULL
895 { /* 0x0d - CSIDL_MYMUSIC */
896 CSIDL_Type_User,
897 My_MusicW,
898 MAKEINTRESOURCEW(IDS_MYMUSIC)
900 { /* 0x0e - CSIDL_MYVIDEO */
901 CSIDL_Type_User,
902 My_VideoW,
903 MAKEINTRESOURCEW(IDS_MYVIDEO)
905 { /* 0x0f - unassigned */
906 CSIDL_Type_Disallowed,
907 NULL,
908 NULL,
910 { /* 0x10 - CSIDL_DESKTOPDIRECTORY */
911 CSIDL_Type_User,
912 DesktopW,
913 MAKEINTRESOURCEW(IDS_DESKTOPDIRECTORY)
915 { /* 0x11 - CSIDL_DRIVES */
916 CSIDL_Type_Disallowed,
917 NULL,
918 NULL,
920 { /* 0x12 - CSIDL_NETWORK */
921 CSIDL_Type_Disallowed,
922 NULL,
923 NULL,
925 { /* 0x13 - CSIDL_NETHOOD */
926 CSIDL_Type_User,
927 NetHoodW,
928 MAKEINTRESOURCEW(IDS_NETHOOD)
930 { /* 0x14 - CSIDL_FONTS */
931 CSIDL_Type_WindowsPath,
932 NULL,
933 FontsW
935 { /* 0x15 - CSIDL_TEMPLATES */
936 CSIDL_Type_User,
937 TemplatesW,
938 MAKEINTRESOURCEW(IDS_TEMPLATES)
940 { /* 0x16 - CSIDL_COMMON_STARTMENU */
941 CSIDL_Type_AllUsers,
942 Common_Start_MenuW,
943 MAKEINTRESOURCEW(IDS_STARTMENU)
945 { /* 0x17 - CSIDL_COMMON_PROGRAMS */
946 CSIDL_Type_AllUsers,
947 Common_ProgramsW,
948 MAKEINTRESOURCEW(IDS_PROGRAMS)
950 { /* 0x18 - CSIDL_COMMON_STARTUP */
951 CSIDL_Type_AllUsers,
952 Common_StartUpW,
953 MAKEINTRESOURCEW(IDS_STARTUP)
955 { /* 0x19 - CSIDL_COMMON_DESKTOPDIRECTORY */
956 CSIDL_Type_AllUsers,
957 Common_DesktopW,
958 MAKEINTRESOURCEW(IDS_DESKTOP)
960 { /* 0x1a - CSIDL_APPDATA */
961 CSIDL_Type_User,
962 AppDataW,
963 MAKEINTRESOURCEW(IDS_APPDATA)
965 { /* 0x1b - CSIDL_PRINTHOOD */
966 CSIDL_Type_User,
967 PrintHoodW,
968 MAKEINTRESOURCEW(IDS_PRINTHOOD)
970 { /* 0x1c - CSIDL_LOCAL_APPDATA */
971 CSIDL_Type_User,
972 Local_AppDataW,
973 MAKEINTRESOURCEW(IDS_LOCAL_APPDATA)
975 { /* 0x1d - CSIDL_ALTSTARTUP */
976 CSIDL_Type_NonExistent,
977 NULL,
978 NULL
980 { /* 0x1e - CSIDL_COMMON_ALTSTARTUP */
981 CSIDL_Type_NonExistent,
982 NULL,
983 NULL
985 { /* 0x1f - CSIDL_COMMON_FAVORITES */
986 CSIDL_Type_AllUsers,
987 FavoritesW,
988 MAKEINTRESOURCEW(IDS_FAVORITES)
990 { /* 0x20 - CSIDL_INTERNET_CACHE */
991 CSIDL_Type_User,
992 CacheW,
993 MAKEINTRESOURCEW(IDS_INTERNET_CACHE)
995 { /* 0x21 - CSIDL_COOKIES */
996 CSIDL_Type_User,
997 CookiesW,
998 MAKEINTRESOURCEW(IDS_COOKIES)
1000 { /* 0x22 - CSIDL_HISTORY */
1001 CSIDL_Type_User,
1002 HistoryW,
1003 MAKEINTRESOURCEW(IDS_HISTORY)
1005 { /* 0x23 - CSIDL_COMMON_APPDATA */
1006 CSIDL_Type_AllUsers,
1007 Common_AppDataW,
1008 MAKEINTRESOURCEW(IDS_APPDATA)
1010 { /* 0x24 - CSIDL_WINDOWS */
1011 CSIDL_Type_WindowsPath,
1012 NULL,
1013 NULL
1015 { /* 0x25 - CSIDL_SYSTEM */
1016 CSIDL_Type_SystemPath,
1017 NULL,
1018 NULL
1020 { /* 0x26 - CSIDL_PROGRAM_FILES */
1021 CSIDL_Type_CurrVer,
1022 ProgramFilesDirW,
1023 MAKEINTRESOURCEW(IDS_PROGRAM_FILES)
1025 { /* 0x27 - CSIDL_MYPICTURES */
1026 CSIDL_Type_User,
1027 My_PicturesW,
1028 MAKEINTRESOURCEW(IDS_MYPICTURES)
1030 { /* 0x28 - CSIDL_PROFILE */
1031 CSIDL_Type_User,
1032 NULL,
1033 NULL
1035 { /* 0x29 - CSIDL_SYSTEMX86 */
1036 CSIDL_Type_NonExistent,
1037 NULL,
1038 NULL
1040 { /* 0x2a - CSIDL_PROGRAM_FILESX86 */
1041 CSIDL_Type_NonExistent,
1042 NULL,
1043 NULL
1045 { /* 0x2b - CSIDL_PROGRAM_FILES_COMMON */
1046 CSIDL_Type_CurrVer,
1047 CommonFilesDirW,
1048 MAKEINTRESOURCEW(IDS_PROGRAM_FILES_COMMON)
1050 { /* 0x2c - CSIDL_PROGRAM_FILES_COMMONX86 */
1051 CSIDL_Type_NonExistent,
1052 NULL,
1053 NULL
1055 { /* 0x2d - CSIDL_COMMON_TEMPLATES */
1056 CSIDL_Type_AllUsers,
1057 Common_TemplatesW,
1058 MAKEINTRESOURCEW(IDS_TEMPLATES)
1060 { /* 0x2e - CSIDL_COMMON_DOCUMENTS */
1061 CSIDL_Type_AllUsers,
1062 Common_DocumentsW,
1063 MAKEINTRESOURCEW(IDS_COMMON_DOCUMENTS)
1065 { /* 0x2f - CSIDL_COMMON_ADMINTOOLS */
1066 CSIDL_Type_AllUsers,
1067 Common_Administrative_ToolsW,
1068 MAKEINTRESOURCEW(IDS_ADMINTOOLS)
1070 { /* 0x30 - CSIDL_ADMINTOOLS */
1071 CSIDL_Type_User,
1072 Administrative_ToolsW,
1073 MAKEINTRESOURCEW(IDS_ADMINTOOLS)
1075 { /* 0x31 - CSIDL_CONNECTIONS */
1076 CSIDL_Type_Disallowed,
1077 NULL,
1078 NULL
1080 { /* 0x32 - unassigned */
1081 CSIDL_Type_Disallowed,
1082 NULL,
1083 NULL
1085 { /* 0x33 - unassigned */
1086 CSIDL_Type_Disallowed,
1087 NULL,
1088 NULL
1090 { /* 0x34 - unassigned */
1091 CSIDL_Type_Disallowed,
1092 NULL,
1093 NULL
1095 { /* 0x35 - CSIDL_COMMON_MUSIC */
1096 CSIDL_Type_AllUsers,
1097 CommonMusicW,
1098 MAKEINTRESOURCEW(IDS_COMMON_MUSIC)
1100 { /* 0x36 - CSIDL_COMMON_PICTURES */
1101 CSIDL_Type_AllUsers,
1102 CommonPicturesW,
1103 MAKEINTRESOURCEW(IDS_COMMON_PICTURES)
1105 { /* 0x37 - CSIDL_COMMON_VIDEO */
1106 CSIDL_Type_AllUsers,
1107 CommonVideoW,
1108 MAKEINTRESOURCEW(IDS_COMMON_VIDEO)
1110 { /* 0x38 - CSIDL_RESOURCES */
1111 CSIDL_Type_WindowsPath,
1112 NULL,
1113 ResourcesW
1115 { /* 0x39 - CSIDL_RESOURCES_LOCALIZED */
1116 CSIDL_Type_NonExistent,
1117 NULL,
1118 NULL
1120 { /* 0x3a - CSIDL_COMMON_OEM_LINKS */
1121 CSIDL_Type_NonExistent,
1122 NULL,
1123 NULL
1125 { /* 0x3b - CSIDL_CDBURN_AREA */
1126 CSIDL_Type_User,
1127 CD_BurningW,
1128 MAKEINTRESOURCEW(IDS_CDBURN_AREA)
1130 { /* 0x3c unassigned */
1131 CSIDL_Type_Disallowed,
1132 NULL,
1133 NULL
1135 { /* 0x3d - CSIDL_COMPUTERSNEARME */
1136 CSIDL_Type_Disallowed, /* FIXME */
1137 NULL,
1138 NULL
1140 { /* 0x3e - CSIDL_PROFILES */
1141 CSIDL_Type_Disallowed, /* oddly, this matches WinXP */
1142 NULL,
1143 NULL
1147 static HRESULT _SHExpandEnvironmentStrings(LPCWSTR szSrc, LPWSTR szDest);
1149 /* Gets the value named value from the registry key
1150 * rootKey\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
1151 * (or from rootKey\userPrefix\... if userPrefix is not NULL) into path, which
1152 * is assumed to be MAX_PATH WCHARs in length.
1153 * If it exists, expands the value and writes the expanded value to
1154 * rootKey\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
1155 * Returns successful error code if the value was retrieved from the registry,
1156 * and a failure otherwise.
1158 static HRESULT _SHGetUserShellFolderPath(HKEY rootKey, LPCWSTR userPrefix,
1159 LPCWSTR value, LPWSTR path)
1161 HRESULT hr;
1162 WCHAR shellFolderPath[MAX_PATH], userShellFolderPath[MAX_PATH];
1163 LPCWSTR pShellFolderPath, pUserShellFolderPath;
1164 DWORD dwDisp, dwType, dwPathLen = MAX_PATH;
1165 HKEY userShellFolderKey, shellFolderKey;
1167 TRACE("%p,%s,%s,%p\n",rootKey, debugstr_w(userPrefix), debugstr_w(value),
1168 path);
1170 if (userPrefix)
1172 strcpyW(shellFolderPath, userPrefix);
1173 PathAddBackslashW(shellFolderPath);
1174 strcatW(shellFolderPath, szSHFolders);
1175 pShellFolderPath = shellFolderPath;
1176 strcpyW(userShellFolderPath, userPrefix);
1177 PathAddBackslashW(userShellFolderPath);
1178 strcatW(userShellFolderPath, szSHUserFolders);
1179 pUserShellFolderPath = userShellFolderPath;
1181 else
1183 pUserShellFolderPath = szSHUserFolders;
1184 pShellFolderPath = szSHFolders;
1187 if (RegCreateKeyExW(rootKey, pShellFolderPath, 0, NULL, 0, KEY_ALL_ACCESS,
1188 NULL, &shellFolderKey, &dwDisp))
1190 TRACE("Failed to create %s\n", debugstr_w(pShellFolderPath));
1191 return E_FAIL;
1193 if (RegCreateKeyExW(rootKey, pUserShellFolderPath, 0, NULL, 0,
1194 KEY_ALL_ACCESS, NULL, &userShellFolderKey, &dwDisp))
1196 TRACE("Failed to create %s\n",
1197 debugstr_w(pUserShellFolderPath));
1198 RegCloseKey(shellFolderKey);
1199 return E_FAIL;
1202 if (!RegQueryValueExW(userShellFolderKey, value, NULL, &dwType,
1203 (LPBYTE)path, &dwPathLen) && (dwType == REG_EXPAND_SZ || dwType == REG_SZ))
1205 LONG ret;
1207 path[dwPathLen / sizeof(WCHAR)] = '\0';
1208 if (dwType == REG_EXPAND_SZ && path[0] == '%')
1210 WCHAR szTemp[MAX_PATH];
1212 _SHExpandEnvironmentStrings(path, szTemp);
1213 lstrcpynW(path, szTemp, MAX_PATH);
1215 ret = RegSetValueExW(shellFolderKey, value, 0, REG_SZ, (LPBYTE)path,
1216 (strlenW(path) + 1) * sizeof(WCHAR));
1217 if (ret != ERROR_SUCCESS)
1218 hr = HRESULT_FROM_WIN32(ret);
1219 else
1220 hr = S_OK;
1222 else
1223 hr = E_FAIL;
1224 RegCloseKey(shellFolderKey);
1225 RegCloseKey(userShellFolderKey);
1226 TRACE("returning 0x%08lx\n", hr);
1227 return hr;
1230 /* Gets a 'semi-expanded' default value of the CSIDL with index folder into
1231 * pszPath, based on the entries in CSIDL_Data. By semi-expanded, I mean:
1232 * - The entry's szDefaultPath may be either a string value or an integer
1233 * resource identifier. In the latter case, the string value of the resource
1234 * is written.
1235 * - Depending on the entry's type, the path may begin with an (unexpanded)
1236 * environment variable name. The caller is responsible for expanding
1237 * environment strings if so desired.
1238 * The types that are prepended with environment variables are:
1239 * CSIDL_Type_User: %USERPROFILE%
1240 * CSIDL_Type_AllUsers: %ALLUSERSPROFILE%
1241 * CSIDL_Type_CurrVer: %SystemDrive%
1242 * (Others might make sense too, but as yet are unneeded.)
1243 * FIXME: there are two special cases for the default value:
1244 * - the "My Documents" (CSIDL_PERSONAL) entry should be $HOME
1245 * - the CSIDL_DESKTOP and CSIDL_DESKTOPDIRECTORY (which have the same path)
1246 * should be $HOME/Desktop if it exists
1247 * But, $HOME doesn't seem to be inherited into the Wine environment. I could
1248 * use getenv, but this returns me a UNIX path, which may or may not be
1249 * reachable from any currently mounted DOS drives.
1251 static HRESULT _SHGetDefaultValue(BYTE folder, LPWSTR pszPath)
1253 HRESULT hr;
1254 WCHAR resourcePath[MAX_PATH];
1255 LPCWSTR pDefaultPath = NULL;
1257 TRACE("0x%02x,%p\n", folder, pszPath);
1259 if (folder >= sizeof(CSIDL_Data) / sizeof(CSIDL_Data[0]))
1260 return E_INVALIDARG;
1261 if (!pszPath)
1262 return E_INVALIDARG;
1264 if (CSIDL_Data[folder].szDefaultPath &&
1265 IS_INTRESOURCE(CSIDL_Data[folder].szDefaultPath))
1267 if (LoadStringW(shell32_hInstance,
1268 (UINT)CSIDL_Data[folder].szDefaultPath, resourcePath, MAX_PATH))
1270 hr = S_OK;
1271 pDefaultPath = resourcePath;
1273 else
1275 FIXME("(%d,%s), LoadString failed, missing translation?\n", folder,
1276 debugstr_w(pszPath));
1277 hr = E_FAIL;
1280 else
1282 hr = S_OK;
1283 pDefaultPath = CSIDL_Data[folder].szDefaultPath;
1285 if (SUCCEEDED(hr))
1287 switch (CSIDL_Data[folder].type)
1289 case CSIDL_Type_User:
1290 strcpyW(pszPath, UserProfileW);
1291 break;
1292 case CSIDL_Type_AllUsers:
1293 strcpyW(pszPath, AllUsersProfileW);
1294 break;
1295 case CSIDL_Type_CurrVer:
1296 strcpyW(pszPath, SystemDriveW);
1297 break;
1298 default:
1299 ; /* no corresponding env. var, do nothing */
1301 if (pDefaultPath)
1303 PathAddBackslashW(pszPath);
1304 strcatW(pszPath, pDefaultPath);
1307 TRACE("returning 0x%08lx\n", hr);
1308 return hr;
1311 /* Gets the (unexpanded) value of the folder with index folder into pszPath.
1312 * The folder's type is assumed to be CSIDL_Type_CurrVer. Its default value
1313 * can be overridden in the HKLM\\szCurrentVersion key.
1314 * If dwFlags has SHGFP_TYPE_DEFAULT set or if the value isn't overridden in
1315 * the registry, uses _SHGetDefaultValue to get the value.
1317 static HRESULT _SHGetCurrentVersionPath(DWORD dwFlags, BYTE folder,
1318 LPWSTR pszPath)
1320 HRESULT hr;
1322 TRACE("0x%08lx,0x%02x,%p\n", dwFlags, folder, pszPath);
1324 if (folder >= sizeof(CSIDL_Data) / sizeof(CSIDL_Data[0]))
1325 return E_INVALIDARG;
1326 if (CSIDL_Data[folder].type != CSIDL_Type_CurrVer)
1327 return E_INVALIDARG;
1328 if (!pszPath)
1329 return E_INVALIDARG;
1331 if (dwFlags & SHGFP_TYPE_DEFAULT)
1332 hr = _SHGetDefaultValue(folder, pszPath);
1333 else
1335 HKEY hKey;
1336 DWORD dwDisp;
1338 if (RegCreateKeyExW(HKEY_LOCAL_MACHINE, szCurrentVersion, 0,
1339 NULL, 0, KEY_ALL_ACCESS, NULL, &hKey, &dwDisp))
1340 hr = E_FAIL;
1341 else
1343 DWORD dwType, dwPathLen = MAX_PATH * sizeof(WCHAR);
1345 if (RegQueryValueExW(hKey, CSIDL_Data[folder].szValueName, NULL,
1346 &dwType, (LPBYTE)pszPath, &dwPathLen) ||
1347 (dwType != REG_SZ && dwType != REG_EXPAND_SZ))
1349 hr = _SHGetDefaultValue(folder, pszPath);
1350 dwType = REG_EXPAND_SZ;
1351 RegSetValueExW(hKey, CSIDL_Data[folder].szValueName, 0, dwType,
1352 (LPBYTE)pszPath, (strlenW(pszPath)+1)*sizeof(WCHAR));
1354 else
1356 pszPath[dwPathLen / sizeof(WCHAR)] = '\0';
1357 hr = S_OK;
1359 RegCloseKey(hKey);
1362 TRACE("returning 0x%08lx (output path is %s)\n", hr, debugstr_w(pszPath));
1363 return hr;
1366 /* Gets the user's path (unexpanded) for the CSIDL with index folder:
1367 * If SHGFP_TYPE_DEFAULT is set, calls _SHGetDefaultValue for it. Otherwise
1368 * calls _SHGetUserShellFolderPath for it. Where it looks depends on hToken:
1369 * - if hToken is -1, looks in HKEY_USERS\.Default
1370 * - otherwise looks first in HKEY_CURRENT_USER, followed by HKEY_LOCAL_MACHINE
1371 * if HKEY_CURRENT_USER doesn't contain any entries. If both fail, finally
1372 * calls _SHGetDefaultValue for it.
1374 static HRESULT _SHGetUserProfilePath(HANDLE hToken, DWORD dwFlags, BYTE folder,
1375 LPWSTR pszPath)
1377 HRESULT hr;
1379 TRACE("%p,0x%08lx,0x%02x,%p\n", hToken, dwFlags, folder, pszPath);
1381 if (folder >= sizeof(CSIDL_Data) / sizeof(CSIDL_Data[0]))
1382 return E_INVALIDARG;
1383 if (CSIDL_Data[folder].type != CSIDL_Type_User)
1384 return E_INVALIDARG;
1385 if (!pszPath)
1386 return E_INVALIDARG;
1388 /* Only the current user and the default user are supported right now
1389 * I'm afraid.
1390 * FIXME: should be able to call GetTokenInformation on the token,
1391 * then call ConvertSidToStringSidW on it to get the user prefix.
1392 * But Wine's registry doesn't store user info by sid, it stores it
1393 * by user name (and I don't know how to convert from a token to a
1394 * user name).
1396 if (hToken != NULL && hToken != (HANDLE)-1)
1398 FIXME("unsupported for user other than current or default\n");
1399 return E_FAIL;
1402 if (dwFlags & SHGFP_TYPE_DEFAULT)
1403 hr = _SHGetDefaultValue(folder, pszPath);
1404 else
1406 LPCWSTR userPrefix = NULL;
1407 HKEY hRootKey;
1409 if (hToken == (HANDLE)-1)
1411 hRootKey = HKEY_USERS;
1412 userPrefix = DefaultW;
1414 else /* hToken == NULL, other values disallowed above */
1415 hRootKey = HKEY_CURRENT_USER;
1416 hr = _SHGetUserShellFolderPath(hRootKey, userPrefix,
1417 CSIDL_Data[folder].szValueName, pszPath);
1418 if (FAILED(hr) && hRootKey != HKEY_LOCAL_MACHINE)
1419 hr = _SHGetUserShellFolderPath(HKEY_LOCAL_MACHINE, NULL,
1420 CSIDL_Data[folder].szValueName, pszPath);
1421 if (FAILED(hr))
1422 hr = _SHGetDefaultValue(folder, pszPath);
1424 TRACE("returning 0x%08lx (output path is %s)\n", hr, debugstr_w(pszPath));
1425 return hr;
1428 /* Gets the (unexpanded) path for the CSIDL with index folder. If dwFlags has
1429 * SHGFP_TYPE_DEFAULT set, calls _SHGetDefaultValue. Otherwise calls
1430 * _SHGetUserShellFolderPath for it, looking only in HKEY_LOCAL_MACHINE.
1431 * If this fails, falls back to _SHGetDefaultValue.
1433 static HRESULT _SHGetAllUsersProfilePath(DWORD dwFlags, BYTE folder,
1434 LPWSTR pszPath)
1436 HRESULT hr;
1438 TRACE("0x%08lx,0x%02x,%p\n", dwFlags, folder, pszPath);
1440 if (folder >= sizeof(CSIDL_Data) / sizeof(CSIDL_Data[0]))
1441 return E_INVALIDARG;
1442 if (CSIDL_Data[folder].type != CSIDL_Type_AllUsers)
1443 return E_INVALIDARG;
1444 if (!pszPath)
1445 return E_INVALIDARG;
1447 if (dwFlags & SHGFP_TYPE_DEFAULT)
1448 hr = _SHGetDefaultValue(folder, pszPath);
1449 else
1451 hr = _SHGetUserShellFolderPath(HKEY_LOCAL_MACHINE, NULL,
1452 CSIDL_Data[folder].szValueName, pszPath);
1453 if (FAILED(hr))
1454 hr = _SHGetDefaultValue(folder, pszPath);
1456 TRACE("returning 0x%08lx (output path is %s)\n", hr, debugstr_w(pszPath));
1457 return hr;
1460 static HRESULT _SHOpenProfilesKey(PHKEY pKey)
1462 LONG lRet;
1463 DWORD disp;
1465 lRet = RegCreateKeyExW(HKEY_LOCAL_MACHINE, ProfileListW, 0, NULL, 0,
1466 KEY_ALL_ACCESS, NULL, pKey, &disp);
1467 return HRESULT_FROM_WIN32(lRet);
1470 /* Reads the value named szValueName from the key profilesKey (assumed to be
1471 * opened by _SHOpenProfilesKey) into szValue, which is assumed to be MAX_PATH
1472 * WCHARs in length. If it doesn't exist, returns szDefault (and saves
1473 * szDefault to the registry).
1475 static HRESULT _SHGetProfilesValue(HKEY profilesKey, LPCWSTR szValueName,
1476 LPWSTR szValue, LPCWSTR szDefault)
1478 HRESULT hr;
1479 DWORD type, dwPathLen = MAX_PATH * sizeof(WCHAR);
1480 LONG lRet;
1482 TRACE("%p,%s,%p,%s\n", profilesKey, debugstr_w(szValueName), szValue,
1483 debugstr_w(szDefault));
1484 lRet = RegQueryValueExW(profilesKey, szValueName, NULL, &type,
1485 (LPBYTE)szValue, &dwPathLen);
1486 if (!lRet && (type == REG_SZ || type == REG_EXPAND_SZ) && dwPathLen
1487 && *szValue)
1489 dwPathLen /= sizeof(WCHAR);
1490 szValue[dwPathLen] = '\0';
1491 hr = S_OK;
1493 else
1495 /* Missing or invalid value, set a default */
1496 lstrcpynW(szValue, szDefault, MAX_PATH);
1497 TRACE("Setting missing value %s to %s\n", debugstr_w(szValueName),
1498 debugstr_w(szValue));
1499 lRet = RegSetValueExW(profilesKey, szValueName, 0, REG_EXPAND_SZ,
1500 (LPBYTE)szValue,
1501 (strlenW(szValue) + 1) * sizeof(WCHAR));
1502 if (lRet)
1503 hr = HRESULT_FROM_WIN32(lRet);
1504 else
1505 hr = S_OK;
1507 TRACE("returning 0x%08lx (output value is %s)\n", hr, debugstr_w(szValue));
1508 return hr;
1511 /* Attempts to expand environment variables from szSrc into szDest, which is
1512 * assumed to be MAX_PATH characters in length. Before referring to the
1513 * environment, handles a few variables directly, because the environment
1514 * variables may not be set when this is called (as during Wine's installation
1515 * when default values are being written to the registry).
1516 * The directly handled environment variables, and their source, are:
1517 * - ALLUSERSPROFILE, USERPROFILE: reads from the registry
1518 * - SystemDrive: uses GetSystemDirectoryW and uses the drive portion of its
1519 * path
1520 * If one of the directly handled environment variables is expanded, only
1521 * expands a single variable, and only in the beginning of szSrc.
1523 static HRESULT _SHExpandEnvironmentStrings(LPCWSTR szSrc, LPWSTR szDest)
1525 HRESULT hr;
1526 WCHAR szTemp[MAX_PATH], szProfilesPrefix[MAX_PATH] = { 0 };
1527 HKEY key = NULL;
1529 TRACE("%s, %p\n", debugstr_w(szSrc), szDest);
1531 if (!szSrc || !szDest) return E_INVALIDARG;
1533 /* short-circuit if there's nothing to expand */
1534 if (szSrc[0] != '%')
1536 strcpyW(szDest, szSrc);
1537 hr = S_OK;
1538 goto end;
1540 /* Get the profile prefix, we'll probably be needing it */
1541 hr = _SHOpenProfilesKey(&key);
1542 if (SUCCEEDED(hr))
1544 WCHAR szDefaultProfilesPrefix[MAX_PATH];
1546 strcpyW(szDefaultProfilesPrefix, SystemDriveW);
1547 PathAppendW(szDefaultProfilesPrefix, szDefaultProfileDirW);
1548 hr = _SHGetProfilesValue(key, ProfilesDirectoryW, szProfilesPrefix,
1549 szDefaultProfilesPrefix);
1552 *szDest = 0;
1553 strcpyW(szTemp, szSrc);
1554 while (SUCCEEDED(hr) && szTemp[0] == '%')
1556 if (!strncmpiW(szTemp, AllUsersProfileW, strlenW(AllUsersProfileW)))
1558 WCHAR szAllUsers[MAX_PATH];
1560 strcpyW(szDest, szProfilesPrefix);
1561 hr = _SHGetProfilesValue(key, AllUsersProfileValueW,
1562 szAllUsers, AllUsersW);
1563 PathAppendW(szDest, szAllUsers);
1564 PathAppendW(szDest, szTemp + strlenW(AllUsersProfileW));
1566 else if (!strncmpiW(szTemp, UserProfileW, strlenW(UserProfileW)))
1568 WCHAR userName[MAX_PATH];
1569 DWORD userLen = MAX_PATH;
1571 strcpyW(szDest, szProfilesPrefix);
1572 GetUserNameW(userName, &userLen);
1573 PathAppendW(szDest, userName);
1574 PathAppendW(szDest, szTemp + strlenW(UserProfileW));
1576 else if (!strncmpiW(szTemp, SystemDriveW, strlenW(SystemDriveW)))
1578 GetSystemDirectoryW(szDest, MAX_PATH);
1579 if (szDest[1] != ':')
1581 FIXME("non-drive system paths unsupported\n");
1582 hr = E_FAIL;
1584 else
1586 strcpyW(szDest + 3, szTemp + strlenW(SystemDriveW) + 1);
1587 hr = S_OK;
1590 else
1592 DWORD ret = ExpandEnvironmentStringsW(szSrc, szDest, MAX_PATH);
1594 if (ret > MAX_PATH)
1595 hr = HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
1596 else if (ret == 0)
1597 hr = HRESULT_FROM_WIN32(GetLastError());
1598 else
1599 hr = S_OK;
1601 if (SUCCEEDED(hr) && szDest[0] == '%')
1602 strcpyW(szTemp, szDest);
1603 else
1605 /* terminate loop */
1606 szTemp[0] = '\0';
1609 end:
1610 if (key)
1611 RegCloseKey(key);
1612 TRACE("returning 0x%08lx (input was %s, output is %s)\n", hr,
1613 debugstr_w(szSrc), debugstr_w(szDest));
1614 return hr;
1617 /*************************************************************************
1618 * SHGetFolderPathW [SHELL32.@]
1620 * NOTES
1621 * Converts nFolder to path. Most values can be overridden in either
1622 * HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
1623 * or in the same location in HKLM.
1624 * The registry usage is explained by the following tech note:
1625 * http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/36173.asp
1626 * The "Shell Folders" registry key was used in NT4 and earlier systems.
1627 * Beginning with Windows 2000, the "User Shell Folders" key is used, so
1628 * changes made to it are made to the former key too. This synchronization is
1629 * done on-demand: not until someone requests the value of one of these paths
1630 * (by calling one of the SHGet functions) is the value synchronized.
1631 * Furthermore, as explained here:
1632 * http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/regentry/36276.asp
1633 * the HKCU paths take precedence over the HKLM paths.
1635 **********************************************************************/
1636 HRESULT WINAPI SHGetFolderPathW(
1637 HWND hwndOwner,
1638 int nFolder,
1639 HANDLE hToken,
1640 DWORD dwFlags,
1641 LPWSTR pszPath)
1643 HRESULT hr;
1644 WCHAR szBuildPath[MAX_PATH], szTemp[MAX_PATH];
1645 DWORD folder = nFolder & CSIDL_FOLDER_MASK;
1646 CSIDL_Type type;
1647 int ret;
1649 TRACE("%p,%p,nFolder=0x%04x\n", hwndOwner,pszPath,nFolder);
1651 /* Windows always NULL-terminates the resulting path regardless of success
1652 * or failure, so do so first
1654 if (pszPath)
1655 *pszPath = '\0';
1656 if (folder >= sizeof(CSIDL_Data) / sizeof(CSIDL_Data[0]))
1657 return E_INVALIDARG;
1658 szTemp[0] = 0;
1659 type = CSIDL_Data[folder].type;
1660 switch (type)
1662 case CSIDL_Type_Disallowed:
1663 hr = E_INVALIDARG;
1664 break;
1665 case CSIDL_Type_NonExistent:
1666 hr = S_FALSE;
1667 break;
1668 case CSIDL_Type_WindowsPath:
1669 GetWindowsDirectoryW(szTemp, MAX_PATH);
1670 if (CSIDL_Data[folder].szDefaultPath &&
1671 !IS_INTRESOURCE(CSIDL_Data[folder].szDefaultPath) &&
1672 *CSIDL_Data[folder].szDefaultPath)
1674 PathAddBackslashW(szTemp);
1675 strcatW(szTemp, CSIDL_Data[folder].szDefaultPath);
1677 hr = S_OK;
1678 break;
1679 case CSIDL_Type_SystemPath:
1680 GetSystemDirectoryW(szTemp, MAX_PATH);
1681 if (CSIDL_Data[folder].szDefaultPath &&
1682 !IS_INTRESOURCE(CSIDL_Data[folder].szDefaultPath) &&
1683 *CSIDL_Data[folder].szDefaultPath)
1685 PathAddBackslashW(szTemp);
1686 strcatW(szTemp, CSIDL_Data[folder].szDefaultPath);
1688 hr = S_OK;
1689 break;
1690 case CSIDL_Type_CurrVer:
1691 hr = _SHGetCurrentVersionPath(dwFlags, folder, szTemp);
1692 break;
1693 case CSIDL_Type_User:
1694 hr = _SHGetUserProfilePath(hToken, dwFlags, folder, szTemp);
1695 break;
1696 case CSIDL_Type_AllUsers:
1697 hr = _SHGetAllUsersProfilePath(dwFlags, folder, szTemp);
1698 break;
1699 default:
1700 FIXME("bogus type %d, please fix\n", type);
1701 hr = E_INVALIDARG;
1702 break;
1705 /* Expand environment strings if necessary */
1706 if (*szTemp == '%')
1707 hr = _SHExpandEnvironmentStrings(szTemp, szBuildPath);
1708 else
1709 strcpyW(szBuildPath, szTemp);
1710 /* Copy the path if it's available before we might return */
1711 if (SUCCEEDED(hr) && pszPath)
1712 strcpyW(pszPath, szBuildPath);
1714 if (FAILED(hr)) goto end;
1716 /* if we don't care about existing directories we are ready */
1717 if(nFolder & CSIDL_FLAG_DONT_VERIFY) goto end;
1719 if (PathFileExistsW(szBuildPath)) goto end;
1721 /* not existing but we are not allowed to create it. The return value
1722 * is verified against shell32 version 6.0.
1724 if (!(nFolder & CSIDL_FLAG_CREATE))
1726 hr = HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND);
1727 goto end;
1730 /* create directory/directories */
1731 ret = SHCreateDirectoryExW(hwndOwner, szBuildPath, NULL);
1732 if (ret && ret != ERROR_ALREADY_EXISTS)
1734 ERR("Failed to create directory '%s'.\n", debugstr_w(szBuildPath));
1735 hr = E_FAIL;
1736 goto end;
1739 TRACE("Created missing system directory '%s'\n", debugstr_w(szBuildPath));
1740 end:
1741 TRACE("returning 0x%08lx (final path is %s)\n", hr, debugstr_w(szBuildPath));
1742 return hr;
1745 /*************************************************************************
1746 * SHGetFolderPathA [SHELL32.@]
1748 HRESULT WINAPI SHGetFolderPathA(
1749 HWND hwndOwner,
1750 int nFolder,
1751 HANDLE hToken,
1752 DWORD dwFlags,
1753 LPSTR pszPath)
1755 WCHAR szTemp[MAX_PATH];
1756 HRESULT hr;
1758 TRACE("%p,%p,nFolder=0x%04x\n",hwndOwner,pszPath,nFolder);
1760 if (pszPath)
1761 *pszPath = '\0';
1762 hr = SHGetFolderPathW(hwndOwner, nFolder, hToken, dwFlags, szTemp);
1763 if (SUCCEEDED(hr) && pszPath)
1764 WideCharToMultiByte(CP_ACP, 0, szTemp, -1, pszPath, MAX_PATH, NULL,
1765 NULL);
1767 return hr;
1770 /* For each folder in folders, if its value has not been set in the registry,
1771 * calls _SHGetUserProfilePath or _SHGetAllUsersProfilePath (depending on the
1772 * folder's type) to get the unexpanded value first.
1773 * Writes the unexpanded value to User Shell Folders, and queries it with
1774 * SHGetFolderPathW to force the creation of the directory if it doesn't
1775 * already exist. SHGetFolderPathW also returns the expanded value, which
1776 * this then writes to Shell Folders.
1778 static HRESULT _SHRegisterFolders(HKEY hRootKey, HANDLE hToken,
1779 LPCWSTR szUserShellFolderPath, LPCWSTR szShellFolderPath, const UINT folders[],
1780 UINT foldersLen)
1782 UINT i;
1783 WCHAR path[MAX_PATH];
1784 HRESULT hr = S_OK;
1785 HKEY hUserKey = NULL, hKey = NULL;
1786 DWORD dwDisp, dwType, dwPathLen;
1787 LONG ret;
1789 TRACE("%p,%p,%s,%p,%u\n", hRootKey, hToken,
1790 debugstr_w(szUserShellFolderPath), folders, foldersLen);
1792 ret = RegCreateKeyExW(hRootKey, szUserShellFolderPath, 0, NULL, 0,
1793 KEY_ALL_ACCESS, NULL, &hUserKey, &dwDisp);
1794 if (ret)
1795 hr = HRESULT_FROM_WIN32(ret);
1796 else
1798 ret = RegCreateKeyExW(hRootKey, szShellFolderPath, 0, NULL, 0,
1799 KEY_ALL_ACCESS, NULL, &hKey, &dwDisp);
1800 if (ret)
1801 hr = HRESULT_FROM_WIN32(ret);
1803 for (i = 0; SUCCEEDED(hr) && i < foldersLen; i++)
1805 dwPathLen = MAX_PATH * sizeof(WCHAR);
1806 if (RegQueryValueExW(hUserKey, CSIDL_Data[folders[i]].szValueName, NULL,
1807 &dwType, (LPBYTE)path, &dwPathLen) || (dwType != REG_SZ &&
1808 dwType != REG_EXPAND_SZ))
1810 *path = '\0';
1811 if (CSIDL_Data[folders[i]].type == CSIDL_Type_User)
1812 _SHGetUserProfilePath(hToken, SHGFP_TYPE_DEFAULT, folders[i],
1813 path);
1814 else if (CSIDL_Data[folders[i]].type == CSIDL_Type_AllUsers)
1815 _SHGetAllUsersProfilePath(SHGFP_TYPE_DEFAULT, folders[i], path);
1816 else
1817 hr = E_FAIL;
1818 if (*path)
1820 ret = RegSetValueExW(hUserKey,
1821 CSIDL_Data[folders[i]].szValueName, 0, REG_EXPAND_SZ,
1822 (LPBYTE)path, (strlenW(path) + 1) * sizeof(WCHAR));
1823 if (ret)
1824 hr = HRESULT_FROM_WIN32(ret);
1825 else
1827 hr = SHGetFolderPathW(NULL, folders[i] | CSIDL_FLAG_CREATE,
1828 hToken, SHGFP_TYPE_DEFAULT, path);
1829 ret = RegSetValueExW(hKey,
1830 CSIDL_Data[folders[i]].szValueName, 0, REG_SZ,
1831 (LPBYTE)path, (strlenW(path) + 1) * sizeof(WCHAR));
1832 if (ret)
1833 hr = HRESULT_FROM_WIN32(ret);
1838 if (hUserKey)
1839 RegCloseKey(hUserKey);
1840 if (hKey)
1841 RegCloseKey(hKey);
1843 TRACE("returning 0x%08lx\n", hr);
1844 return hr;
1847 static HRESULT _SHRegisterUserShellFolders(BOOL bDefault)
1849 static const UINT folders[] = {
1850 CSIDL_PROGRAMS,
1851 CSIDL_PERSONAL,
1852 CSIDL_FAVORITES,
1853 CSIDL_STARTUP,
1854 CSIDL_RECENT,
1855 CSIDL_SENDTO,
1856 CSIDL_STARTMENU,
1857 CSIDL_DESKTOPDIRECTORY,
1858 CSIDL_NETHOOD,
1859 CSIDL_TEMPLATES,
1860 CSIDL_PRINTHOOD,
1861 CSIDL_COOKIES,
1862 CSIDL_HISTORY,
1864 WCHAR userShellFolderPath[MAX_PATH], shellFolderPath[MAX_PATH];
1865 LPCWSTR pUserShellFolderPath, pShellFolderPath;
1866 HRESULT hr = S_OK;
1867 HKEY hRootKey;
1868 HANDLE hToken;
1870 TRACE("%s\n", bDefault ? "TRUE" : "FALSE");
1871 if (bDefault)
1873 hToken = (HANDLE)-1;
1874 hRootKey = HKEY_USERS;
1875 strcpyW(userShellFolderPath, DefaultW);
1876 PathAddBackslashW(userShellFolderPath);
1877 strcatW(userShellFolderPath, szSHUserFolders);
1878 pUserShellFolderPath = userShellFolderPath;
1879 strcpyW(shellFolderPath, DefaultW);
1880 PathAddBackslashW(shellFolderPath);
1881 strcatW(shellFolderPath, szSHFolders);
1882 pShellFolderPath = shellFolderPath;
1884 else
1886 hToken = NULL;
1887 hRootKey = HKEY_CURRENT_USER;
1888 pUserShellFolderPath = szSHUserFolders;
1889 pShellFolderPath = szSHFolders;
1892 hr = _SHRegisterFolders(hRootKey, hToken, pUserShellFolderPath,
1893 pShellFolderPath, folders, sizeof(folders) / sizeof(folders[0]));
1894 TRACE("returning 0x%08lx\n", hr);
1895 return hr;
1898 static HRESULT _SHRegisterCommonShellFolders(void)
1900 static const UINT folders[] = {
1901 CSIDL_COMMON_STARTMENU,
1902 CSIDL_COMMON_PROGRAMS,
1903 CSIDL_COMMON_STARTUP,
1904 CSIDL_COMMON_DESKTOPDIRECTORY,
1905 CSIDL_COMMON_FAVORITES,
1906 CSIDL_COMMON_APPDATA,
1907 CSIDL_COMMON_TEMPLATES,
1908 CSIDL_COMMON_DOCUMENTS,
1910 HRESULT hr;
1912 TRACE("\n");
1913 hr = _SHRegisterFolders(HKEY_LOCAL_MACHINE, NULL, szSHUserFolders,
1914 szSHFolders, folders, sizeof(folders) / sizeof(folders[0]));
1915 TRACE("returning 0x%08lx\n", hr);
1916 return hr;
1919 /* Register the default values in the registry, as some apps seem to depend
1920 * on their presence. The set registered was taken from Windows XP.
1922 HRESULT SHELL_RegisterShellFolders(void)
1924 HRESULT hr = _SHRegisterUserShellFolders(TRUE);
1926 if (SUCCEEDED(hr))
1927 hr = _SHRegisterUserShellFolders(FALSE);
1928 if (SUCCEEDED(hr))
1929 hr = _SHRegisterCommonShellFolders();
1930 return hr;
1933 /*************************************************************************
1934 * SHGetSpecialFolderPathA [SHELL32.@]
1936 BOOL WINAPI SHGetSpecialFolderPathA (
1937 HWND hwndOwner,
1938 LPSTR szPath,
1939 int nFolder,
1940 BOOL bCreate)
1942 return (SHGetFolderPathA(
1943 hwndOwner,
1944 nFolder + (bCreate ? CSIDL_FLAG_CREATE : 0),
1945 NULL,
1947 szPath)) == S_OK ? TRUE : FALSE;
1950 /*************************************************************************
1951 * SHGetSpecialFolderPathW
1953 BOOL WINAPI SHGetSpecialFolderPathW (
1954 HWND hwndOwner,
1955 LPWSTR szPath,
1956 int nFolder,
1957 BOOL bCreate)
1959 return (SHGetFolderPathW(
1960 hwndOwner,
1961 nFolder + (bCreate ? CSIDL_FLAG_CREATE : 0),
1962 NULL,
1964 szPath)) == S_OK ? TRUE : FALSE;
1967 /*************************************************************************
1968 * SHGetSpecialFolderPath (SHELL32.175)
1970 BOOL WINAPI SHGetSpecialFolderPathAW (
1971 HWND hwndOwner,
1972 LPVOID szPath,
1973 int nFolder,
1974 BOOL bCreate)
1977 if (SHELL_OsIsUnicode())
1978 return SHGetSpecialFolderPathW (hwndOwner, szPath, nFolder, bCreate);
1979 return SHGetSpecialFolderPathA (hwndOwner, szPath, nFolder, bCreate);
1982 /*************************************************************************
1983 * SHGetFolderLocation [SHELL32.@]
1985 * NOTES
1986 * Gets the folder locations from the registry and creates a pidl.
1987 * Creates missing reg keys and directories.
1988 * Mostly forwards to SHGetFolderPathW, but a few values of nFolder return
1989 * virtual folders that are handled here.
1991 * PARAMS
1992 * hwndOwner [I]
1993 * nFolder [I] CSIDL_xxxxx
1994 * hToken [I] token representing user, or NULL for current user, or -1 for
1995 * default user
1996 * dwReserved [I] must be zero
1997 * ppidl [O] PIDL of a special folder
1999 * NOTES
2001 HRESULT WINAPI SHGetFolderLocation(
2002 HWND hwndOwner,
2003 int nFolder,
2004 HANDLE hToken,
2005 DWORD dwReserved,
2006 LPITEMIDLIST *ppidl)
2008 HRESULT hr = E_INVALIDARG;
2010 TRACE("%p 0x%08x %p 0x%08lx %p\n",
2011 hwndOwner, nFolder, hToken, dwReserved, ppidl);
2013 if (!ppidl)
2014 return E_INVALIDARG;
2015 if (dwReserved)
2016 return E_INVALIDARG;
2018 /* The virtual folders' locations are not user-dependent */
2019 *ppidl = NULL;
2020 switch (nFolder)
2022 case CSIDL_DESKTOP:
2023 *ppidl = _ILCreateDesktop();
2024 break;
2026 case CSIDL_INTERNET:
2027 *ppidl = _ILCreateIExplore();
2028 break;
2030 case CSIDL_CONTROLS:
2031 *ppidl = _ILCreateControlPanel();
2032 break;
2034 case CSIDL_PRINTERS:
2035 *ppidl = _ILCreatePrinters();
2036 break;
2038 case CSIDL_BITBUCKET:
2039 *ppidl = _ILCreateBitBucket();
2040 break;
2042 case CSIDL_DRIVES:
2043 *ppidl = _ILCreateMyComputer();
2044 break;
2046 case CSIDL_NETWORK:
2047 *ppidl = _ILCreateNetwork();
2048 break;
2050 default:
2052 WCHAR szPath[MAX_PATH];
2054 hr = SHGetFolderPathW(hwndOwner, nFolder, hToken,
2055 SHGFP_TYPE_CURRENT, szPath);
2056 if (SUCCEEDED(hr))
2058 DWORD attributes=0;
2060 TRACE("Value=%s\n", debugstr_w(szPath));
2061 hr = SHILCreateFromPathW(szPath, ppidl, &attributes);
2063 else if (hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND))
2065 /* unlike SHGetFolderPath, SHGetFolderLocation in shell32
2066 * version 6.0 returns E_FAIL for nonexistent paths
2068 hr = E_FAIL;
2072 if(*ppidl)
2073 hr = NOERROR;
2075 TRACE("-- (new pidl %p)\n",*ppidl);
2076 return hr;
2079 /*************************************************************************
2080 * SHGetSpecialFolderLocation [SHELL32.@]
2082 * NOTES
2083 * In NT5, SHGetSpecialFolderLocation needs the <winntdir>/Recent
2084 * directory.
2086 HRESULT WINAPI SHGetSpecialFolderLocation(
2087 HWND hwndOwner,
2088 INT nFolder,
2089 LPITEMIDLIST * ppidl)
2091 HRESULT hr = E_INVALIDARG;
2093 TRACE("(%p,0x%x,%p)\n", hwndOwner,nFolder,ppidl);
2095 if (!ppidl)
2096 return E_INVALIDARG;
2098 hr = SHGetFolderLocation(hwndOwner, nFolder, NULL, 0, ppidl);
2099 return hr;