Source code of Windows XP (NT5)
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.

85 lines
2.0 KiB

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 2001, Microsoft Corporation All rights reserved.
  4. //
  5. // Module Name:
  6. //
  7. // infparser.h
  8. //
  9. // Abstract:
  10. //
  11. // This file contains global definition for the infparser.exe utility.
  12. //
  13. // Revision History:
  14. //
  15. // 2001-06-20 lguindon Created.
  16. //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. #ifndef _INFPARSER_H_
  19. #define _INFPARSER_H_
  20. ///////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Includes Files.
  23. //
  24. ///////////////////////////////////////////////////////////////////////////////
  25. #include <windows.h>
  26. #include <setupapi.h>
  27. #include <rpc.h>
  28. #include <tchar.h>
  29. #include "Component.h"
  30. #include "ComponentList.h"
  31. #include "FileLayout.h"
  32. #include "FileLayoutExceptionList.h"
  33. #include "File.h"
  34. #include "FileList.h"
  35. #include "Uuid.h"
  36. ///////////////////////////////////////////////////////////////////////////////
  37. //
  38. // Enumeration
  39. //
  40. ///////////////////////////////////////////////////////////////////////////////
  41. enum flavorList
  42. {
  43. FLV_UNDEFINED = 0x0000,
  44. FLV_CORE = 0x0001,
  45. FLV_PERSONAL = 0x0002,
  46. FLV_PROFESSIONAL = 0x0004,
  47. FLV_SERVER = 0x0008,
  48. FLV_ADVSERVER = 0x0010,
  49. FLV_ENTERPRISE = 0x0020,
  50. FLV_DATACENTER = 0x0040
  51. };
  52. enum argumentToken
  53. {
  54. ARG_UNDEFINED = 0x0000,
  55. ARG_BINARY = 0x0001,
  56. ARG_LANG = 0x0002,
  57. ARG_FLAVOR = 0x0004,
  58. ARG_DIR = 0x0008,
  59. ARG_OUT = 0x0010,
  60. ARG_SILENT = 0x0020
  61. };
  62. enum binaryType
  63. {
  64. BIN_UNDEFINED = 0x0000,
  65. BIN_32 = 0x0001,
  66. BIN_64 = 0x0002,
  67. };
  68. ///////////////////////////////////////////////////////////////////////////////
  69. //
  70. // Global
  71. //
  72. ///////////////////////////////////////////////////////////////////////////////
  73. extern BOOL bSilence;
  74. extern DWORD dwComponentCounter;
  75. extern DWORD dwDirectoryCounter;
  76. extern WORD gBuildNumber;
  77. #endif //_INFPARSER_H_