mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
652 B
45 lines
652 B
/*++
|
|
|
|
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
|