home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / cwin / c.exe / $INSTDIR / include / ddk / cfg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2003-12-15  |  4.6 KB  |  124 lines

  1. /*
  2.  * cfg.h
  3.  *
  4.  * PnP Configuration Manager shared definitions between user mode and kernel mode code
  5.  *
  6.  * This file is part of the w32api package.
  7.  *
  8.  * Contributors:
  9.  *   Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
  10.  *
  11.  * THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  * This source code is offered for use in the public domain. You may
  14.  * use, modify or distribute it freely.
  15.  *
  16.  * This code is distributed in the hope that it will be useful but
  17.  * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  * DISCLAIMED. This includes but is not limited to warranties of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  */
  22.  
  23. #ifndef __CFG_H
  24. #define __CFG_H
  25.  
  26. #if __GNUC__ >=3
  27. #pragma GCC system_header
  28. #endif
  29.  
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33.  
  34. #pragma pack(push,4)
  35.  
  36. #define CM_PROB_NOT_CONFIGURED                          0x00000001
  37. #define CM_PROB_DEVLOADER_FAILED            0x00000002
  38. #define CM_PROB_OUT_OF_MEMORY               0x00000003
  39. #define CM_PROB_ENTRY_IS_WRONG_TYPE         0x00000004
  40. #define CM_PROB_LACKED_ARBITRATOR           0x00000005
  41. #define CM_PROB_BOOT_CONFIG_CONFLICT        0x00000006
  42. #define CM_PROB_FAILED_FILTER               0x00000007
  43. #define CM_PROB_DEVLOADER_NOT_FOUND         0x00000008
  44. #define CM_PROB_INVALID_DATA                0x00000009
  45. #define CM_PROB_FAILED_START                0x0000000A
  46. #define CM_PROB_LIAR                        0x0000000B
  47. #define CM_PROB_NORMAL_CONFLICT             0x0000000C
  48. #define CM_PROB_NOT_VERIFIED                0x0000000D
  49. #define CM_PROB_NEED_RESTART                0x0000000E
  50. #define CM_PROB_REENUMERATION               0x0000000F
  51. #define CM_PROB_PARTIAL_LOG_CONF            0x00000010
  52. #define CM_PROB_UNKNOWN_RESOURCE            0x00000011
  53. #define CM_PROB_REINSTALL                   0x00000012
  54. #define CM_PROB_REGISTRY                    0x00000013
  55. #define CM_PROB_VXDLDR                      0x00000014
  56. #define CM_PROB_WILL_BE_REMOVED             0x00000015
  57. #define CM_PROB_DISABLED                    0x00000016
  58. #define CM_PROB_DEVLOADER_NOT_READY         0x00000017
  59. #define CM_PROB_DEVICE_NOT_THERE            0x00000018
  60. #define CM_PROB_MOVED                       0x00000019
  61. #define CM_PROB_TOO_EARLY                   0x0000001A
  62. #define CM_PROB_NO_VALID_LOG_CONF           0x0000001B
  63. #define CM_PROB_FAILED_INSTALL              0x0000001C
  64. #define CM_PROB_HARDWARE_DISABLED           0x0000001D
  65. #define CM_PROB_CANT_SHARE_IRQ              0x0000001E
  66. #define CM_PROB_FAILED_ADD                  0x0000001F
  67. #define CM_PROB_DISABLED_SERVICE              0x00000020
  68. #define CM_PROB_TRANSLATION_FAILED            0x00000021
  69. #define CM_PROB_NO_SOFTCONFIG                 0x00000022
  70. #define CM_PROB_BIOS_TABLE                    0x00000023
  71. #define CM_PROB_IRQ_TRANSLATION_FAILED        0x00000024
  72. #define CM_PROB_FAILED_DRIVER_ENTRY           0x00000025
  73. #define CM_PROB_DRIVER_FAILED_PRIOR_UNLOAD    0x00000026
  74. #define CM_PROB_DRIVER_FAILED_LOAD          0x00000027
  75. #define CM_PROB_DRIVER_SERVICE_KEY_INVALID  0x00000028
  76. #define CM_PROB_LEGACY_SERVICE_NO_DEVICES   0x00000029
  77. #define CM_PROB_DUPLICATE_DEVICE            0x0000002A
  78. #define CM_PROB_FAILED_POST_START           0x0000002B
  79. #define CM_PROB_HALTED                      0x0000002C
  80. #define CM_PROB_PHANTOM                     0x0000002D
  81. #define CM_PROB_SYSTEM_SHUTDOWN             0x0000002E
  82. #define CM_PROB_HELD_FOR_EJECT              0x0000002F
  83. #define CM_PROB_DRIVER_BLOCKED              0x00000030
  84. #define CM_PROB_REGISTRY_TOO_LARGE            0x00000031
  85.  
  86. #define LCPRI_FORCECONFIG                 0x00000000
  87. #define LCPRI_BOOTCONFIG                  0x00000001
  88. #define LCPRI_DESIRED                     0x00002000
  89. #define LCPRI_NORMAL                      0x00003000
  90. #define LCPRI_LASTBESTCONFIG              0x00003FFF
  91. #define LCPRI_SUBOPTIMAL                  0x00005000
  92. #define LCPRI_LASTSOFTCONFIG              0x00007FFF
  93. #define LCPRI_RESTART                     0x00008000
  94. #define LCPRI_REBOOT                      0x00009000
  95. #define LCPRI_POWEROFF                    0x0000A000
  96. #define LCPRI_HARDRECONFIG                0x0000C000
  97. #define LCPRI_HARDWIRED                   0x0000E000
  98. #define LCPRI_IMPOSSIBLE                  0x0000F000
  99. #define LCPRI_DISABLED                    0x0000FFFF
  100. #define MAX_LCPRI                         0x0000FFFF
  101.  
  102. typedef enum _PNP_VETO_TYPE {
  103.   PNP_VetoTypeUnknown,
  104.   PNP_VetoLegacyDevice,
  105.   PNP_VetoPendingClose,
  106.   PNP_VetoWindowsApp,
  107.   PNP_VetoWindowsService,
  108.   PNP_VetoOutstandingOpen,
  109.   PNP_VetoDevice,
  110.   PNP_VetoDriver,
  111.   PNP_VetoIllegalDeviceRequest,
  112.   PNP_VetoInsufficientPower,
  113.   PNP_VetoNonDisableable,
  114.   PNP_VetoLegacyDriver,
  115. } PNP_VETO_TYPE, *PPNP_VETO_TYPE;
  116.  
  117. #pragma pack(pop)
  118.  
  119. #ifdef __cplusplus
  120. }
  121. #endif
  122.  
  123. #endif /* __CFG_H */
  124.