cfg.h
上传用户:gzccxsp
上传日期:2015-07-14
资源大小:182k
文件大小:5k
源码类别:

MacOS编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1989-1995  Microsoft Corporation
  3. Module Name:
  4.     cfg.h
  5. Abstract:
  6.     This module contains the common Configuration Manager definitions for
  7.     both user mode and kernel mode code.
  8. Author:
  9.     Paula Tomlinson (paulat) 06/19/1995
  10. Revision History:
  11. --*/
  12. #ifndef _CFG_INCLUDED_
  13. #define _CFG_INCLUDED_
  14. //
  15. // The following definitions are also used by kernel mode code to
  16. // set up the registry.
  17. //
  18. //
  19. // DevInst problem values, returned by call to CM_Get_DevInst_Status
  20. //
  21. #define CM_PROB_NOT_CONFIGURED         (0x00000001)   // no config for device
  22. #define CM_PROB_DEVLOADER_FAILED       (0x00000002)   // service load failed
  23. #define CM_PROB_OUT_OF_MEMORY          (0x00000003)   // out of memory
  24. #define CM_PROB_ENTRY_IS_WRONG_TYPE    (0x00000004)   // WINDOWS 95 ONLY
  25. #define CM_PROB_LACKED_ARBITRATOR      (0x00000005)   // WINDOWS 95 ONLY
  26. #define CM_PROB_BOOT_CONFIG_CONFLICT   (0x00000006)   // boot config conflict
  27. #define CM_PROB_FAILED_FILTER          (0x00000007)   // WINDOWS 95 ONLY
  28. #define CM_PROB_DEVLOADER_NOT_FOUND    (0x00000008)   // Devloader not found
  29. #define CM_PROB_INVALID_DATA           (0x00000009)   // WINDOWS 95 ONLY
  30. #define CM_PROB_FAILED_START           (0x0000000A)   // WINDOWS 95 ONLY
  31. #define CM_PROB_LIAR                   (0x0000000B)   // ???
  32. #define CM_PROB_NORMAL_CONFLICT        (0x0000000C)   // config conflict
  33. #define CM_PROB_NOT_VERIFIED           (0x0000000D)   // WINDOWS 95 ONLY
  34. #define CM_PROB_NEED_RESTART           (0x0000000E)   // requires restart
  35. #define CM_PROB_REENUMERATION          (0x0000000F)   // WINDOWS 95 ONLY
  36. #define CM_PROB_PARTIAL_LOG_CONF       (0x00000010)   // WINDOWS 95 ONLY
  37. #define CM_PROB_UNKNOWN_RESOURCE       (0x00000011)   // unknown res type
  38. #define CM_PROB_REINSTALL              (0x00000012)   // WINDOWS 95 ONLY
  39. #define CM_PROB_REGISTRY               (0x00000013)   // WINDOWS 95 ONLY
  40. #define CM_PROB_VXDLDR                 (0x00000014)   // WINDOWS 95 ONLY
  41. #define CM_PROB_WILL_BE_REMOVED        (0x00000015)   // devinst will remove
  42. #define CM_PROB_DISABLED               (0x00000016)   // devinst is disabled
  43. #define CM_PROB_DEVLOADER_NOT_READY    (0x00000017)   // Devloader not ready
  44. #define CM_PROB_DEVICE_NOT_THERE       (0x00000018)   // device doesn't exist
  45. #define CM_PROB_MOVED                  (0x00000019)   // WINDOWS 95 ONLY
  46. #define CM_PROB_TOO_EARLY              (0x0000001A)   // WINDOWS 95 ONLY
  47. #define CM_PROB_NO_VALID_LOG_CONF      (0x0000001B)   // no valid log config
  48. #define CM_PROB_FAILED_INSTALL         (0x0000001C)   // install failed
  49. #define CM_PROB_HARDWARE_DISABLED      (0x0000001D)   // device disabled
  50. #define CM_PROB_CANT_SHARE_IRQ         (0x0000001E)   // can't share IRQ
  51. #define NUM_CM_PROB                    (0x0000001F)
  52. //
  53. // Configuration Manager Global State Flags (returned by CM_Get_Global_State)
  54. //
  55. #define CM_GLOBAL_STATE_CAN_DO_UI            (0x00000001) // Can  do UI?
  56. #define CM_GLOBAL_STATE_ON_BIG_STACK         (0x00000002) // WINDOWS 95 ONLY
  57. #define CM_GLOBAL_STATE_SERVICES_AVAILABLE   (0x00000004) // CM APIs available?
  58. #define CM_GLOBAL_STATE_SHUTTING_DOWN        (0x00000008) // CM shutting down
  59. #define CM_GLOBAL_STATE_DETECTION_PENDING    (0x00000010) // detection pending
  60. //
  61. // Device Instance status flags, returned by call to CM_Get_DevInst_Status
  62. //
  63. #define DN_ROOT_ENUMERATED (0x00000001) // Was enumerated by ROOT
  64. #define DN_DRIVER_LOADED   (0x00000002) // Has Register_Device_Driver
  65. #define DN_ENUM_LOADED     (0x00000004) // Has Register_Enumerator
  66. #define DN_STARTED         (0x00000008) // Is currently configured
  67. #define DN_MANUAL          (0x00000010) // Manually installed
  68. #define DN_NEED_TO_ENUM    (0x00000020) // May need reenumeration
  69. #define DN_NOT_FIRST_TIME  (0x00000040) // Has received a config
  70. #define DN_HARDWARE_ENUM   (0x00000080) // Enum generates hardware ID
  71. #define DN_LIAR            (0x00000100) // Lied about can reconfig once
  72. #define DN_HAS_MARK        (0x00000200) // Not CM_Create_DevInst lately
  73. #define DN_HAS_PROBLEM     (0x00000400) // Need device installer
  74. #define DN_FILTERED        (0x00000800) // Is filtered
  75. #define DN_MOVED           (0x00001000) // Has been moved
  76. #define DN_DISABLEABLE     (0x00002000) // Can be rebalanced
  77. #define DN_REMOVABLE       (0x00004000) // Can be removed
  78. #define DN_PRIVATE_PROBLEM (0x00008000) // Has a private problem
  79. #define DN_MF_PARENT       (0x00010000) // Multi function parent
  80. #define DN_MF_CHILD        (0x00020000) // Multi function child
  81. #define DN_WILL_BE_REMOVED (0x00040000) // DevInst is being removed
  82. #endif // _CFG_INCLUDED_