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:
parent
6767ac4bb7
commit
4933f08316
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue