Commit f823b6ab authored by Guillaume Charifi's avatar Guillaume Charifi Committed by Alexandre Julliard

pdh: Implement PdhExpandCounterPathA/W.

parent 216b2452
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
@ stub PdhEnumObjectsHA @ stub PdhEnumObjectsHA
@ stub PdhEnumObjectsHW @ stub PdhEnumObjectsHW
@ stub PdhEnumObjectsW @ stub PdhEnumObjectsW
@ stub PdhExpandCounterPathA @ stdcall PdhExpandCounterPathA(str ptr ptr)
@ stub PdhExpandCounterPathW @ stdcall PdhExpandCounterPathW(wstr ptr ptr)
@ stdcall PdhExpandWildCardPathA(str str ptr ptr long) @ stdcall PdhExpandWildCardPathA(str str ptr ptr long)
@ stub PdhExpandWildCardPathHA @ stub PdhExpandWildCardPathHA
@ stub PdhExpandWildCardPathHW @ stub PdhExpandWildCardPathHW
......
...@@ -636,6 +636,24 @@ PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCa ...@@ -636,6 +636,24 @@ PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCa
} }
/*********************************************************************** /***********************************************************************
* PdhExpandCounterPathA (PDH.@)
*/
PDH_STATUS WINAPI PdhExpandCounterPathA( LPCSTR szWildCardPath, LPSTR mszExpandedPathList, LPDWORD pcchPathListLength )
{
FIXME("%s, %p, %p: stub\n", debugstr_a(szWildCardPath), mszExpandedPathList, pcchPathListLength);
return PdhExpandWildCardPathA(NULL, szWildCardPath, mszExpandedPathList, pcchPathListLength, 0);
}
/***********************************************************************
* PdhExpandCounterPathW (PDH.@)
*/
PDH_STATUS WINAPI PdhExpandCounterPathW( LPCWSTR szWildCardPath, LPWSTR mszExpandedPathList, LPDWORD pcchPathListLength )
{
FIXME("%s, %p, %p: stub\n", debugstr_w(szWildCardPath), mszExpandedPathList, pcchPathListLength);
return PdhExpandWildCardPathW(NULL, szWildCardPath, mszExpandedPathList, pcchPathListLength, 0);
}
/***********************************************************************
* PdhGetCounterInfoA (PDH.@) * PdhGetCounterInfoA (PDH.@)
*/ */
PDH_STATUS WINAPI PdhGetCounterInfoA( PDH_HCOUNTER handle, BOOLEAN text, LPDWORD size, PPDH_COUNTER_INFO_A info ) PDH_STATUS WINAPI PdhGetCounterInfoA( PDH_HCOUNTER handle, BOOLEAN text, LPDWORD size, PPDH_COUNTER_INFO_A info )
......
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