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
4933f083
Commit
4933f083
authored
Dec 24, 2015
by
Sebastian Lackner
Committed by
Alexandre Julliard
Dec 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Fix prototype of PdhGetLogFileType[A/W].
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6767ac4b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
pdh.spec
dlls/pdh/pdh.spec
+2
-2
pdh_main.c
dlls/pdh/pdh_main.c
+4
-4
No files found.
dlls/pdh/pdh.spec
View file @
4933f083
...
...
@@ -62,8 +62,8 @@
@ stub PdhGetFormattedCounterArrayW
@ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr)
@ stub PdhGetLogFileSize
@ stdcall PdhGetLogFileTypeA(
p
tr ptr)
@ stdcall PdhGetLogFileTypeW(
p
tr ptr)
@ stdcall PdhGetLogFileTypeA(
s
tr ptr)
@ stdcall PdhGetLogFileTypeW(
ws
tr ptr)
@ stub PdhGetLogSetGUID
@ stub PdhGetRawCounterArrayA
@ stub PdhGetRawCounterArrayW
...
...
dlls/pdh/pdh_main.c
View file @
4933f083
...
...
@@ -1273,17 +1273,17 @@ PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
/***********************************************************************
* PdhGetLogFileTypeA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhGetLogFileTypeA
(
PDH_HLOG
log
,
DWORD
*
type
)
PDH_STATUS
WINAPI
PdhGetLogFileTypeA
(
const
char
*
log
,
DWORD
*
type
)
{
FIXME
(
"%
p, %p: stub
\n
"
,
log
,
type
);
FIXME
(
"%
s, %p: stub
\n
"
,
debugstr_a
(
log
)
,
type
);
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhGetLogFileTypeW (PDH.@)
*/
PDH_STATUS
WINAPI
PdhGetLogFileTypeW
(
PDH_HLOG
log
,
DWORD
*
type
)
PDH_STATUS
WINAPI
PdhGetLogFileTypeW
(
const
WCHAR
*
log
,
DWORD
*
type
)
{
FIXME
(
"%
p, %p: stub
\n
"
,
log
,
type
);
FIXME
(
"%
s, %p: stub
\n
"
,
debugstr_w
(
log
)
,
type
);
return
PDH_NOT_IMPLEMENTED
;
}
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