1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

pdh: Add PdhConnectMachineA stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56599
This commit is contained in:
Alex Henrie 2024-05-01 21:40:18 -06:00 committed by Alexandre Julliard
parent 0af35ccd06
commit 30019a5b87
2 changed files with 10 additions and 1 deletions

View File

@ -18,7 +18,7 @@
@ stdcall PdhCollectQueryDataWithTime(ptr ptr)
@ stdcall PdhCollectQueryDataEx(ptr long ptr)
@ stub PdhComputeCounterStatistics
@ stub PdhConnectMachineA
@ stdcall PdhConnectMachineA(str)
@ stub PdhConnectMachineW
@ stub PdhCreateSQLTablesA
@ stub PdhCreateSQLTablesW

View File

@ -1280,3 +1280,12 @@ PDH_STATUS WINAPI PdhBindInputDataSourceW(PDH_HLOG *source, const WCHAR *filenam
FIXME("%p %s: stub\n", source, debugstr_w(filenamelist));
return PDH_NOT_IMPLEMENTED;
}
/***********************************************************************
* PdhConnectMachineA (PDH.@)
*/
PDH_STATUS WINAPI PdhConnectMachineA(const char *name)
{
FIXME("%s: stub\n", debugstr_a(name));
return PDH_NOT_IMPLEMENTED;
}