shell32: Fix FOLDERID_Document definition.

This commit is contained in:
Mariusz Pluciński 2011-07-19 16:19:39 +02:00 committed by Alexandre Julliard
parent dfa35a529f
commit ea990a3f43
2 changed files with 3 additions and 3 deletions

View File

@ -872,7 +872,7 @@ static const CSIDL_DATA CSIDL_Data[] =
NULL NULL
}, },
{ /* 0x05 - CSIDL_PERSONAL */ { /* 0x05 - CSIDL_PERSONAL */
&GUID_NULL, &FOLDERID_Documents,
CSIDL_Type_User, CSIDL_Type_User,
PersonalW, PersonalW,
MAKEINTRESOURCEW(IDS_PERSONAL) MAKEINTRESOURCEW(IDS_PERSONAL)
@ -1256,7 +1256,7 @@ static const CSIDL_DATA CSIDL_Data[] =
NULL NULL
}, },
{ /* 0x45 */ { /* 0x45 */
&FOLDERID_Documents, &GUID_NULL,
CSIDL_Type_User, CSIDL_Type_User,
NULL, NULL,
MAKEINTRESOURCEW(IDS_DOCUMENTS) MAKEINTRESOURCEW(IDS_DOCUMENTS)

View File

@ -920,7 +920,7 @@ static const struct knownFolderDef known_folders[] = {
KNOWN_FOLDER(FOLDERID_Cookies, CSIDL_COOKIES, "Cookies"), KNOWN_FOLDER(FOLDERID_Cookies, CSIDL_COOKIES, "Cookies"),
KNOWN_FOLDER(FOLDERID_Desktop, CSIDL_DESKTOP, "Desktop"), KNOWN_FOLDER(FOLDERID_Desktop, CSIDL_DESKTOP, "Desktop"),
KNOWN_FOLDER(FOLDERID_DeviceMetadataStore, NO_CSIDL, "DeviceMetadataStore"), KNOWN_FOLDER(FOLDERID_DeviceMetadataStore, NO_CSIDL, "DeviceMetadataStore"),
KNOWN_FOLDER(FOLDERID_Documents, CSIDL_MYDOCUMENTS | CSIDL_TODO_WINE, "Personal"), KNOWN_FOLDER(FOLDERID_Documents, CSIDL_MYDOCUMENTS, "Personal"),
KNOWN_FOLDER(FOLDERID_DocumentsLibrary, NO_CSIDL, "DocumentsLibrary"), KNOWN_FOLDER(FOLDERID_DocumentsLibrary, NO_CSIDL, "DocumentsLibrary"),
KNOWN_FOLDER(FOLDERID_Downloads, NO_CSIDL, "Downloads"), KNOWN_FOLDER(FOLDERID_Downloads, NO_CSIDL, "Downloads"),
KNOWN_FOLDER(FOLDERID_Favorites, CSIDL_FAVORITES, "Favorites"), KNOWN_FOLDER(FOLDERID_Favorites, CSIDL_FAVORITES, "Favorites"),