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
605 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. ENUMPLATFORM.H
  5. History:
  6. --*/
  7. // Note: This file can be included by both MIDL and C++. Make sure to #include
  8. // "PreMidlEnum.h" or "PreCEnum.h" before #including this file.
  9. //
  10. // This order is important: all new values must be added TO THE END, or you
  11. // will break old parsers...
  12. //
  13. BEGIN_ENUM(Platform)
  14. ENUM_ENTRY_(gdo, None, 0)
  15. ENUM_ENTRY(gdo, Windows)
  16. ENUM_ENTRY(gdo, WinNT)
  17. ENUM_ENTRY(gdo, Macintosh)
  18. ENUM_ENTRY(gdo, DOS)
  19. ENUM_ENTRY(gdo, Other)
  20. ENUM_ENTRY(gdo, All)
  21. END_ENUM(Platform)