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

  1. /*
  2.  * ntddpar.h
  3.  *
  4.  * Parallel port driver interface
  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 __NTDDPAR_H
  24. #define __NTDDPAR_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. #include "ntddk.h"
  37.  
  38.  
  39. /* Parallel port device GUIDs */
  40.  
  41. DEFINE_GUID (GUID_DEVINTERFACE_PARALLEL,
  42.   0x97F76EF0, 0xF883, 0x11D0, 0xAF, 0x1F, 0x00, 0x00, 0xF8, 0x00, 0x84, 0x5C);
  43. DEFINE_GUID (GUID_DEVINTERFACE_PARCLASS,
  44.   0x811FC6A5, 0xF728, 0x11D0, 0xA5, 0x37, 0x00, 0x00, 0xF8, 0x75, 0x3E, 0xD1);
  45.  
  46. #define GUID_PARALLEL_DEVICE GUID_DEVINTERFACE_PARALLEL
  47. #define GUID_PARCLASS_DEVICE GUID_DEVINTERFACE_PARCLASS
  48.  
  49.  
  50. #define IOCTL_IEEE1284_GET_MODE \
  51.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 5, METHOD_BUFFERED, FILE_ANY_ACCESS)
  52. #define IOCTL_IEEE1284_NEGOTIATE \
  53.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 6, METHOD_BUFFERED, FILE_ANY_ACCESS)
  54. #define IOCTL_PAR_GET_DEFAULT_MODES \
  55.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 10, METHOD_BUFFERED, FILE_ANY_ACCESS)
  56. #define IOCTL_PAR_GET_DEVICE_CAPS \
  57.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 9, METHOD_BUFFERED, FILE_ANY_ACCESS)
  58. #define IOCTL_PAR_IS_PORT_FREE \
  59.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 21, METHOD_BUFFERED, FILE_ANY_ACCESS)
  60. #define IOCTL_PAR_QUERY_DEVICE_ID \
  61.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 3, METHOD_BUFFERED, FILE_ANY_ACCESS)
  62. #define IOCTL_PAR_QUERY_DEVICE_ID_SIZE \
  63.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 4, METHOD_BUFFERED, FILE_ANY_ACCESS)
  64. #define IOCTL_PAR_QUERY_INFORMATION \
  65.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 1, METHOD_BUFFERED, FILE_ANY_ACCESS)
  66. #define IOCTL_PAR_QUERY_LOCATION \
  67.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 22, METHOD_BUFFERED, FILE_ANY_ACCESS)
  68. #define IOCTL_PAR_QUERY_RAW_DEVICE_ID \
  69.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 12, METHOD_BUFFERED, FILE_ANY_ACCESS)
  70. #define IOCTL_PAR_SET_INFORMATION \
  71.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 2, METHOD_BUFFERED, FILE_ANY_ACCESS)
  72. #define IOCTL_PAR_SET_READ_ADDRESS \
  73.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 8, METHOD_BUFFERED, FILE_ANY_ACCESS)
  74. #define IOCTL_PAR_SET_WRITE_ADDRESS \
  75.   CTL_CODE (FILE_DEVICE_PARALLEL_PORT, 7, METHOD_BUFFERED, FILE_ANY_ACCESS)
  76.  
  77. typedef struct _PAR_DEVICE_ID_SIZE_INFORMATION {
  78.   ULONG  DeviceIdSize;
  79. } PAR_DEVICE_ID_SIZE_INFORMATION, *PPAR_DEVICE_ID_SIZE_INFORMATION;
  80.  
  81. #define PARALLEL_INIT                     0x01
  82. #define PARALLEL_AUTOFEED                 0x02
  83. #define PARALLEL_PAPER_EMPTY              0x04
  84. #define PARALLEL_OFF_LINE                 0x08
  85. #define PARALLEL_POWER_OFF                0x10
  86. #define PARALLEL_NOT_CONNECTED            0x20
  87. #define PARALLEL_BUSY                     0x40
  88. #define PARALLEL_SELECTED                 0x80
  89.  
  90. typedef struct _PAR_QUERY_INFORMATION {
  91.   UCHAR  Status;
  92. } PAR_QUERY_INFORMATION, *PPAR_QUERY_INFORMATION;
  93.  
  94. typedef struct _PAR_SET_INFORMATION {
  95.   UCHAR  Init;
  96. } PAR_SET_INFORMATION, *PPAR_SET_INFORMATION;
  97.  
  98. typedef struct _PARCLASS_NEGOTIATION_MASK {
  99.   USHORT  usReadMask;
  100.   USHORT  usWriteMask;
  101. } PARCLASS_NEGOTIATION_MASK, *PPARCLASS_NEGOTIATION_MASK;
  102.  
  103. #define NONE                              0x0000
  104. #define CENTRONICS                        0x0001
  105. #define IEEE_COMPATIBILITY                0x0002
  106. #define NIBBLE                            0x0004
  107. #define CHANNEL_NIBBLE                    0x0008
  108. #define BYTE_BIDIR                        0x0010
  109. #define EPP_HW                            0x0020
  110. #define EPP_SW                            0x0040
  111. #define EPP_ANY                           0x0060
  112. #define BOUNDED_ECP                       0x0080
  113. #define ECP_HW_NOIRQ                      0x0100
  114. #define ECP_HW_IRQ                        0x0200
  115. #define ECP_SW                            0x0400
  116. #define ECP_ANY                           0x0780
  117.  
  118. #pragma pack(pop)
  119.  
  120. #ifdef __cplusplus
  121. }
  122. #endif
  123.  
  124. #endif /* __NTDDPAR_H */
  125.