Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. //***************************************************************************
  8. //
  9. // REFRESH.H
  10. //
  11. // APIs to the refresher module
  12. //
  13. //***************************************************************************
  14. #ifndef _REFRESH_H_
  15. #define _REFRESH_H_
  16. #define MAX_OBJECTS 128
  17. BOOL CreateRefresher();
  18. BOOL DestroyRefresher();
  19. BOOL Refresh();
  20. BOOL AddObject(
  21. IN IWbemServices *pSvc,
  22. IN LPWSTR pszPath
  23. );
  24. BOOL RemoveObject(IN LONG lObjId);
  25. BOOL ShowObjectList();
  26. BOOL DumpObjectById(LONG);
  27. BOOL DumpObject(IWbemClassObject *);
  28. #endif