pdh: Implement PdhExpandCounterPathA/W.
This commit is contained in:
parent
216b24527d
commit
f823b6abe3
|
@ -36,8 +36,8 @@
|
|||
@ stub PdhEnumObjectsHA
|
||||
@ stub PdhEnumObjectsHW
|
||||
@ stub PdhEnumObjectsW
|
||||
@ stub PdhExpandCounterPathA
|
||||
@ stub PdhExpandCounterPathW
|
||||
@ stdcall PdhExpandCounterPathA(str ptr ptr)
|
||||
@ stdcall PdhExpandCounterPathW(wstr ptr ptr)
|
||||
@ stdcall PdhExpandWildCardPathA(str str ptr ptr long)
|
||||
@ stub PdhExpandWildCardPathHA
|
||||
@ stub PdhExpandWildCardPathHW
|
||||
|
|
|
@ -635,6 +635,24 @@ PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCa
|
|||
return PDH_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* 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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue