Author: akhaldi
Date: Fri Mar 4 09:38:25 2016
New Revision: 70907
URL:
http://svn.reactos.org/svn/reactos?rev=70907&view=rev
Log:
[PDH] Sync with Wine Staging 1.9.4. CORE-10912
Modified:
trunk/reactos/dll/win32/pdh/pdh.spec
trunk/reactos/dll/win32/pdh/pdh_main.c
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/dll/win32/pdh/pdh.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/pdh/pdh.spec?rev…
==============================================================================
--- trunk/reactos/dll/win32/pdh/pdh.spec [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/pdh/pdh.spec [iso-8859-1] Fri Mar 4 09:38:25 2016
@@ -5,8 +5,8 @@
@ stdcall PdhAddCounterW(ptr wstr long ptr)
@ stdcall PdhAddEnglishCounterA(ptr str long ptr)
@ stdcall PdhAddEnglishCounterW(ptr wstr long ptr)
-@ stub PdhBindInputDataSourceA
-@ stub PdhBindInputDataSourceW
+@ stdcall PdhBindInputDataSourceA(ptr str)
+@ stdcall PdhBindInputDataSourceW(ptr wstr)
@ stub PdhBrowseCountersA
@ stub PdhBrowseCountersHA
@ stub PdhBrowseCountersHW
@@ -62,8 +62,8 @@
@ stub PdhGetFormattedCounterArrayW
@ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr)
@ stub PdhGetLogFileSize
-@ stub PdhGetLogFileTypeA
-@ stub PdhGetLogFileTypeW
+@ stdcall PdhGetLogFileTypeA(str ptr)
+@ stdcall PdhGetLogFileTypeW(wstr ptr)
@ stub PdhGetLogSetGUID
@ stub PdhGetRawCounterArrayA
@ stub PdhGetRawCounterArrayW
Modified: trunk/reactos/dll/win32/pdh/pdh_main.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/pdh/pdh_main.c?r…
==============================================================================
--- trunk/reactos/dll/win32/pdh/pdh_main.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/pdh/pdh_main.c [iso-8859-1] Fri Mar 4 09:38:25 2016
@@ -1271,3 +1271,39 @@
FIXME("%u\n", source);
return ERROR_SUCCESS;
}
+
+/***********************************************************************
+ * PdhGetLogFileTypeA (PDH.@)
+ */
+PDH_STATUS WINAPI PdhGetLogFileTypeA(const char *log, DWORD *type)
+{
+ FIXME("%s, %p: stub\n", debugstr_a(log), type);
+ return PDH_NOT_IMPLEMENTED;
+}
+
+/***********************************************************************
+ * PdhGetLogFileTypeW (PDH.@)
+ */
+PDH_STATUS WINAPI PdhGetLogFileTypeW(const WCHAR *log, DWORD *type)
+{
+ FIXME("%s, %p: stub\n", debugstr_w(log), type);
+ return PDH_NOT_IMPLEMENTED;
+}
+
+/***********************************************************************
+ * PdhBindInputDataSourceA (PDH.@)
+ */
+PDH_STATUS WINAPI PdhBindInputDataSourceA(PDH_HLOG *source, const char *filenamelist)
+{
+ FIXME("%p %s: stub\n", source, debugstr_a(filenamelist));
+ return PDH_NOT_IMPLEMENTED;
+}
+
+/***********************************************************************
+ * PdhBindInputDataSourceW (PDH.@)
+ */
+PDH_STATUS WINAPI PdhBindInputDataSourceW(PDH_HLOG *source, const WCHAR *filenamelist)
+{
+ FIXME("%p %s: stub\n", source, debugstr_w(filenamelist));
+ return PDH_NOT_IMPLEMENTED;
+}
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Fri Mar 4 09:38:25 2016
@@ -150,7 +150,7 @@
reactos/dll/win32/olepro32 # Synced to WineStaging-1.7.55
reactos/dll/win32/olesvr32 # Synced to WineStaging-1.7.55
reactos/dll/win32/olethk32 # Synced to WineStaging-1.7.55
-reactos/dll/win32/pdh # Synced to WineStaging-1.7.55
+reactos/dll/win32/pdh # Synced to WineStaging-1.9.4
reactos/dll/win32/pidgen # Synced to WineStaging-1.7.55
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
reactos/dll/win32/printui # Synced to WineStaging-1.7.55