Commit 30019a5b authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

pdh: Add PdhConnectMachineA stub.

parent 0af35ccd
......@@ -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
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment