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.

24 lines
582 B

  1. // **************************************************************************
  2. // Copyright (c) 1999 Microsoft Corporation.
  3. //
  4. // File: vehicle.mof
  5. //
  6. // Description:
  7. // Defines more bicycle instances to demonstrate event reception.
  8. // History:
  9. //
  10. // **************************************************************************
  11. // switch to the new namespace.
  12. #pragma namespace("\\root\\Vehicles")
  13. // Make some more instances.
  14. instance of Bicycle
  15. {
  16. Name = "Bozo-mobile";
  17. Color = "all";
  18. Material = "Steel";
  19. Surface = 0; // road
  20. Owner = "Bozo";
  21. };