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
a0e2a3f2
Commit
a0e2a3f2
authored
Dec 23, 2015
by
Austin English
Committed by
Alexandre Julliard
Dec 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Add PdhGetLogFileTypeA/W stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5d186034
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
pdh.spec
dlls/pdh/pdh.spec
+2
-2
pdh_main.c
dlls/pdh/pdh_main.c
+18
-0
No files found.
dlls/pdh/pdh.spec
View file @
a0e2a3f2
...
...
@@ -62,8 +62,8 @@
@ stub PdhGetFormattedCounterArrayW
@ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr)
@ stub PdhGetLogFileSize
@ st
ub PdhGetLogFileTypeA
@ st
ub PdhGetLogFileTypeW
@ st
dcall PdhGetLogFileTypeA(ptr ptr)
@ st
dcall PdhGetLogFileTypeW(ptr ptr)
@ stub PdhGetLogSetGUID
@ stub PdhGetRawCounterArrayA
@ stub PdhGetRawCounterArrayW
...
...
dlls/pdh/pdh_main.c
View file @
a0e2a3f2
...
...
@@ -1269,3 +1269,21 @@ PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
FIXME
(
"%u
\n
"
,
source
);
return
ERROR_SUCCESS
;
}
/***********************************************************************
* PdhGetLogFileTypeA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhGetLogFileTypeA
(
PDH_HLOG
log
,
DWORD
*
type
)
{
FIXME
(
"%p, %p: stub
\n
"
,
log
,
type
);
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhGetLogFileTypeW (PDH.@)
*/
PDH_STATUS
WINAPI
PdhGetLogFileTypeW
(
PDH_HLOG
log
,
DWORD
*
type
)
{
FIXME
(
"%p, %p: stub
\n
"
,
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