Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a9f96760
Commit
a9f96760
authored
Sep 18, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: CSIDL_MYDOCUMENTS is now a synonym for CSIDL_PERSONAL.
parent
9114bc1b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
shellpath.c
dlls/shell32/tests/shellpath.c
+6
-6
shlobj.h
include/shlobj.h
+1
-1
No files found.
dlls/shell32/tests/shellpath.c
View file @
a9f96760
...
...
@@ -35,6 +35,11 @@
#include "shlwapi.h"
#include "wine/test.h"
/* CSIDL_MYDOCUMENTS is now the same as CSIDL_PERSONAL, but what we want
* here is its original value.
*/
#define OLD_CSIDL_MYDOCUMENTS 0x000c
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(x) ( sizeof(x) / sizeof((x)[0]) )
#endif
...
...
@@ -129,7 +134,7 @@ static const struct shellExpectedValues optionalShellValues[] = {
{
CSIDL_ADMINTOOLS
,
PT_FOLDER
},
{
CSIDL_COMMON_APPDATA
,
PT_FOLDER
},
{
CSIDL_LOCAL_APPDATA
,
PT_FOLDER
},
{
CSIDL_MYDOCUMENTS
,
PT_FOLDER
},
{
OLD_
CSIDL_MYDOCUMENTS
,
PT_FOLDER
},
{
CSIDL_MYMUSIC
,
PT_FOLDER
},
{
CSIDL_MYPICTURES
,
PT_FOLDER
},
{
CSIDL_MYVIDEO
,
PT_FOLDER
},
...
...
@@ -194,11 +199,6 @@ static void loadShell32(void)
#define CSIDL_PROFILES 0x003e
#endif
/* CSIDL_MYDOCUMENTS is now the same as CSIDL_PERSONAL, but what we want
* here is its original value.
*/
#define OLD_CSIDL_MYDOCUMENTS 0x000c
/* A couple utility printing functions */
static
const
char
*
getFolderName
(
int
folder
)
{
...
...
include/shlobj.h
View file @
a9f96760
...
...
@@ -1076,7 +1076,7 @@ HRESULT WINAPI SHGetFolderPathW(HWND hwnd, int nFolder, HANDLE hToken, DWORD dwF
#define CSIDL_SENDTO 0x0009
#define CSIDL_BITBUCKET 0x000a
#define CSIDL_STARTMENU 0x000b
#define CSIDL_MYDOCUMENTS
0x000c
#define CSIDL_MYDOCUMENTS
CSIDL_PERSONAL
#define CSIDL_MYMUSIC 0x000d
#define CSIDL_MYVIDEO 0x000e
#define CSIDL_DESKTOPDIRECTORY 0x0010
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment