Leaked source code of windows server 2003
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.

29 lines
704 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: dummysi.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef DUMMYSI_H
  11. #define DUMMYSI_H
  12. #pragma once
  13. // Different reasons for which a dummy snapin is created.
  14. enum EDummyCreateReason
  15. {
  16. eNoReason = 0,
  17. eSnapPolicyFailed,
  18. eSnapCreateFailed,
  19. };
  20. SC ScCreateDummySnapin (IComponentData ** ppICD, EDummyCreateReason, const CLSID& clsid);
  21. void ReportSnapinInitFailure(const CLSID& clsid);
  22. extern const GUID IID_CDummySnapinCD;
  23. #endif /* DUMMYSI_H */