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

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2015-12-24 23:08:08 +01:00 committed by Alexandre Julliard
parent 6767ac4bb7
commit 4933f08316
2 changed files with 6 additions and 6 deletions

View File

@ -62,8 +62,8 @@
@ stub PdhGetFormattedCounterArrayW
@ stdcall PdhGetFormattedCounterValue(ptr long ptr ptr)
@ stub PdhGetLogFileSize
@ stdcall PdhGetLogFileTypeA(ptr ptr)
@ stdcall PdhGetLogFileTypeW(ptr ptr)
@ stdcall PdhGetLogFileTypeA(str ptr)
@ stdcall PdhGetLogFileTypeW(wstr ptr)
@ stub PdhGetLogSetGUID
@ stub PdhGetRawCounterArrayA
@ stub PdhGetRawCounterArrayW

View File

@ -1273,17 +1273,17 @@ PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
/***********************************************************************
* 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;
}
/***********************************************************************
* 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;
}