Commit fe8ed8af authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

pdh: Add PdhVbAddCounter stub.

parent 4efdb260
......@@ -141,7 +141,7 @@
@ stdcall PdhValidatePathExA(ptr str)
@ stdcall PdhValidatePathExW(ptr wstr)
@ stdcall PdhValidatePathW(wstr)
@ stub PdhVbAddCounter
@ stdcall PdhVbAddCounter(ptr str ptr)
@ stub PdhVbCreateCounterPathList
@ stub PdhVbGetCounterPathElements
@ stub PdhVbGetCounterPathFromList
......
......@@ -1084,6 +1084,18 @@ PDH_STATUS WINAPI PdhValidatePathW( LPCWSTR path )
}
/***********************************************************************
* PdhVbAddCounter (PDH.@)
*/
PDH_STATUS WINAPI PdhVbAddCounter( PDH_HQUERY query, LPCSTR path, PDH_HCOUNTER *counter )
{
FIXME("%p, %s, %p: stub!\n", query, debugstr_a(path), counter);
if (!path) return PDH_INVALID_ARGUMENT;
return PDH_NOT_IMPLEMENTED;
}
/***********************************************************************
* PdhValidatePathExA (PDH.@)
*/
PDH_STATUS WINAPI PdhValidatePathExA( PDH_HLOG source, LPCSTR path )
......
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