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
30806fc0
Commit
30806fc0
authored
Sep 29, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Cast-qual warnings fix.
parent
c156c1e4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
shellord.c
dlls/shell32/shellord.c
+4
-2
shellpath.c
dlls/shell32/shellpath.c
+1
-1
shfldr_fs.c
dlls/shell32/shfldr_fs.c
+1
-1
shlexec.c
dlls/shell32/shlexec.c
+1
-1
No files found.
dlls/shell32/shellord.c
View file @
30806fc0
...
...
@@ -348,7 +348,8 @@ int WINAPIV ShellMessageBoxW(
...)
{
WCHAR
szText
[
100
],
szTitle
[
100
];
LPCWSTR
pszText
=
szText
,
pszTitle
=
szTitle
,
pszTemp
;
LPCWSTR
pszText
=
szText
,
pszTitle
=
szTitle
;
LPWSTR
pszTemp
;
va_list
args
;
int
ret
;
...
...
@@ -405,7 +406,8 @@ int WINAPIV ShellMessageBoxA(
...)
{
char
szText
[
100
],
szTitle
[
100
];
LPCSTR
pszText
=
szText
,
pszTitle
=
szTitle
,
pszTemp
;
LPCSTR
pszText
=
szText
,
pszTitle
=
szTitle
;
LPSTR
pszTemp
;
va_list
args
;
int
ret
;
...
...
dlls/shell32/shellpath.c
View file @
30806fc0
...
...
@@ -600,7 +600,7 @@ int WINAPI PathCleanupSpec( LPCWSTR lpszPathW, LPWSTR lpszFileW )
else
{
LPSTR
lpszFileA
=
(
LPSTR
)
lpszFileW
;
LPCSTR
lpszPathA
=
(
LPSTR
)
lpszPathW
;
LPCSTR
lpszPathA
=
(
LP
C
STR
)
lpszPathW
;
LPSTR
p
=
lpszFileA
;
TRACE
(
"Cleanup %s
\n
"
,
debugstr_a
(
lpszFileA
));
...
...
dlls/shell32/shfldr_fs.c
View file @
30806fc0
...
...
@@ -311,7 +311,7 @@ static ULONG WINAPI IShellFolder_fnRelease (IShellFolder2 * iface)
*/
LPITEMIDLIST
SHELL32_CreatePidlFromBindCtx
(
IBindCtx
*
pbc
,
LPCWSTR
path
)
{
static
const
WCHAR
szfsbc
[]
=
{
static
WCHAR
szfsbc
[]
=
{
'F'
,
'i'
,
'l'
,
'e'
,
' '
,
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
' '
,
'B'
,
'i'
,
'n'
,
'd'
,
' '
,
'D'
,
'a'
,
't'
,
'a'
,
0
};
IFileSystemBindData
*
fsbd
=
NULL
;
...
...
dlls/shell32/shlexec.c
View file @
30806fc0
...
...
@@ -1464,7 +1464,7 @@ BOOL SHELL_execute( LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32 execfunc )
retval
=
execfunc
(
wszQuotedCmd
,
env
,
FALSE
,
&
sei_tmp
,
sei
);
HeapFree
(
GetProcessHeap
(),
0
,
env
);
}
else
if
(
PathIsURLW
(
(
LPWSTR
)
lpFile
))
/* File not found, check for URL */
else
if
(
PathIsURLW
(
lpFile
))
/* File not found, check for URL */
{
static
const
WCHAR
wShell
[]
=
{
'\\'
,
's'
,
'h'
,
'e'
,
'l'
,
'l'
,
'\\'
,
0
};
static
const
WCHAR
wCommand
[]
=
{
'\\'
,
'c'
,
'o'
,
'm'
,
'm'
,
'a'
,
'n'
,
'd'
,
0
};
...
...
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