mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 14:51:00 +00:00
[PDH]
* Sync with Wine 1.7.27. CORE-8540 svn path=/trunk/; revision=64568
This commit is contained in:
parent
4af98b95f4
commit
f0ce844280
3 changed files with 21 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -637,6 +637,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.@)
|
||||
*/
|
||||
|
|
|
@ -158,7 +158,7 @@ reactos/dll/win32/oledlg # Synced to Wine-1.7.27
|
|||
reactos/dll/win32/olepro32 # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/olesvr32 # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/olethk32 # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/pdh # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/pdh # Synced to Wine-1.7.27
|
||||
reactos/dll/win32/pidgen # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
||||
reactos/dll/win32/printui # Synced to Wine-1.7.17
|
||||
|
|
Loading…
Reference in a new issue