pdh: Add a stub implementation of PdhSetDefaultRealTimeDataSource.
This commit is contained in:
parent
132e646fd4
commit
960c2088d7
|
@ -127,7 +127,7 @@
|
||||||
@ stub PdhSelectDataSourceA
|
@ stub PdhSelectDataSourceA
|
||||||
@ stub PdhSelectDataSourceW
|
@ stub PdhSelectDataSourceW
|
||||||
@ stdcall PdhSetCounterScaleFactor(ptr long)
|
@ stdcall PdhSetCounterScaleFactor(ptr long)
|
||||||
@ stub PdhSetDefaultRealTimeDataSource
|
@ stdcall PdhSetDefaultRealTimeDataSource(long)
|
||||||
@ stub PdhSetLogSetRunID
|
@ stub PdhSetLogSetRunID
|
||||||
@ stub PdhSetQueryTimeRange
|
@ stub PdhSetQueryTimeRange
|
||||||
@ stub PdhTranslate009CounterA
|
@ stub PdhTranslate009CounterA
|
||||||
|
|
|
@ -1211,3 +1211,12 @@ PDH_STATUS WINAPI PdhEnumObjectItemsW(LPCWSTR szDataSource, LPCWSTR szMachineNam
|
||||||
|
|
||||||
return PDH_NOT_IMPLEMENTED;
|
return PDH_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* PdhSetDefaultRealTimeDataSource (PDH.@)
|
||||||
|
*/
|
||||||
|
PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource( DWORD source )
|
||||||
|
{
|
||||||
|
FIXME("%u\n", source);
|
||||||
|
return ERROR_SUCCESS;
|
||||||
|
}
|
||||||
|
|
|
@ -49,6 +49,10 @@ typedef HANDLE PDH_HLOG;
|
||||||
#define PDH_FMT_1000 0x00002000
|
#define PDH_FMT_1000 0x00002000
|
||||||
#define PDH_FMT_NOCAP100 0x00008000
|
#define PDH_FMT_NOCAP100 0x00008000
|
||||||
|
|
||||||
|
#define DATA_SOURCE_REGISTRY 0x00000001
|
||||||
|
#define DATA_SOURCE_LOGFILE 0x00000002
|
||||||
|
#define DATA_SOURCE_WBEM 0x00000004
|
||||||
|
|
||||||
typedef struct _PDH_FMT_COUNTERVALUE
|
typedef struct _PDH_FMT_COUNTERVALUE
|
||||||
{
|
{
|
||||||
DWORD CStatus;
|
DWORD CStatus;
|
||||||
|
@ -198,6 +202,7 @@ PDH_STATUS WINAPI PdhOpenQueryW(LPCWSTR, DWORD_PTR, PDH_HQUERY *);
|
||||||
#define PdhOpenQuery WINELIB_NAME_AW(PdhOpenQuery)
|
#define PdhOpenQuery WINELIB_NAME_AW(PdhOpenQuery)
|
||||||
PDH_STATUS WINAPI PdhRemoveCounter(PDH_HCOUNTER);
|
PDH_STATUS WINAPI PdhRemoveCounter(PDH_HCOUNTER);
|
||||||
PDH_STATUS WINAPI PdhSetCounterScaleFactor(PDH_HCOUNTER, LONG);
|
PDH_STATUS WINAPI PdhSetCounterScaleFactor(PDH_HCOUNTER, LONG);
|
||||||
|
PDH_STATUS WINAPI PdhSetDefaultRealTimeDataSource(DWORD);
|
||||||
PDH_STATUS WINAPI PdhValidatePathA(LPCSTR);
|
PDH_STATUS WINAPI PdhValidatePathA(LPCSTR);
|
||||||
PDH_STATUS WINAPI PdhValidatePathW(LPCWSTR);
|
PDH_STATUS WINAPI PdhValidatePathW(LPCWSTR);
|
||||||
#define PdhValidatePath WINELIB_NAME_AW(PdhValidatePath)
|
#define PdhValidatePath WINELIB_NAME_AW(PdhValidatePath)
|
||||||
|
|
Loading…
Reference in New Issue