+
+/***********************************************************************
+ * 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;
+}