Skip to content
Snippets Groups Projects
Commit 08c560be authored by Austin English's avatar Austin English Committed by Michael Stefaniuc
Browse files

pdh: Add PdhBindInputDataSourceA/W stubs.


Signed-off-by: Austin English's avatarAustin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
(cherry picked from commit de712713)
Signed-off-by: default avatarMichael Stefaniuc <mstefani@winehq.org>
parent 01f3fa7f
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@
@ stdcall PdhAddCounterW(ptr wstr long ptr)
@ stdcall PdhAddEnglishCounterA(ptr str long ptr)
@ stdcall PdhAddEnglishCounterW(ptr wstr long ptr)
@ stub PdhBindInputDataSourceA
@ stub PdhBindInputDataSourceW
@ stdcall PdhBindInputDataSourceA(ptr str)
@ stdcall PdhBindInputDataSourceW(ptr wstr)
@ stub PdhBrowseCountersA
@ stub PdhBrowseCountersHA
@ stub PdhBrowseCountersHW
......
......@@ -1287,3 +1287,21 @@ PDH_STATUS WINAPI PdhGetLogFileTypeW(PDH_HLOG log, DWORD *type)
FIXME("%p, %p: stub\n", 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;
}
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment