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.

27 lines
802 B

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