Commit 4933f083 authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

pdh: Fix prototype of PdhGetLogFileType[A/W].

parent 6767ac4b
...@@ -62,8 +62,8 @@ ...@@ -62,8 +62,8 @@
@ stub PdhGetFormattedCounterArrayW @ stub PdhGetFormattedCounterArrayW
@ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr) @ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr)
@ stub PdhGetLogFileSize @ stub PdhGetLogFileSize
@ stdcall PdhGetLogFileTypeA(ptr ptr) @ stdcall PdhGetLogFileTypeA(str ptr)
@ stdcall PdhGetLogFileTypeW(ptr ptr) @ stdcall PdhGetLogFileTypeW(wstr ptr)
@ stub PdhGetLogSetGUID @ stub PdhGetLogSetGUID
@ stub PdhGetRawCounterArrayA @ stub PdhGetRawCounterArrayA
@ stub PdhGetRawCounterArrayW @ stub PdhGetRawCounterArrayW
......
...@@ -1273,17 +1273,17 @@ PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source ) ...@@ -1273,17 +1273,17 @@ PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
/*********************************************************************** /***********************************************************************
* PdhGetLogFileTypeA (PDH.@) * PdhGetLogFileTypeA (PDH.@)
*/ */
PDH_STATUS WINAPI PdhGetLogFileTypeA(PDH_HLOG log, DWORD *type) PDH_STATUS WINAPI PdhGetLogFileTypeA(const char *log, DWORD *type)
{ {
FIXME("%p, %p: stub\n", log, type); FIXME("%s, %p: stub\n", debugstr_a(log), type);
return PDH_NOT_IMPLEMENTED; return PDH_NOT_IMPLEMENTED;
} }
/*********************************************************************** /***********************************************************************
* PdhGetLogFileTypeW (PDH.@) * PdhGetLogFileTypeW (PDH.@)
*/ */
PDH_STATUS WINAPI PdhGetLogFileTypeW(PDH_HLOG log, DWORD *type) PDH_STATUS WINAPI PdhGetLogFileTypeW(const WCHAR *log, DWORD *type)
{ {
FIXME("%p, %p: stub\n", log, type); FIXME("%s, %p: stub\n", debugstr_w(log), type);
return PDH_NOT_IMPLEMENTED; return PDH_NOT_IMPLEMENTED;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment