* Sync with Wine 1.7.27.
CORE-8540

svn path=/trunk/; revision=64568
This commit is contained in:
Amine Khaldi 2014-10-06 18:37:50 +00:00
parent 4af98b95f4
commit f0ce844280
3 changed files with 21 additions and 3 deletions

View file

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

View file

@ -637,6 +637,24 @@ PDH_STATUS WINAPI PdhExpandWildCardPathW( LPCWSTR szDataSource, LPCWSTR szWildCa
return PDH_NOT_IMPLEMENTED; 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.@) * PdhGetCounterInfoA (PDH.@)
*/ */

View file

@ -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/olepro32 # Synced to Wine-1.7.17
reactos/dll/win32/olesvr32 # 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/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/pidgen # Synced to Wine-1.7.17
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5 reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
reactos/dll/win32/printui # Synced to Wine-1.7.17 reactos/dll/win32/printui # Synced to Wine-1.7.17