windows-nt/Source/XPSP1/NT/admin/wmi/wbem/winmgmt/ntperfclient/refresh.h

46 lines
652 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (C) 1997-2001 Microsoft Corporation
Module Name:
Abstract:
History:
--*/
//***************************************************************************
//
// REFRESH.H
//
// APIs to the refresher module
//
//***************************************************************************
#ifndef _REFRESH_H_
#define _REFRESH_H_
#define MAX_OBJECTS 128
BOOL CreateRefresher();
BOOL DestroyRefresher();
BOOL Refresh();
BOOL AddObject(
IN IWbemServices *pSvc,
IN LPWSTR pszPath
);
BOOL RemoveObject(IN LONG lObjId);
BOOL ShowObjectList();
BOOL DumpObjectById(LONG);
BOOL DumpObject(IWbemClassObject *);
#endif