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
1af1ead8
Commit
1af1ead8
authored
Oct 29, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Cast-qual warnings fix.
parent
db941dd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
shlfolder.c
dlls/shell32/tests/shlfolder.c
+2
-2
No files found.
dlls/shell32/tests/shlfolder.c
View file @
1af1ead8
...
...
@@ -624,7 +624,7 @@ static void test_GetAttributesOf(void)
'A'
,
'2'
,
'D'
,
'8'
,
'-'
,
'0'
,
'8'
,
'0'
,
'0'
,
'2'
,
'B'
,
'3'
,
'0'
,
'3'
,
'0'
,
'9'
,
'D'
,
'}'
,
0
};
char
cCurrDirA
[
MAX_PATH
]
=
{
0
};
WCHAR
cCurrDirW
[
MAX_PATH
];
static
const
WCHAR
cTestDirW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'd'
,
'i'
,
'r'
,
0
};
static
WCHAR
cTestDirW
[]
=
{
't'
,
'e'
,
's'
,
't'
,
'd'
,
'i'
,
'r'
,
0
};
static
const
WCHAR
cBackSlash
[]
=
{
'\\'
,
0
};
IShellFolder
*
IDesktopFolder
,
*
testIShellFolder
;
ITEMIDLIST
*
newPIDL
;
...
...
@@ -713,7 +713,7 @@ static void test_GetAttributesOf(void)
IMalloc_Free
(
ppM
,
newPIDL
);
/* get relative PIDL */
hr
=
IShellFolder_ParseDisplayName
(
testIShellFolder
,
NULL
,
NULL
,
(
LPWSTR
)
cTestDirW
,
NULL
,
&
newPIDL
,
0
);
hr
=
IShellFolder_ParseDisplayName
(
testIShellFolder
,
NULL
,
NULL
,
cTestDirW
,
NULL
,
&
newPIDL
,
0
);
ok
(
hr
==
S_OK
,
"ParseDisplayName failed %08x
\n
"
,
hr
);
/* test the shell attributes of the test directory using the relative PIDL */
...
...
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