pdh: Implement PdhExpandCounterPathA/W.

This commit is contained in:
Guillaume Charifi 2014-06-04 19:00:50 +02:00 committed by Alexandre Julliard
parent 216b24527d
commit f823b6abe3
2 changed files with 20 additions and 2 deletions

View file

@ -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

View file

@ -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.@)
*/