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
de712713
Commit
de712713
authored
Dec 26, 2015
by
Austin English
Committed by
Alexandre Julliard
Dec 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pdh: Add PdhBindInputDataSourceA/W stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6a9b4d16
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
2 deletions
+23
-2
pdh.spec
dlls/pdh/pdh.spec
+2
-2
pdh_main.c
dlls/pdh/pdh_main.c
+18
-0
pdh.h
include/pdh.h
+3
-0
No files found.
dlls/pdh/pdh.spec
View file @
de712713
...
...
@@ -5,8 +5,8 @@
@ stdcall PdhAddCounterW(ptr wstr long ptr)
@ stdcall PdhAddEnglishCounterA(ptr str long ptr)
@ stdcall PdhAddEnglishCounterW(ptr wstr long ptr)
@ st
ub PdhBindInputDataSourceA
@ st
ub PdhBindInputDataSourceW
@ st
dcall PdhBindInputDataSourceA(ptr str)
@ st
dcall PdhBindInputDataSourceW(ptr wstr)
@ stub PdhBrowseCountersA
@ stub PdhBrowseCountersHA
@ stub PdhBrowseCountersHW
...
...
dlls/pdh/pdh_main.c
View file @
de712713
...
...
@@ -1287,3 +1287,21 @@ PDH_STATUS WINAPI PdhGetLogFileTypeW(const WCHAR *log, DWORD *type)
FIXME
(
"%s, %p: stub
\n
"
,
debugstr_w
(
log
),
type
);
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhBindInputDataSourceA (PDH.@)
*/
PDH_STATUS
WINAPI
PdhBindInputDataSourceA
(
PDH_HLOG
*
source
,
const
char
*
filenamelist
)
{
FIXME
(
"%p %s: stub
\n
"
,
source
,
debugstr_a
(
filenamelist
));
return
PDH_NOT_IMPLEMENTED
;
}
/***********************************************************************
* PdhBindInputDataSourceW (PDH.@)
*/
PDH_STATUS
WINAPI
PdhBindInputDataSourceW
(
PDH_HLOG
*
source
,
const
WCHAR
*
filenamelist
)
{
FIXME
(
"%p %s: stub
\n
"
,
source
,
debugstr_w
(
filenamelist
));
return
PDH_NOT_IMPLEMENTED
;
}
include/pdh.h
View file @
de712713
...
...
@@ -200,6 +200,9 @@ PDH_STATUS WINAPI PdhAddCounterW(PDH_HQUERY, LPCWSTR, DWORD_PTR, PDH_HCOUNTER *)
PDH_STATUS
WINAPI
PdhAddEnglishCounterA
(
PDH_HQUERY
,
LPCSTR
,
DWORD_PTR
,
PDH_HCOUNTER
*
);
PDH_STATUS
WINAPI
PdhAddEnglishCounterW
(
PDH_HQUERY
,
LPCWSTR
,
DWORD_PTR
,
PDH_HCOUNTER
*
);
#define PdhAddEnglishCounter WINELIB_NAME_AW(PdhAddEnglishCounter)
PDH_STATUS
WINAPI
PdhBindInputDataSourceA
(
PDH_HLOG
*
,
const
char
*
);
PDH_STATUS
WINAPI
PdhBindInputDataSourceW
(
PDH_HLOG
*
,
const
WCHAR
*
);
#define PdhBindInputDataSource WINELIB_NAME_AW(PdhBindInputDataSource)
PDH_STATUS
WINAPI
PdhCloseQuery
(
PDH_HQUERY
);
PDH_STATUS
WINAPI
PdhCollectQueryData
(
PDH_HQUERY
);
PDH_STATUS
WINAPI
PdhCollectQueryDataEx
(
PDH_HQUERY
,
DWORD
,
HANDLE
);
...
...
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