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
bb471a54
Commit
bb471a54
authored
Jul 29, 2011
by
Mariusz Pluciński
Committed by
Alexandre Julliard
Aug 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Add checking some non-published known folders.
parent
82ac4ae3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
shellpath.c
dlls/shell32/tests/shellpath.c
+10
-0
No files found.
dlls/shell32/tests/shellpath.c
View file @
bb471a54
...
...
@@ -893,6 +893,12 @@ if (0) { /* crashes */
#define KNOWN_FOLDER(id, csidl, name, category, parent, relative_path) \
{ &id, # id, csidl, # csidl, name, category, &parent, # parent, relative_path, __LINE__ }
/* non-published known folders test */
static
const
GUID
_FOLDERID_CryptoKeys
=
{
0xB88F4DAA
,
0xE7BD
,
0x49A9
,
{
0xB7
,
0x4D
,
0x02
,
0x88
,
0x5A
,
0x5D
,
0xC7
,
0x65
}
};
static
const
GUID
_FOLDERID_DpapiKeys
=
{
0x10C07CD0
,
0xEF91
,
0x4567
,
{
0xB8
,
0x50
,
0x44
,
0x8B
,
0x77
,
0xCB
,
0x37
,
0xF9
}
};
static
const
GUID
_FOLDERID_SystemCertificates
=
{
0x54EED2E0
,
0xE7CA
,
0x4FDB
,
{
0x91
,
0x48
,
0x0F
,
0x42
,
0x47
,
0x29
,
0x1C
,
0xFA
}
};
static
const
GUID
_FOLDERID_CredentialManager
=
{
0x915221FB
,
0x9EFE
,
0x4BDA
,
{
0x8F
,
0xD7
,
0xF7
,
0x8D
,
0xCA
,
0x77
,
0x4F
,
0x87
}
};
struct
knownFolderDef
{
const
KNOWNFOLDERID
*
folderId
;
const
char
*
sFolderId
;
...
...
@@ -1007,6 +1013,10 @@ static const struct knownFolderDef known_folders[] = {
KNOWN_FOLDER
(
FOLDERID_Videos
,
CSIDL_MYVIDEO
,
"My Video"
,
KF_CATEGORY_PERUSER
,
FOLDERID_Profile
,
"Videos"
),
KNOWN_FOLDER
(
FOLDERID_VideosLibrary
,
NO_CSIDL
,
"VideosLibrary"
,
KF_CATEGORY_PERUSER
,
FOLDERID_Libraries
,
"Videos.library-ms"
),
KNOWN_FOLDER
(
FOLDERID_Windows
,
CSIDL_WINDOWS
,
"Windows"
,
KF_CATEGORY_FIXED
,
GUID_NULL
,
NULL
),
KNOWN_FOLDER
(
_FOLDERID_CredentialManager
,
NO_CSIDL
,
"CredentialManager"
,
KF_CATEGORY_FIXED
,
GUID_NULL
,
NULL
),
KNOWN_FOLDER
(
_FOLDERID_CryptoKeys
,
NO_CSIDL
,
"CryptoKeys"
,
KF_CATEGORY_FIXED
,
GUID_NULL
,
NULL
),
KNOWN_FOLDER
(
_FOLDERID_DpapiKeys
,
NO_CSIDL
,
"DpapiKeys"
,
KF_CATEGORY_FIXED
,
GUID_NULL
,
NULL
),
KNOWN_FOLDER
(
_FOLDERID_SystemCertificates
,
NO_CSIDL
,
"SystemCertificates"
,
KF_CATEGORY_FIXED
,
GUID_NULL
,
NULL
),
{
NULL
,
NULL
,
0
,
NULL
,
NULL
,
0
,
0
}
};
#undef KNOWN_FOLDER
...
...
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