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
a9c5793d
Commit
a9c5793d
authored
Jan 28, 2009
by
Andrey Turkin
Committed by
Alexandre Julliard
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loadperf: Rename argument to match its function.
parent
d71a6037
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
loadperf_main.c
dlls/loadperf/loadperf_main.c
+5
-5
No files found.
dlls/loadperf/loadperf_main.c
View file @
a9c5793d
...
...
@@ -135,14 +135,14 @@ DWORD WINAPI LoadPerfCounterTextStringsW(LPCWSTR cmdline, BOOL quiet)
* NOTES
* See UnloadPerfCounterTextStringsW
*/
DWORD
WINAPI
UnloadPerfCounterTextStringsA
(
LPCSTR
cmdline
,
BOOL
verbose
)
DWORD
WINAPI
UnloadPerfCounterTextStringsA
(
LPCSTR
cmdline
,
BOOL
quiet
)
{
DWORD
ret
;
LPWSTR
cmdlineW
=
NULL
;
if
(
cmdline
&&
!
(
cmdlineW
=
strdupAW
(
cmdline
)))
return
ERROR_OUTOFMEMORY
;
ret
=
UnloadPerfCounterTextStringsW
(
cmdlineW
,
verbose
);
ret
=
UnloadPerfCounterTextStringsW
(
cmdlineW
,
quiet
);
HeapFree
(
GetProcessHeap
(),
0
,
cmdlineW
);
...
...
@@ -154,12 +154,12 @@ DWORD WINAPI UnloadPerfCounterTextStringsA(LPCSTR cmdline, BOOL verbose)
*
* PARAMS
* cmdline [in] Last argument in command line - application counters to be removed
*
verbose [in] TRU
E - the function may write to stdout
*
quiet [in] FALS
E - the function may write to stdout
*
*/
DWORD
WINAPI
UnloadPerfCounterTextStringsW
(
LPCWSTR
cmdline
,
BOOL
verbose
)
DWORD
WINAPI
UnloadPerfCounterTextStringsW
(
LPCWSTR
cmdline
,
BOOL
quiet
)
{
FIXME
(
"(%s, %d): stub
\n
"
,
debugstr_w
(
cmdline
),
verbose
);
FIXME
(
"(%s, %d): stub
\n
"
,
debugstr_w
(
cmdline
),
quiet
);
return
ERROR_SUCCESS
;
}
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