Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
bc38d5cd
Commit
bc38d5cd
authored
Jun 09, 2011
by
Mariusz Pluciński
Committed by
Alexandre Julliard
Jun 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Test of IKnownFolder::GetFolderDefinition.
parent
3ea1fa17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
shellpath.c
dlls/shell32/tests/shellpath.c
+16
-0
No files found.
dlls/shell32/tests/shellpath.c
View file @
bc38d5cd
...
...
@@ -885,11 +885,13 @@ if (0) { /* crashes */
static
void
test_knownFolders
(
void
)
{
static
const
WCHAR
sWindows
[]
=
{
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
0
};
HRESULT
hr
;
IKnownFolderManager
*
mgr
=
NULL
;
IKnownFolder
*
folder
=
NULL
;
KNOWNFOLDERID
folderId
;
KF_CATEGORY
cat
=
0
;
KNOWNFOLDER_DEFINITION
kfDefinition
;
int
csidl
;
LPWSTR
folderPath
;
KF_REDIRECTION_CAPABILITIES
redirectionCapabilities
=
1
;
...
...
@@ -943,6 +945,20 @@ static void test_knownFolders(void)
todo_wine
ok
(
hr
==
E_INVALIDARG
,
"unexpected value from SetPath: 0x%08x
\n
"
,
hr
);
hr
=
IKnownFolder_GetFolderDefinition
(
folder
,
&
kfDefinition
);
todo_wine
ok
(
hr
==
S_OK
,
"failed to get folder definition: 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
todo_wine
ok
(
kfDefinition
.
category
==
KF_CATEGORY_FIXED
,
"invalid folder category: 0x%08x
\n
"
,
kfDefinition
.
category
);
todo_wine
ok
(
lstrcmpW
(
kfDefinition
.
pszName
,
sWindows
)
==
0
,
"invalid folder name: %s
\n
"
,
wine_dbgstr_w
(
kfDefinition
.
pszName
));
todo_wine
ok
(
kfDefinition
.
dwAttributes
==
0
,
"invalid folder attributes: %d
\n
"
,
kfDefinition
.
dwAttributes
);
FreeKnownFolderDefinitionFields
(
&
kfDefinition
);
}
hr
=
IKnownFolder_Release
(
folder
);
ok
(
hr
==
S_OK
,
"failed to release KnownFolder instance: 0x%08x
\n
"
,
hr
);
}
...
...
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