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.

34 lines
841 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  2. /////////////////////////////////////////////////////////////////////
  3. // Declare an instance of the __Win32Provider so as to "register" the
  4. // sample provider
  5. #pragma namespace("\\\\.\\root")
  6. [AgentAddress ( "localhost" )]
  7. instance of __Namespace
  8. {
  9. Name = "default" ;
  10. } ;
  11. #pragma namespace("\\\\.\\root\\default")
  12. instance of __Win32Provider as $P
  13. {
  14. Name = "MS_SNMP_CLASS_PROVIDER";
  15. Clsid = "{70426720-F78F-11cf-9151-00AA00A4086C}";
  16. };
  17. instance of __ClassProviderRegistration
  18. {
  19. Provider = $P;
  20. SupportsGet = TRUE;
  21. SupportsPut = FALSE;
  22. SupportsDelete = FALSE;
  23. SupportsEnumeration = TRUE;
  24. QuerySupportLevels = NULL ;
  25. ResultSetQueries = { "Select * From meta_class Where __this isa SnmpMacro" } ;
  26. } ;