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
483b8f76
Commit
483b8f76
authored
Oct 01, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Improve the shell_execute{_ex}() tracing.
parent
906127fe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
21 deletions
+20
-21
shlexec.c
dlls/shell32/tests/shlexec.c
+20
-21
No files found.
dlls/shell32/tests/shlexec.c
View file @
483b8f76
...
...
@@ -75,18 +75,17 @@ static void init_event(const char* child_file)
hEvent
=
CreateEvent
(
NULL
,
FALSE
,
FALSE
,
event_name
);
}
static
void
strcat_param
(
char
*
str
,
const
char
*
param
)
static
void
strcat_param
(
char
*
str
,
const
char
*
name
,
const
char
*
param
)
{
if
(
param
!=
NULL
)
if
(
param
)
{
strcat
(
str
,
"
\"
"
);
if
(
str
[
strlen
(
str
)
-
1
]
==
'"'
)
strcat
(
str
,
", "
);
strcat
(
str
,
name
);
strcat
(
str
,
"=
\"
"
);
strcat
(
str
,
param
);
strcat
(
str
,
"
\"
"
);
}
else
{
strcat
(
str
,
"null"
);
}
}
static
char
shell_call
[
2048
]
=
""
;
...
...
@@ -99,13 +98,10 @@ static INT_PTR shell_execute(LPCSTR operation, LPCSTR file, LPCSTR parameters, L
rcEmpty
=
shell_execute
(
""
,
file
,
parameters
,
directory
);
strcpy
(
shell_call
,
"ShellExecute("
);
strcat_param
(
shell_call
,
operation
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
file
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
parameters
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
directory
);
strcat_param
(
shell_call
,
"verb"
,
operation
);
strcat_param
(
shell_call
,
"file"
,
file
);
strcat_param
(
shell_call
,
"params"
,
parameters
);
strcat_param
(
shell_call
,
"dir"
,
directory
);
strcat
(
shell_call
,
")"
);
if
(
winetest_debug
>
1
)
trace
(
"%s
\n
"
,
shell_call
);
...
...
@@ -162,13 +158,16 @@ static INT_PTR shell_execute_ex(DWORD mask, LPCSTR operation, LPCSTR file,
INT_PTR
rc
;
strcpy
(
shell_call
,
"ShellExecuteEx("
);
strcat_param
(
shell_call
,
operation
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
file
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
parameters
);
strcat
(
shell_call
,
", "
);
strcat_param
(
shell_call
,
directory
);
if
(
mask
)
{
char
smask
[
11
];
sprintf
(
smask
,
"0x%x"
,
mask
);
strcat_param
(
shell_call
,
"mask"
,
smask
);
}
strcat_param
(
shell_call
,
"verb"
,
operation
);
strcat_param
(
shell_call
,
"file"
,
file
);
strcat_param
(
shell_call
,
"params"
,
parameters
);
strcat_param
(
shell_call
,
"dir"
,
directory
);
strcat
(
shell_call
,
")"
);
if
(
winetest_debug
>
1
)
trace
(
"%s
\n
"
,
shell_call
);
...
...
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