mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
pdh: Add stubs for PdhExpandWildCardPathA/W.
This commit is contained in:
parent
0b7903c46c
commit
12da91b8dc
@ -38,10 +38,10 @@
|
|||||||
@ stub PdhEnumObjectsW
|
@ stub PdhEnumObjectsW
|
||||||
@ stub PdhExpandCounterPathA
|
@ stub PdhExpandCounterPathA
|
||||||
@ stub PdhExpandCounterPathW
|
@ stub PdhExpandCounterPathW
|
||||||
@ stub PdhExpandWildCardPathA
|
@ stdcall PdhExpandWildCardPathA(str str ptr ptr long)
|
||||||
@ stub PdhExpandWildCardPathHA
|
@ stub PdhExpandWildCardPathHA
|
||||||
@ stub PdhExpandWildCardPathHW
|
@ stub PdhExpandWildCardPathHW
|
||||||
@ stub PdhExpandWildCardPathW
|
@ stdcall PdhExpandWildCardPathW(wstr wstr ptr ptr long)
|
||||||
@ stub PdhFormatFromRawValue
|
@ stub PdhFormatFromRawValue
|
||||||
@ stdcall PdhGetCounterInfoA(ptr long ptr ptr)
|
@ stdcall PdhGetCounterInfoA(ptr long ptr ptr)
|
||||||
@ stdcall PdhGetCounterInfoW(ptr long ptr ptr)
|
@ stdcall PdhGetCounterInfoW(ptr long ptr ptr)
|
||||||
|
@ -599,6 +599,24 @@ PDH_STATUS WINAPI PdhCollectQueryDataWithTime( PDH_HQUERY handle, LONGLONG *time
|
|||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PdhExpandWildCardPathA (PDH.@)
|
||||||
|
*/
|
||||||
|
PDH_STATUS WINAPI PdhExpandWildCardPathA( LPCSTR szDataSource, LPCSTR szWildCardPath, LPSTR mszExpandedPathList, LPDWORD pcchPathListLength, DWORD dwFlags )
|
||||||
|
{
|
||||||
|
FIXME("%s, %s, %p, %p, 0x%x: stub\n", debugstr_a(szDataSource), debugstr_a(szWildCardPath), mszExpandedPathList, pcchPathListLength, dwFlags);
|
||||||
|
return PDH_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PdhExpandWildCardPathW (PDH.@)
|
||||||
|
*/
|
||||||
|
PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCardPath, LPWSTR mszExpandedPathList, LPDWORD pcchPathListLength, DWORD dwFlags )
|
||||||
|
{
|
||||||
|
FIXME("%s, %s, %p, %p, 0x%x: stub\n", debugstr_w(szDataSource), debugstr_w(szWildCardPath), mszExpandedPathList, pcchPathListLength, dwFlags);
|
||||||
|
return PDH_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* PdhGetCounterInfoA (PDH.@)
|
* PdhGetCounterInfoA (PDH.@)
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user