JwaWinIoctl.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:173k
源码类别:

Windows编程

开发平台:

Delphi

  1.   IOCTL_CHANGER_GET_PARAMETERS = (
  2.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  3.     ($0000 shl 2) or METHOD_BUFFERED);
  4.   {$EXTERNALSYM IOCTL_CHANGER_GET_PARAMETERS}
  5.   IOCTL_CHANGER_GET_STATUS = (
  6.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  7.     ($0001 shl 2) or METHOD_BUFFERED);
  8.   {$EXTERNALSYM IOCTL_CHANGER_GET_STATUS}
  9.   IOCTL_CHANGER_GET_PRODUCT_DATA = (
  10.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  11.     ($0002 shl 2) or METHOD_BUFFERED);
  12.   {$EXTERNALSYM IOCTL_CHANGER_GET_PRODUCT_DATA}
  13.   IOCTL_CHANGER_SET_ACCESS = (
  14.     (IOCTL_CHANGER_BASE shl 16) or ((FILE_READ_ACCESS or FILE_WRITE_ACCESS) shl 14) or
  15.     ($0004 shl 2) or METHOD_BUFFERED);
  16.   {$EXTERNALSYM IOCTL_CHANGER_SET_ACCESS}
  17.   IOCTL_CHANGER_GET_ELEMENT_STATUS = (
  18.     (IOCTL_CHANGER_BASE shl 16) or ((FILE_READ_ACCESS or FILE_WRITE_ACCESS) shl 14) or
  19.     ($0005 shl 2) or METHOD_BUFFERED);
  20.   {$EXTERNALSYM IOCTL_CHANGER_GET_ELEMENT_STATUS}
  21.   IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS = (
  22.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  23.     ($0006 shl 2) or METHOD_BUFFERED);
  24.   {$EXTERNALSYM IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS}
  25.   IOCTL_CHANGER_SET_POSITION = (
  26.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  27.     ($0007 shl 2) or METHOD_BUFFERED);
  28.   {$EXTERNALSYM IOCTL_CHANGER_SET_POSITION}
  29.   IOCTL_CHANGER_EXCHANGE_MEDIUM = (
  30.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  31.     ($0008 shl 2) or METHOD_BUFFERED);
  32.   {$EXTERNALSYM IOCTL_CHANGER_EXCHANGE_MEDIUM}
  33.   IOCTL_CHANGER_MOVE_MEDIUM = (
  34.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  35.     ($0009 shl 2) or METHOD_BUFFERED);
  36.   {$EXTERNALSYM IOCTL_CHANGER_MOVE_MEDIUM}
  37.   IOCTL_CHANGER_REINITIALIZE_TRANSPORT = (
  38.     (IOCTL_CHANGER_BASE shl 16) or (FILE_READ_ACCESS shl 14) or
  39.     ($000A shl 2) or METHOD_BUFFERED);
  40.   {$EXTERNALSYM IOCTL_CHANGER_REINITIALIZE_TRANSPORT}
  41.   IOCTL_CHANGER_QUERY_VOLUME_TAGS = (
  42.     (IOCTL_CHANGER_BASE shl 16) or ((FILE_READ_ACCESS or FILE_WRITE_ACCESS) shl 14) or
  43.     ($000B shl 2) or METHOD_BUFFERED);
  44.   {$EXTERNALSYM IOCTL_CHANGER_QUERY_VOLUME_TAGS}
  45.   MAX_VOLUME_ID_SIZE       = 36;
  46.   {$EXTERNALSYM MAX_VOLUME_ID_SIZE}
  47.   MAX_VOLUME_TEMPLATE_SIZE = 40;
  48.   {$EXTERNALSYM MAX_VOLUME_TEMPLATE_SIZE}
  49.   VENDOR_ID_LENGTH     = 8;
  50.   {$EXTERNALSYM VENDOR_ID_LENGTH}
  51.   PRODUCT_ID_LENGTH    = 16;
  52.   {$EXTERNALSYM PRODUCT_ID_LENGTH}
  53.   REVISION_LENGTH      = 4;
  54.   {$EXTERNALSYM REVISION_LENGTH}
  55.   SERIAL_NUMBER_LENGTH = 32;
  56.   {$EXTERNALSYM SERIAL_NUMBER_LENGTH}
  57. //
  58. // Common structures describing elements.
  59. //
  60. type
  61.   _ELEMENT_TYPE = (
  62.     AllElements,        // As defined by SCSI
  63.     ChangerTransport,   // As defined by SCSI
  64.     ChangerSlot,        // As defined by SCSI
  65.     ChangerIEPort,      // As defined by SCSI
  66.     ChangerDrive,       // As defined by SCSI
  67.     ChangerDoor,        // Front panel, used to access internal of cabinet.
  68.     ChangerKeypad,      // Keypad/input on front panel.
  69.     ChangerMaxElement); // Placeholder only. Not a valid type.
  70.   {$EXTERNALSYM _ELEMENT_TYPE}
  71.   ELEMENT_TYPE = _ELEMENT_TYPE;
  72.   {$EXTERNALSYM ELEMENT_TYPE}
  73.   PELEMENT_TYPE = ^ELEMENT_TYPE;
  74.   {$EXTERNALSYM PELEMENT_TYPE}
  75.   TElementType = ELEMENT_TYPE;
  76.   PElementType = PELEMENT_TYPE;
  77.   PCHANGER_ELEMENT = ^CHANGER_ELEMENT;
  78.   {$EXTERNALSYM PCHANGER_ELEMENT}
  79.   _CHANGER_ELEMENT = record
  80.     ElementType: ELEMENT_TYPE;
  81.     ElementAddress: DWORD;
  82.   end;
  83.   {$EXTERNALSYM _CHANGER_ELEMENT}
  84.   CHANGER_ELEMENT = _CHANGER_ELEMENT;
  85.   {$EXTERNALSYM CHANGER_ELEMENT}
  86.   TChangerElement = CHANGER_ELEMENT;
  87.   PChangerElement = PCHANGER_ELEMENT;
  88.   PCHANGER_ELEMENT_LIST = ^CHANGER_ELEMENT_LIST;
  89.   {$EXTERNALSYM PCHANGER_ELEMENT_LIST}
  90.   _CHANGER_ELEMENT_LIST = record
  91.     Element: CHANGER_ELEMENT;
  92.     NumberOfElements: DWORD;
  93.   end;
  94.   {$EXTERNALSYM _CHANGER_ELEMENT_LIST}
  95.   CHANGER_ELEMENT_LIST = _CHANGER_ELEMENT_LIST;
  96.   {$EXTERNALSYM CHANGER_ELEMENT_LIST}
  97.   TChangerElementList = CHANGER_ELEMENT_LIST;
  98.   PChangerElementList = PCHANGER_ELEMENT_LIST;
  99. //
  100. // Definitions for  IOCTL_CHANGER_GET_PARAMETERS
  101. //
  102. //
  103. // Definitions for Features0 of GET_CHANGER_PARAMETERS
  104. //
  105. const
  106.   CHANGER_BAR_CODE_SCANNER_INSTALLED  = $00000001; // The medium-changer has a bar code scanner installed.
  107.   {$EXTERNALSYM CHANGER_BAR_CODE_SCANNER_INSTALLED}
  108.   CHANGER_INIT_ELEM_STAT_WITH_RANGE   = $00000002; // The medium-changer has the ability to initialize elements within a specified range.
  109.   {$EXTERNALSYM CHANGER_INIT_ELEM_STAT_WITH_RANGE}
  110.   CHANGER_CLOSE_IEPORT                = $00000004; // The medium-changer has the ability to close the i/e port door.
  111.   {$EXTERNALSYM CHANGER_CLOSE_IEPORT}
  112.   CHANGER_OPEN_IEPORT                 = $00000008; // The medium-changer can open the i/e port door.
  113.   {$EXTERNALSYM CHANGER_OPEN_IEPORT}
  114.   CHANGER_STATUS_NON_VOLATILE         = $00000010; // The medium-changer uses non-volatile memory for element status information.
  115.   {$EXTERNALSYM CHANGER_STATUS_NON_VOLATILE}
  116.   CHANGER_EXCHANGE_MEDIA              = $00000020; // The medium-changer supports exchange operations.
  117.   {$EXTERNALSYM CHANGER_EXCHANGE_MEDIA}
  118.   CHANGER_CLEANER_SLOT                = $00000040; // The medium-changer has a fixed slot designated for cleaner cartridges.
  119.   {$EXTERNALSYM CHANGER_CLEANER_SLOT}
  120.   CHANGER_LOCK_UNLOCK                 = $00000080; // The medium-changer can be (un)secured to (allow)prevent media removal.
  121.   {$EXTERNALSYM CHANGER_LOCK_UNLOCK}
  122.   CHANGER_CARTRIDGE_MAGAZINE          = $00000100; // The medium-changer uses cartridge magazines for some storage slots.
  123.   {$EXTERNALSYM CHANGER_CARTRIDGE_MAGAZINE}
  124.   CHANGER_MEDIUM_FLIP                 = $00000200; // The medium-changer can flip medium.
  125.   {$EXTERNALSYM CHANGER_MEDIUM_FLIP}
  126.   CHANGER_POSITION_TO_ELEMENT         = $00000400; // The medium-changer can position the transport to a particular element.
  127.   {$EXTERNALSYM CHANGER_POSITION_TO_ELEMENT}
  128.   CHANGER_REPORT_IEPORT_STATE         = $00000800; // The medium-changer can determine whether media is present
  129.   {$EXTERNALSYM CHANGER_REPORT_IEPORT_STATE}
  130.                                                    // in the IE Port.
  131.   CHANGER_STORAGE_DRIVE               = $00001000; // The medium-changer can use a drive as an independent storage element.
  132.   {$EXTERNALSYM CHANGER_STORAGE_DRIVE}
  133.   CHANGER_STORAGE_IEPORT              = $00002000; // The medium-changer can use a i/e port as an independent storage element.
  134.   {$EXTERNALSYM CHANGER_STORAGE_IEPORT}
  135.   CHANGER_STORAGE_SLOT                = $00004000; // The medium-changer can use a slot as an independent storage element.
  136.   {$EXTERNALSYM CHANGER_STORAGE_SLOT}
  137.   CHANGER_STORAGE_TRANSPORT           = $00008000; // The medium-changer can use a transport as an independent storage element.
  138.   {$EXTERNALSYM CHANGER_STORAGE_TRANSPORT}
  139.   CHANGER_DRIVE_CLEANING_REQUIRED     = $00010000; // The drives controlled by the medium changer require periodic cleaning
  140.   {$EXTERNALSYM CHANGER_DRIVE_CLEANING_REQUIRED}
  141.                                                    // initiated by an application.
  142.   CHANGER_PREDISMOUNT_EJECT_REQUIRED  = $00020000; // The medium-changer requires a drive eject command to be issued, before a changer
  143.   {$EXTERNALSYM CHANGER_PREDISMOUNT_EJECT_REQUIRED}
  144.                                                    // move / exchange command can be issued to the drive.
  145.   CHANGER_CLEANER_ACCESS_NOT_VALID    = $00040000; // The access bit in GES isn't valid for cleaner cartridges.
  146.   {$EXTERNALSYM CHANGER_CLEANER_ACCESS_NOT_VALID}
  147.   CHANGER_PREMOUNT_EJECT_REQUIRED     = $00080000; // The medium-changer requires a drive eject command to be issued
  148.   {$EXTERNALSYM CHANGER_PREMOUNT_EJECT_REQUIRED}
  149.                                                    // before a move / exchange command can be issued with the drive as src/dst.
  150.   CHANGER_VOLUME_IDENTIFICATION       = $00100000; // The medium-changer supports volume identification.
  151.   {$EXTERNALSYM CHANGER_VOLUME_IDENTIFICATION}
  152.   CHANGER_VOLUME_SEARCH               = $00200000; // The medium-changer can search for volume information.
  153.   {$EXTERNALSYM CHANGER_VOLUME_SEARCH}
  154.   CHANGER_VOLUME_ASSERT               = $00400000; // The medium-changer can verify volume information.
  155.   {$EXTERNALSYM CHANGER_VOLUME_ASSERT}
  156.   CHANGER_VOLUME_REPLACE              = $00800000; // The medium-changer can replace volume information.
  157.   {$EXTERNALSYM CHANGER_VOLUME_REPLACE}
  158.   CHANGER_VOLUME_UNDEFINE             = $01000000; // The medium-changer can undefine volume information.
  159.   {$EXTERNALSYM CHANGER_VOLUME_UNDEFINE}
  160.   CHANGER_SERIAL_NUMBER_VALID         = $04000000; // The serial number reported in GetProductData is valid
  161.   {$EXTERNALSYM CHANGER_SERIAL_NUMBER_VALID}
  162.                                                    // and unique.
  163.   CHANGER_DEVICE_REINITIALIZE_CAPABLE = $08000000; // The medium-changer can be issued a ChangerReinitializeUnit.
  164.   {$EXTERNALSYM CHANGER_DEVICE_REINITIALIZE_CAPABLE}
  165.   CHANGER_KEYPAD_ENABLE_DISABLE       = $10000000; // Indicates that the keypad can be enabled/disabled.
  166.   {$EXTERNALSYM CHANGER_KEYPAD_ENABLE_DISABLE}
  167.   CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS  = $20000000; // Drives must be empty before access via the door is possible.
  168.   {$EXTERNALSYM CHANGER_DRIVE_EMPTY_ON_DOOR_ACCESS}
  169.   CHANGER_RESERVED_BIT                = DWORD($80000000); // Will be used to indicate Features1 capability bits.
  170.   {$EXTERNALSYM CHANGER_RESERVED_BIT}
  171. //
  172. // Definitions for Features1 of GET_CHANGER_PARAMETERS
  173. //
  174.   CHANGER_PREDISMOUNT_ALIGN_TO_SLOT  = DWORD($80000001); // The transport must be prepositioned to the slot prior to ejecting the media.
  175.   {$EXTERNALSYM CHANGER_PREDISMOUNT_ALIGN_TO_SLOT}
  176.   CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE = DWORD($80000002); // The transport must be prepositioned to the drive prior to ejecting the media.
  177.   {$EXTERNALSYM CHANGER_PREDISMOUNT_ALIGN_TO_DRIVE}
  178.   CHANGER_CLEANER_AUTODISMOUNT       = DWORD($80000004); // The device will move the cleaner cartridge back into the slot when cleaning has completed.
  179.   {$EXTERNALSYM CHANGER_CLEANER_AUTODISMOUNT}
  180.   CHANGER_TRUE_EXCHANGE_CAPABLE      = DWORD($80000008); // Device can do src -> dest2 exchanges.
  181.   {$EXTERNALSYM CHANGER_TRUE_EXCHANGE_CAPABLE}
  182.   CHANGER_SLOTS_USE_TRAYS            = DWORD($80000010); // Slots have removable trays, requiring multiple moves for inject/eject.
  183.   {$EXTERNALSYM CHANGER_SLOTS_USE_TRAYS}
  184.   CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR = DWORD($80000020); // Media must be returned to the slot from which it originated after a move to another element.
  185.   {$EXTERNALSYM CHANGER_RTN_MEDIA_TO_ORIGINAL_ADDR}
  186.   CHANGER_CLEANER_OPS_NOT_SUPPORTED  = DWORD($80000040); // Automated cleaning operations are not supported on this device.
  187.   {$EXTERNALSYM CHANGER_CLEANER_OPS_NOT_SUPPORTED}
  188.   CHANGER_IEPORT_USER_CONTROL_OPEN   = DWORD($80000080); // Indicates that user action is necessary to open a closed ieport.
  189.   {$EXTERNALSYM CHANGER_IEPORT_USER_CONTROL_OPEN}
  190.   CHANGER_IEPORT_USER_CONTROL_CLOSE  = DWORD($80000100); // Indicates that user action is necessary to close an opened ieport.
  191.   {$EXTERNALSYM CHANGER_IEPORT_USER_CONTROL_CLOSE}
  192.   CHANGER_MOVE_EXTENDS_IEPORT        = DWORD($80000200); // Indicates that a move media to the ieport extends the tray.
  193.   {$EXTERNALSYM CHANGER_MOVE_EXTENDS_IEPORT}
  194.   CHANGER_MOVE_RETRACTS_IEPORT       = DWORD($80000400); // Indicates that a move media from the ieport retracts the tray.
  195.   {$EXTERNALSYM CHANGER_MOVE_RETRACTS_IEPORT}
  196. //
  197. // Definitions for MoveFrom, ExchangeFrom, and PositionCapabilities
  198. //
  199.   CHANGER_TO_TRANSPORT = $01; // The device can carry out the operation to a transport from the specified element.
  200.   {$EXTERNALSYM CHANGER_TO_TRANSPORT}
  201.   CHANGER_TO_SLOT      = $02; // The device can carry out the operation to a slot from the specified element.
  202.   {$EXTERNALSYM CHANGER_TO_SLOT}
  203.   CHANGER_TO_IEPORT    = $04; // The device can carry out the operation to an IE Port from the specified element.
  204.   {$EXTERNALSYM CHANGER_TO_IEPORT}
  205.   CHANGER_TO_DRIVE     = $08; // The device can carry out the operation to a drive from the specified element.
  206.   {$EXTERNALSYM CHANGER_TO_DRIVE}
  207. //
  208. // Definitions for LockUnlockCapabilities
  209. //
  210.   LOCK_UNLOCK_IEPORT = $01; // The device can lock/unlock the ieport(s).
  211.   {$EXTERNALSYM LOCK_UNLOCK_IEPORT}
  212.   LOCK_UNLOCK_DOOR   = $02; // The device can lock/unlock the door(s).
  213.   {$EXTERNALSYM LOCK_UNLOCK_DOOR}
  214.   LOCK_UNLOCK_KEYPAD = $04; // The device can lock/unlock the keypad.
  215.   {$EXTERNALSYM LOCK_UNLOCK_KEYPAD}
  216. type
  217.   PGET_CHANGER_PARAMETERS = ^GET_CHANGER_PARAMETERS;
  218.   {$EXTERNALSYM PGET_CHANGER_PARAMETERS}
  219.   _GET_CHANGER_PARAMETERS = record
  220.     //
  221.     // Size of the structure. Can be used for versioning.
  222.     //
  223.     Size: DWORD;
  224.     //
  225.     // Number of N element(s) as defined by the Element Address Page (or equivalent...).
  226.     //
  227.     NumberTransportElements: WORD;
  228.     NumberStorageElements: WORD; // for data cartridges only
  229.     NumberCleanerSlots: WORD; // for cleaner cartridges
  230.     NumberIEElements: WORD;
  231.     NumberDataTransferElements: WORD;
  232.     //
  233.     // Number of doors/front panels (allows user entry into the cabinet).
  234.     //
  235.     NumberOfDoors: WORD;
  236.     //
  237.     // The device-specific address (from user manual of the device) of the first N element. Used
  238.     // by the UI to relate the various elements to the user.
  239.     //
  240.     FirstSlotNumber: WORD;
  241.     FirstDriveNumber: WORD;
  242.     FirstTransportNumber: WORD;
  243.     FirstIEPortNumber: WORD;
  244.     FirstCleanerSlotAddress: WORD;
  245.     //
  246.     // Indicates the capacity of each magazine, if they exist.
  247.     //
  248.     MagazineSize: WORD;
  249.     //
  250.     // Specifies the approximate number of seconds for when a cleaning should be completed.
  251.     // Only applicable if drive cleaning is supported. See Features0.
  252.     //
  253.     DriveCleanTimeout: DWORD;
  254.     //
  255.     // See features bits, above.
  256.     //
  257.     Features0: DWORD;
  258.     Features1: DWORD;
  259.     //
  260.     // Bitmask defining Move from N element to element. Defined by Device Capabilities Page (or equivalent).
  261.     // AND-masking with the TO_XXX values will indicate legal destinations.
  262.     //
  263.     MoveFromTransport: BYTE;
  264.     MoveFromSlot: BYTE;
  265.     MoveFromIePort: BYTE;
  266.     MoveFromDrive: BYTE;
  267.     //
  268.     // Bitmask defining Exchange from N element to element. Defined by Device Capabilities Page (or equivalent).
  269.     // AND-masking with the TO_XXX values will indicate legal destinations.
  270.     //
  271.     ExchangeFromTransport: BYTE;
  272.     ExchangeFromSlot: BYTE;
  273.     ExchangeFromIePort: BYTE;
  274.     ExchangeFromDrive: BYTE;
  275.     //
  276.     // Bitmask defining which elements are capable of lock/unlock. Valid only if
  277.     // CHANGER_LOCK_UNLOCK is set in Features0.
  278.     //
  279.     LockUnlockCapabilities: BYTE;
  280.     //
  281.     // Bitmask defining which elements valid for positioning operations. Valid only if
  282.     // CHANGER_POSITION_TO_ELEMENT is set in Features0.
  283.     //
  284.     PositionCapabilities: BYTE;
  285.     //
  286.     // For future expansion.
  287.     //
  288.     Reserved1: array [0..1] of BYTE;
  289.     Reserved2: array [0..1] of DWORD;
  290.   end;
  291.   {$EXTERNALSYM _GET_CHANGER_PARAMETERS}
  292.   GET_CHANGER_PARAMETERS = _GET_CHANGER_PARAMETERS;
  293.   {$EXTERNALSYM GET_CHANGER_PARAMETERS}
  294.   TGetChangerParameters = GET_CHANGER_PARAMETERS;
  295.   PGetChangerParameters = PGET_CHANGER_PARAMETERS;
  296. //
  297. // Definitions for IOCTL_CHANGER_GET_PRODUCT_DATA
  298. //
  299.   PCHANGER_PRODUCT_DATA = ^CHANGER_PRODUCT_DATA;
  300.   {$EXTERNALSYM PCHANGER_PRODUCT_DATA}
  301.   _CHANGER_PRODUCT_DATA = record
  302.     //
  303.     // Device manufacturer's name - based on inquiry data
  304.     //
  305.     VendorId: array [0..VENDOR_ID_LENGTH - 1] of BYTE;
  306.     //
  307.     // Product identification as defined by the vendor - based on Inquiry data
  308.     //
  309.     ProductId: array [0..PRODUCT_ID_LENGTH - 1] of BYTE;
  310.     //
  311.     // Product revision as defined by the vendor.
  312.     //
  313.     Revision: array [0..REVISION_LENGTH - 1] of BYTE;
  314.     //
  315.     // Vendor unique value used to globally identify this device. Can
  316.     // be from Vital Product Data, for example.
  317.     //
  318.     SerialNumber: array [0..SERIAL_NUMBER_LENGTH - 1] of BYTE;
  319.     //
  320.     // Indicates device type of data transports, as defined by SCSI-2.
  321.     //
  322.     DeviceType: BYTE;
  323.   end;
  324.   {$EXTERNALSYM _CHANGER_PRODUCT_DATA}
  325.   CHANGER_PRODUCT_DATA = _CHANGER_PRODUCT_DATA;
  326.   {$EXTERNALSYM CHANGER_PRODUCT_DATA}
  327.   TChangerProductData = CHANGER_PRODUCT_DATA;
  328.   PChangerProductData = PCHANGER_PRODUCT_DATA;
  329. //
  330. // Definitions for IOCTL_CHANGER_SET_ACCESS
  331. //
  332. const
  333.   LOCK_ELEMENT   = 0;
  334.   {$EXTERNALSYM LOCK_ELEMENT}
  335.   UNLOCK_ELEMENT = 1;
  336.   {$EXTERNALSYM UNLOCK_ELEMENT}
  337.   EXTEND_IEPORT  = 2;
  338.   {$EXTERNALSYM EXTEND_IEPORT}
  339.   RETRACT_IEPORT = 3;
  340.   {$EXTERNALSYM RETRACT_IEPORT}
  341. type
  342.   PCHANGER_SET_ACCESS = ^CHANGER_SET_ACCESS;
  343.   {$EXTERNALSYM PCHANGER_SET_ACCESS}
  344.   _CHANGER_SET_ACCESS = record
  345.     //
  346.     // Element can be ChangerIEPort, ChangerDoor, ChangerKeypad
  347.     //
  348.     Element: CHANGER_ELEMENT;
  349.     //
  350.     // See above for possible operations.
  351.     //
  352.     Control: DWORD;
  353.   end;
  354.   {$EXTERNALSYM _CHANGER_SET_ACCESS}
  355.   CHANGER_SET_ACCESS = _CHANGER_SET_ACCESS;
  356.   {$EXTERNALSYM CHANGER_SET_ACCESS}
  357.   TChangerSetAccess = CHANGER_SET_ACCESS;
  358.   PChangerSetAccess = PCHANGER_SET_ACCESS;
  359. //
  360. // Definitions for IOCTL_CHANGER_GET_ELEMENT_STATUS
  361. //
  362. //
  363. // Input buffer.
  364. //
  365.   PCHANGER_READ_ELEMENT_STATUS = ^CHANGER_READ_ELEMENT_STATUS;
  366.   {$EXTERNALSYM PCHANGER_READ_ELEMENT_STATUS}
  367.   _CHANGER_READ_ELEMENT_STATUS = record
  368.     //
  369.     // List describing the elements and range on which to return information.
  370.     //
  371.     ElementList: CHANGER_ELEMENT_LIST;
  372.     //
  373.     // Indicates whether volume tag information is to be returned.
  374.     //
  375.     VolumeTagInfo: ByteBool;
  376.   end;
  377.   {$EXTERNALSYM _CHANGER_READ_ELEMENT_STATUS}
  378.   CHANGER_READ_ELEMENT_STATUS = _CHANGER_READ_ELEMENT_STATUS;
  379.   {$EXTERNALSYM CHANGER_READ_ELEMENT_STATUS}
  380.   TChangerReadElementStatus = CHANGER_READ_ELEMENT_STATUS;
  381.   PChangerReadElementStatus = PCHANGER_READ_ELEMENT_STATUS;
  382. //
  383. // Output buffer.
  384. //
  385.   PCHANGER_ELEMENT_STATUS = ^CHANGER_ELEMENT_STATUS;
  386.   {$EXTERNALSYM PCHANGER_ELEMENT_STATUS}
  387.   _CHANGER_ELEMENT_STATUS = record
  388.     //
  389.     // Element to which this structure refers.
  390.     //
  391.     Element: CHANGER_ELEMENT;
  392.     //
  393.     // Address of the element from which the media was originally moved.
  394.     // Valid if ELEMENT_STATUS_SVALID bit of Flags DWORD is set.
  395.     // Needs to be converted to a zero-based offset from the device-unique value.
  396.     //
  397.     SrcElementAddress: CHANGER_ELEMENT;
  398.     //
  399.     // See below.
  400.     //
  401.     Flags: DWORD;
  402.     //
  403.     // See below for possible values.
  404.     //
  405.     ExceptionCode: DWORD;
  406.     //
  407.     // Scsi Target Id of this element.
  408.     // Valid only if ELEMENT_STATUS_ID_VALID is set in Flags.
  409.     //
  410.     TargetId: BYTE;
  411.     //
  412.     // LogicalUnitNumber of this element.
  413.     // Valid only if ELEMENT_STATUS_LUN_VALID is set in Flags.
  414.     //
  415.     Lun: BYTE;
  416.     Reserved: WORD;
  417.     //
  418.     // Primary volume identification for the media.
  419.     // Valid only if ELEMENT_STATUS_PVOLTAG bit is set in Flags.
  420.     //
  421.     PrimaryVolumeID: array [0..MAX_VOLUME_ID_SIZE - 1] of BYTE;
  422.     //
  423.     // Alternate volume identification for the media.
  424.     // Valid for two-sided media only, and pertains to the id. of the inverted side.
  425.     // Valid only if ELEMENT_STATUS_AVOLTAG bit is set in Flags.
  426.     //
  427.     AlternateVolumeID: array [0..MAX_VOLUME_ID_SIZE - 1] of BYTE;
  428.   end;
  429.   {$EXTERNALSYM _CHANGER_ELEMENT_STATUS}
  430.   CHANGER_ELEMENT_STATUS = _CHANGER_ELEMENT_STATUS;
  431.   {$EXTERNALSYM CHANGER_ELEMENT_STATUS}
  432.   TChangerElementStatus = CHANGER_ELEMENT_STATUS;
  433.   PChangerElementStatus = PCHANGER_ELEMENT_STATUS;
  434.   PCHANGER_ELEMENT_STATUS_EX = ^CHANGER_ELEMENT_STATUS_EX;
  435.   {$EXTERNALSYM PCHANGER_ELEMENT_STATUS_EX}
  436.   _CHANGER_ELEMENT_STATUS_EX = record
  437.     //
  438.     // Element to which this structure refers.
  439.     //
  440.     Element: CHANGER_ELEMENT;
  441.     //
  442.     // Address of the element from which the media was originally moved.
  443.     // Valid if ELEMENT_STATUS_SVALID bit of Flags DWORD is set.
  444.     // Needs to be converted to a zero-based offset from the device-unique value.
  445.     //
  446.     SrcElementAddress: CHANGER_ELEMENT;
  447.     //
  448.     // See below.
  449.     //
  450.     Flags: DWORD;
  451.     //
  452.     // See below for possible values.
  453.     //
  454.     ExceptionCode: DWORD;
  455.     //
  456.     // Scsi Target Id of this element.
  457.     // Valid only if ELEMENT_STATUS_ID_VALID is set in Flags.
  458.     //
  459.     TargetId: BYTE;
  460.     //
  461.     // LogicalUnitNumber of this element.
  462.     // Valid only if ELEMENT_STATUS_LUN_VALID is set in Flags.
  463.     //
  464.     Lun: BYTE;
  465.     Reserved: WORD;
  466.     //
  467.     // Primary volume identification for the media.
  468.     // Valid only if ELEMENT_STATUS_PVOLTAG bit is set in Flags.
  469.     //
  470.     PrimaryVolumeID: array [0..MAX_VOLUME_ID_SIZE - 1] of BYTE;
  471.     //
  472.     // Alternate volume identification for the media.
  473.     // Valid for two-sided media only, and pertains to the id. of the inverted side.
  474.     // Valid only if ELEMENT_STATUS_AVOLTAG bit is set in Flags.
  475.     //
  476.     AlternateVolumeID: array [0..MAX_VOLUME_ID_SIZE - 1] of BYTE;
  477.     //
  478.     // Vendor ID
  479.     //
  480.     VendorIdentification: array [0..VENDOR_ID_LENGTH - 1] of BYTE;
  481.     //
  482.     // Product ID
  483.     //
  484.     ProductIdentification: array [0..PRODUCT_ID_LENGTH - 1] of BYTE;
  485.     //
  486.     // Serial number
  487.     //
  488.     SerialNumber: array [0..SERIAL_NUMBER_LENGTH - 1] of BYTE;
  489.   end;
  490.   {$EXTERNALSYM _CHANGER_ELEMENT_STATUS_EX}
  491.   CHANGER_ELEMENT_STATUS_EX = _CHANGER_ELEMENT_STATUS_EX;
  492.   {$EXTERNALSYM CHANGER_ELEMENT_STATUS_EX}
  493.   TChangerElementStatusEx = CHANGER_ELEMENT_STATUS_EX;
  494.   PChangerElementStatusEx = PCHANGER_ELEMENT_STATUS_EX;
  495. //
  496. // Possible flag values
  497. //
  498. const
  499.   ELEMENT_STATUS_FULL      = $00000001; // Element contains a unit of media.
  500.   {$EXTERNALSYM ELEMENT_STATUS_FULL}
  501.   ELEMENT_STATUS_IMPEXP    = $00000002; // Media in i/e port was placed there by an operator.
  502.   {$EXTERNALSYM ELEMENT_STATUS_IMPEXP}
  503.   ELEMENT_STATUS_EXCEPT    = $00000004; // Element is in an abnormal state; check ExceptionCode field for more information.
  504.   {$EXTERNALSYM ELEMENT_STATUS_EXCEPT}
  505.   ELEMENT_STATUS_ACCESS    = $00000008; // Access to the i/e port from the medium changer is allowed.
  506.   {$EXTERNALSYM ELEMENT_STATUS_ACCESS}
  507.   ELEMENT_STATUS_EXENAB    = $00000010; // Export of media is supported.
  508.   {$EXTERNALSYM ELEMENT_STATUS_EXENAB}
  509.   ELEMENT_STATUS_INENAB    = $00000020; // Import of media is supported.
  510.   {$EXTERNALSYM ELEMENT_STATUS_INENAB}
  511.   ELEMENT_STATUS_PRODUCT_DATA = $00000040; // Serial number valid for the drive
  512.   {$EXTERNALSYM ELEMENT_STATUS_PRODUCT_DATA}
  513.   ELEMENT_STATUS_LUN_VALID = $00001000; // Lun information is valid.
  514.   {$EXTERNALSYM ELEMENT_STATUS_LUN_VALID}
  515.   ELEMENT_STATUS_ID_VALID  = $00002000; // SCSI Id information is valid.
  516.   {$EXTERNALSYM ELEMENT_STATUS_ID_VALID}
  517.   ELEMENT_STATUS_NOT_BUS   = $00008000; // Lun and SCSI Id fields are not on same bus as medium changer.
  518.   {$EXTERNALSYM ELEMENT_STATUS_NOT_BUS}
  519.   ELEMENT_STATUS_INVERT    = $00400000; // Media in element was inverted (valid only if ELEMENT_STATUS_SVALID bit is set)
  520.   {$EXTERNALSYM ELEMENT_STATUS_INVERT}
  521.   ELEMENT_STATUS_SVALID    = $00800000; // SourceElementAddress field and ELEMENT_STATUS_INVERT bit are valid.
  522.   {$EXTERNALSYM ELEMENT_STATUS_SVALID}
  523.   ELEMENT_STATUS_PVOLTAG   = $10000000; // Primary volume information is valid.
  524.   {$EXTERNALSYM ELEMENT_STATUS_PVOLTAG}
  525.   ELEMENT_STATUS_AVOLTAG   = $20000000; // Alternate volume information is valid.
  526.   {$EXTERNALSYM ELEMENT_STATUS_AVOLTAG}
  527. //
  528. // ExceptionCode values.
  529. //
  530.   ERROR_LABEL_UNREADABLE    = $00000001; // Bar code scanner could not read bar code label.
  531.   {$EXTERNALSYM ERROR_LABEL_UNREADABLE}
  532.   ERROR_LABEL_QUESTIONABLE  = $00000002; // Label could be invalid due to unit attention condition.
  533.   {$EXTERNALSYM ERROR_LABEL_QUESTIONABLE}
  534.   ERROR_SLOT_NOT_PRESENT    = $00000004; // Slot is currently not addressable in the device.
  535.   {$EXTERNALSYM ERROR_SLOT_NOT_PRESENT}
  536.   ERROR_DRIVE_NOT_INSTALLED = $00000008; // Drive is not installed.
  537.   {$EXTERNALSYM ERROR_DRIVE_NOT_INSTALLED}
  538.   ERROR_TRAY_MALFUNCTION    = $00000010; // Media tray is malfunctioning/broken.
  539.   {$EXTERNALSYM ERROR_TRAY_MALFUNCTION}
  540.   ERROR_INIT_STATUS_NEEDED  = $00000011; // An Initialize Element Status command is needed.
  541.   {$EXTERNALSYM ERROR_INIT_STATUS_NEEDED}
  542.   ERROR_UNHANDLED_ERROR     = DWORD($FFFFFFFF); // Unknown error condition
  543.   {$EXTERNALSYM ERROR_UNHANDLED_ERROR}
  544. //
  545. // Definitions for IOCTL_CHANGER_INITIALIZE_ELEMENT_STATUS
  546. //
  547. type
  548.   PCHANGER_INITIALIZE_ELEMENT_STATUS = ^CHANGER_INITIALIZE_ELEMENT_STATUS;
  549.   {$EXTERNALSYM PCHANGER_INITIALIZE_ELEMENT_STATUS}
  550.   _CHANGER_INITIALIZE_ELEMENT_STATUS = record
  551.     //
  552.     // List describing the elements and range on which to initialize.
  553.     //
  554.     ElementList: CHANGER_ELEMENT_LIST;
  555.     //
  556.     // Indicates whether a bar code scan should be used. Only applicable if
  557.     // CHANGER_BAR_CODE_SCANNER_INSTALLED is set in Features0 of CHANGER_GET_PARAMETERS.
  558.     //
  559.     BarCodeScan: ByteBool;
  560.   end;
  561.   {$EXTERNALSYM _CHANGER_INITIALIZE_ELEMENT_STATUS}
  562.   CHANGER_INITIALIZE_ELEMENT_STATUS = _CHANGER_INITIALIZE_ELEMENT_STATUS;
  563.   {$EXTERNALSYM CHANGER_INITIALIZE_ELEMENT_STATUS}
  564.   TChangerInitializeElementStatus = CHANGER_INITIALIZE_ELEMENT_STATUS;
  565.   PChangerInitializeElementStatus = PCHANGER_INITIALIZE_ELEMENT_STATUS;
  566. //
  567. // Definitions for IOCTL_CHANGER_SET_POSITION
  568. //
  569.   PCHANGER_SET_POSITION = ^CHANGER_SET_POSITION;
  570.   {$EXTERNALSYM PCHANGER_SET_POSITION}
  571.   _CHANGER_SET_POSITION = record
  572.     //
  573.     // Indicates which transport to move.
  574.     //
  575.     Transport: CHANGER_ELEMENT;
  576.     //
  577.     // Indicates the final destination of the transport.
  578.     //
  579.     Destination: CHANGER_ELEMENT;
  580.     //
  581.     // Indicates whether the media currently carried by Transport, should be flipped.
  582.     //
  583.     Flip: ByteBool;
  584.   end;
  585.   {$EXTERNALSYM _CHANGER_SET_POSITION}
  586.   CHANGER_SET_POSITION = _CHANGER_SET_POSITION;
  587.   {$EXTERNALSYM CHANGER_SET_POSITION}
  588.   TChangerSetPosition = CHANGER_SET_POSITION;
  589.   PChangerSetPosition = PCHANGER_SET_POSITION;
  590. //
  591. // Definitions for IOCTL_CHANGER_EXCHANGE_MEDIUM
  592. //
  593.   PCHANGER_EXCHANGE_MEDIUM = ^CHANGER_EXCHANGE_MEDIUM;
  594.   {$EXTERNALSYM PCHANGER_EXCHANGE_MEDIUM}
  595.   _CHANGER_EXCHANGE_MEDIUM = record
  596.     //
  597.     // Indicates which transport to use for the exchange operation.
  598.     //
  599.     Transport: CHANGER_ELEMENT;
  600.     //
  601.     // Indicates the source for the media that is to be moved.
  602.     //
  603.     Source: CHANGER_ELEMENT;
  604.     //
  605.     // Indicates the final destination of the media originally at Source.
  606.     //
  607.     Destination1: CHANGER_ELEMENT;
  608.     //
  609.     // Indicates the destination of the media moved from Destination1.
  610.     //
  611.     Destination2: CHANGER_ELEMENT;
  612.     //
  613.     // Indicates whether the medium should be flipped.
  614.     //
  615.     Flip1: ByteBool;
  616.     Flip2: ByteBool;
  617.   end;
  618.   {$EXTERNALSYM _CHANGER_EXCHANGE_MEDIUM}
  619.   CHANGER_EXCHANGE_MEDIUM = _CHANGER_EXCHANGE_MEDIUM;
  620.   {$EXTERNALSYM CHANGER_EXCHANGE_MEDIUM}
  621.   TChangerExchangeMedium = CHANGER_EXCHANGE_MEDIUM;
  622.   PChangerExchangeMedium = PCHANGER_EXCHANGE_MEDIUM;
  623. //
  624. // Definitions for IOCTL_CHANGER_MOVE_MEDIUM
  625. //
  626.   PCHANGER_MOVE_MEDIUM = ^CHANGER_MOVE_MEDIUM;
  627.   {$EXTERNALSYM PCHANGER_MOVE_MEDIUM}
  628.   _CHANGER_MOVE_MEDIUM = record
  629.     //
  630.     // Indicates which transport to use for the move operation.
  631.     //
  632.     Transport: CHANGER_ELEMENT;
  633.     //
  634.     // Indicates the source for the media that is to be moved.
  635.     //
  636.     Source: CHANGER_ELEMENT;
  637.     //
  638.     // Indicates the destination of the media originally at Source.
  639.     //
  640.     Destination: CHANGER_ELEMENT;
  641.     //
  642.     // Indicates whether the media should be flipped.
  643.     //
  644.     Flip: ByteBool;
  645.   end;
  646.   {$EXTERNALSYM _CHANGER_MOVE_MEDIUM}
  647.   CHANGER_MOVE_MEDIUM = _CHANGER_MOVE_MEDIUM;
  648.   {$EXTERNALSYM CHANGER_MOVE_MEDIUM}
  649.   TChangerMoveMedium = CHANGER_MOVE_MEDIUM;
  650.   PChangerMoveMedium = PCHANGER_MOVE_MEDIUM;
  651. //
  652. // Definitions for IOCTL_QUERY_VOLUME_TAGS
  653. //
  654. //
  655. // Input buffer.
  656. //
  657.   PCHANGER_SEND_VOLUME_TAG_INFORMATION = ^CHANGER_SEND_VOLUME_TAG_INFORMATION;
  658.   {$EXTERNALSYM PCHANGER_SEND_VOLUME_TAG_INFORMATION}
  659.   _CHANGER_SEND_VOLUME_TAG_INFORMATION = record
  660.     //
  661.     // Describes the starting element for which to return information.
  662.     //
  663.     StartingElement: CHANGER_ELEMENT;
  664.     //
  665.     // Indicates the specific action to perform. See below.
  666.     //
  667.     ActionCode: DWORD;
  668.     //
  669.     // Template used by the device to search for volume ids.
  670.     //
  671.     VolumeIDTemplate: array [0..MAX_VOLUME_TEMPLATE_SIZE - 1] of BYTE;
  672.   end;
  673.   {$EXTERNALSYM _CHANGER_SEND_VOLUME_TAG_INFORMATION}
  674.   CHANGER_SEND_VOLUME_TAG_INFORMATION = _CHANGER_SEND_VOLUME_TAG_INFORMATION;
  675.   {$EXTERNALSYM CHANGER_SEND_VOLUME_TAG_INFORMATION}
  676.   TChangerSendVolumeTagInformation = CHANGER_SEND_VOLUME_TAG_INFORMATION;
  677.   PChangerSendVolumeTagInformation = PCHANGER_SEND_VOLUME_TAG_INFORMATION;
  678. //
  679. // Output buffer.
  680. //
  681.   PREAD_ELEMENT_ADDRESS_INFO = ^READ_ELEMENT_ADDRESS_INFO;
  682.   {$EXTERNALSYM PREAD_ELEMENT_ADDRESS_INFO}
  683.   _READ_ELEMENT_ADDRESS_INFO = record
  684.     //
  685.     // Number of elements matching criteria set forth by ActionCode.
  686.     //
  687.     NumberOfElements: DWORD;
  688.     //
  689.     // Array of CHANGER_ELEMENT_STATUS structures, one for each element that corresponded
  690.     // with the information passed in with the CHANGER_SEND_VOLUME_TAG_INFORMATION structure.
  691.     //
  692.     ElementStatus: array [0..0] of CHANGER_ELEMENT_STATUS;
  693.   end;
  694.   {$EXTERNALSYM _READ_ELEMENT_ADDRESS_INFO}
  695.   READ_ELEMENT_ADDRESS_INFO = _READ_ELEMENT_ADDRESS_INFO;
  696.   {$EXTERNALSYM READ_ELEMENT_ADDRESS_INFO}
  697.   TReadElementAddressInfo = READ_ELEMENT_ADDRESS_INFO;
  698.   PReadElementAddressInfo = PREAD_ELEMENT_ADDRESS_INFO;
  699. //
  700. // Possible ActionCode values. See Features0 of CHANGER_GET_PARAMETERS for compatibility with
  701. // the current device.
  702. //
  703. const
  704.   SEARCH_ALL         = $0; // Translate - search all defined volume tags.
  705.   {$EXTERNALSYM SEARCH_ALL}
  706.   SEARCH_PRIMARY     = $1; // Translate - search only primary volume tags.
  707.   {$EXTERNALSYM SEARCH_PRIMARY}
  708.   SEARCH_ALTERNATE   = $2; // Translate - search only alternate volume tags.
  709.   {$EXTERNALSYM SEARCH_ALTERNATE}
  710.   SEARCH_ALL_NO_SEQ  = $4; // Translate - search all defined volume tags but ignore sequence numbers.
  711.   {$EXTERNALSYM SEARCH_ALL_NO_SEQ}
  712.   SEARCH_PRI_NO_SEQ  = $5; // Translate - search only primary volume tags but ignore sequence numbers.
  713.   {$EXTERNALSYM SEARCH_PRI_NO_SEQ}
  714.   SEARCH_ALT_NO_SEQ  = $6; // Translate - search only alternate volume tags but ignore sequence numbers.
  715.   {$EXTERNALSYM SEARCH_ALT_NO_SEQ}
  716.   ASSERT_PRIMARY     = $8; // Assert - as the primary volume tag - if tag now undefined.
  717.   {$EXTERNALSYM ASSERT_PRIMARY}
  718.   ASSERT_ALTERNATE   = $9; // Assert - as the alternate volume tag - if tag now undefined.
  719.   {$EXTERNALSYM ASSERT_ALTERNATE}
  720.   REPLACE_PRIMARY    = $A; // Replace - the primary volume tag - current tag ignored.
  721.   {$EXTERNALSYM REPLACE_PRIMARY}
  722.   REPLACE_ALTERNATE  = $B; // Replace - the alternate volume tag - current tag ignored.
  723.   {$EXTERNALSYM REPLACE_ALTERNATE}
  724.   UNDEFINE_PRIMARY   = $C; // Undefine - the primary volume tag - current tag ignored.
  725.   {$EXTERNALSYM UNDEFINE_PRIMARY}
  726.   UNDEFINE_ALTERNATE = $D; // Undefine - the alternate volume tag - current tag ignored.
  727.   {$EXTERNALSYM UNDEFINE_ALTERNATE}
  728. //
  729. // Changer diagnostic test related definitions
  730. //
  731. type
  732.   _CHANGER_DEVICE_PROBLEM_TYPE = (
  733.    DeviceProblemNone,
  734.    DeviceProblemHardware,
  735.    DeviceProblemCHMError,
  736.    DeviceProblemDoorOpen,
  737.    DeviceProblemCalibrationError,
  738.    DeviceProblemTargetFailure,
  739.    DeviceProblemCHMMoveError,
  740.    DeviceProblemCHMZeroError,
  741.    DeviceProblemCartridgeInsertError,
  742.    DeviceProblemPositionError,
  743.    DeviceProblemSensorError,
  744.    DeviceProblemCartridgeEjectError,
  745.    DeviceProblemGripperError,
  746.    DeviceProblemDriveError);
  747.   {$EXTERNALSYM _CHANGER_DEVICE_PROBLEM_TYPE}
  748.   CHANGER_DEVICE_PROBLEM_TYPE = _CHANGER_DEVICE_PROBLEM_TYPE;
  749.   {$EXTERNALSYM CHANGER_DEVICE_PROBLEM_TYPE}
  750.   PCHANGER_DEVICE_PROBLEM_TYPE = ^CHANGER_DEVICE_PROBLEM_TYPE;
  751.   {$EXTERNALSYM PCHANGER_DEVICE_PROBLEM_TYPE}
  752.   TChangerDeviceProblemType = CHANGER_DEVICE_PROBLEM_TYPE;
  753.   PChangerDeviceProblemType = PCHANGER_DEVICE_PROBLEM_TYPE;
  754. const
  755.   IOCTL_SERIAL_LSRMST_INSERT = (
  756.     (FILE_DEVICE_SERIAL_PORT shl 16) or (FILE_ANY_ACCESS shl 14) or
  757.     (31 shl 2) or METHOD_BUFFERED);
  758.   {$EXTERNALSYM IOCTL_SERIAL_LSRMST_INSERT}
  759.   IOCTL_SERENUM_EXPOSE_HARDWARE = (
  760.     (FILE_DEVICE_SERENUM shl 16) or (FILE_ANY_ACCESS shl 14) or
  761.     (128 shl 2) or METHOD_BUFFERED);
  762.   {$EXTERNALSYM IOCTL_SERENUM_EXPOSE_HARDWARE}
  763.   IOCTL_SERENUM_REMOVE_HARDWARE = (
  764.     (FILE_DEVICE_SERENUM shl 16) or (FILE_ANY_ACCESS shl 14) or
  765.     (129 shl 2) or METHOD_BUFFERED);
  766.   {$EXTERNALSYM IOCTL_SERENUM_REMOVE_HARDWARE}
  767.   IOCTL_SERENUM_PORT_DESC = (
  768.     (FILE_DEVICE_SERENUM shl 16) or (FILE_ANY_ACCESS shl 14) or
  769.     (130 shl 2) or METHOD_BUFFERED);
  770.   {$EXTERNALSYM IOCTL_SERENUM_PORT_DESC}
  771.   IOCTL_SERENUM_GET_PORT_NAME = (
  772.     (FILE_DEVICE_SERENUM shl 16) or (FILE_ANY_ACCESS shl 14) or
  773.     (131 shl 2) or METHOD_BUFFERED);
  774.   {$EXTERNALSYM IOCTL_SERENUM_GET_PORT_NAME}
  775. //
  776. // The following values follow the escape designator in the
  777. // data stream if the LSRMST_INSERT mode has been turned on.
  778. //
  779.   SERIAL_LSRMST_ESCAPE = BYTE($00);
  780.   {$EXTERNALSYM SERIAL_LSRMST_ESCAPE}
  781. //
  782. // Following this value is the contents of the line status
  783. // register, and then the character in the RX hardware when
  784. // the line status register was encountered.
  785. //
  786.   SERIAL_LSRMST_LSR_DATA = BYTE($01);
  787.   {$EXTERNALSYM SERIAL_LSRMST_LSR_DATA}
  788. //
  789. // Following this value is the contents of the line status
  790. // register.  No error character follows
  791. //
  792.   SERIAL_LSRMST_LSR_NODATA = BYTE($02);
  793.   {$EXTERNALSYM SERIAL_LSRMST_LSR_NODATA}
  794. //
  795. // Following this value is the contents of the modem status
  796. // register.
  797. //
  798.   SERIAL_LSRMST_MST = BYTE($03);
  799.   {$EXTERNALSYM SERIAL_LSRMST_MST}
  800. //
  801. // Bit values for FIFO Control Register
  802. //
  803.   SERIAL_IOC_FCR_FIFO_ENABLE      = DWORD($00000001);
  804.   {$EXTERNALSYM SERIAL_IOC_FCR_FIFO_ENABLE}
  805.   SERIAL_IOC_FCR_RCVR_RESET       = DWORD($00000002);
  806.   {$EXTERNALSYM SERIAL_IOC_FCR_RCVR_RESET}
  807.   SERIAL_IOC_FCR_XMIT_RESET       = DWORD($00000004);
  808.   {$EXTERNALSYM SERIAL_IOC_FCR_XMIT_RESET}
  809.   SERIAL_IOC_FCR_DMA_MODE         = DWORD($00000008);
  810.   {$EXTERNALSYM SERIAL_IOC_FCR_DMA_MODE}
  811.   SERIAL_IOC_FCR_RES1             = DWORD($00000010);
  812.   {$EXTERNALSYM SERIAL_IOC_FCR_RES1}
  813.   SERIAL_IOC_FCR_RES2             = DWORD($00000020);
  814.   {$EXTERNALSYM SERIAL_IOC_FCR_RES2}
  815.   SERIAL_IOC_FCR_RCVR_TRIGGER_LSB = DWORD($00000040);
  816.   {$EXTERNALSYM SERIAL_IOC_FCR_RCVR_TRIGGER_LSB}
  817.   SERIAL_IOC_FCR_RCVR_TRIGGER_MSB = DWORD($00000080);
  818.   {$EXTERNALSYM SERIAL_IOC_FCR_RCVR_TRIGGER_MSB}
  819. //
  820. // Bit values for Modem Control Register
  821. //
  822.   SERIAL_IOC_MCR_DTR  = DWORD($00000001);
  823.   {$EXTERNALSYM SERIAL_IOC_MCR_DTR}
  824.   SERIAL_IOC_MCR_RTS  = DWORD($00000002);
  825.   {$EXTERNALSYM SERIAL_IOC_MCR_RTS}
  826.   SERIAL_IOC_MCR_OUT1 = DWORD($00000004);
  827.   {$EXTERNALSYM SERIAL_IOC_MCR_OUT1}
  828.   SERIAL_IOC_MCR_OUT2 = DWORD($00000008);
  829.   {$EXTERNALSYM SERIAL_IOC_MCR_OUT2}
  830.   SERIAL_IOC_MCR_LOOP = DWORD($00000010);
  831.   {$EXTERNALSYM SERIAL_IOC_MCR_LOOP}
  832. //
  833. // The following is a list of the native file system fsctls followed by
  834. // additional network file system fsctls.  Some values have been
  835. // decommissioned.
  836. //
  837.   FSCTL_REQUEST_OPLOCK_LEVEL_1 = (
  838.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  839.     (0 shl 2) or METHOD_BUFFERED);
  840.   {$EXTERNALSYM FSCTL_REQUEST_OPLOCK_LEVEL_1}
  841.   FSCTL_REQUEST_OPLOCK_LEVEL_2 = (
  842.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  843.     (1 shl 2) or METHOD_BUFFERED);
  844.   {$EXTERNALSYM FSCTL_REQUEST_OPLOCK_LEVEL_2}
  845.   FSCTL_REQUEST_BATCH_OPLOCK = (
  846.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  847.     (2 shl 2) or METHOD_BUFFERED);
  848.   {$EXTERNALSYM FSCTL_REQUEST_BATCH_OPLOCK}
  849.   FSCTL_OPLOCK_BREAK_ACKNOWLEDGE = (
  850.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  851.     (3 shl 2) or METHOD_BUFFERED);
  852.   {$EXTERNALSYM FSCTL_OPLOCK_BREAK_ACKNOWLEDGE}
  853.   FSCTL_OPBATCH_ACK_CLOSE_PENDING = (
  854.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  855.     (4 shl 2) or METHOD_BUFFERED);
  856.   {$EXTERNALSYM FSCTL_OPBATCH_ACK_CLOSE_PENDING}
  857.   FSCTL_OPLOCK_BREAK_NOTIFY = (
  858.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  859.     (5 shl 2) or METHOD_BUFFERED);
  860.   {$EXTERNALSYM FSCTL_OPLOCK_BREAK_NOTIFY}
  861.   FSCTL_LOCK_VOLUME = ((FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or (6 shl 2) or METHOD_BUFFERED);
  862.   {$EXTERNALSYM FSCTL_LOCK_VOLUME}
  863.   FSCTL_UNLOCK_VOLUME = (
  864.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  865.     (7 shl 2) or METHOD_BUFFERED);
  866.   {$EXTERNALSYM FSCTL_UNLOCK_VOLUME}
  867.   FSCTL_DISMOUNT_VOLUME = (
  868.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  869.     (8 shl 2) or METHOD_BUFFERED);
  870.   {$EXTERNALSYM FSCTL_DISMOUNT_VOLUME}
  871. // decommissioned fsctl value                                              9
  872.   FSCTL_IS_VOLUME_MOUNTED = (
  873.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  874.     (10 shl 2) or METHOD_BUFFERED);
  875.   {$EXTERNALSYM FSCTL_IS_VOLUME_MOUNTED}
  876.   FSCTL_IS_PATHNAME_VALID = (
  877.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  878.     (11 shl 2) or METHOD_BUFFERED);    // PATHNAME_BUFFER,
  879.   {$EXTERNALSYM FSCTL_IS_PATHNAME_VALID}
  880.   FSCTL_MARK_VOLUME_DIRTY = (
  881.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  882.     (12 shl 2) or METHOD_BUFFERED);
  883.   {$EXTERNALSYM FSCTL_MARK_VOLUME_DIRTY}
  884. // decommissioned fsctl value                                             13
  885.   FSCTL_QUERY_RETRIEVAL_POINTERS = (
  886.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  887.     (14 shl 2) or METHOD_NEITHER);
  888.   {$EXTERNALSYM FSCTL_QUERY_RETRIEVAL_POINTERS}
  889.   FSCTL_GET_COMPRESSION = (
  890.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  891.     (15 shl 2) or METHOD_BUFFERED);
  892.   {$EXTERNALSYM FSCTL_GET_COMPRESSION}
  893.   FSCTL_SET_COMPRESSION = (
  894.     (FILE_DEVICE_FILE_SYSTEM shl 16) or ((FILE_READ_DATA or FILE_WRITE_DATA) shl 14) or
  895.     (16 shl 2) or METHOD_BUFFERED);
  896.   {$EXTERNALSYM FSCTL_SET_COMPRESSION}
  897. // decommissioned fsctl value                                             17
  898. // decommissioned fsctl value                                             18
  899.   FSCTL_MARK_AS_SYSTEM_HIVE = (
  900.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  901.     (19 shl 2) or METHOD_NEITHER);
  902.   {$EXTERNALSYM FSCTL_MARK_AS_SYSTEM_HIVE}
  903.   FSCTL_OPLOCK_BREAK_ACK_NO_2 = (
  904.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  905.     (20 shl 2) or METHOD_BUFFERED);
  906.   {$EXTERNALSYM FSCTL_OPLOCK_BREAK_ACK_NO_2}
  907.   FSCTL_INVALIDATE_VOLUMES = (
  908.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  909.     (21 shl 2) or METHOD_BUFFERED);
  910.   {$EXTERNALSYM FSCTL_INVALIDATE_VOLUMES}
  911.   FSCTL_QUERY_FAT_BPB = (
  912.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  913.     (22 shl 2) or METHOD_BUFFERED); // FSCTL_QUERY_FAT_BPB_BUFFER
  914.   {$EXTERNALSYM FSCTL_QUERY_FAT_BPB}
  915.   FSCTL_REQUEST_FILTER_OPLOCK = (
  916.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  917.     (23 shl 2) or METHOD_BUFFERED);
  918.   {$EXTERNALSYM FSCTL_REQUEST_FILTER_OPLOCK}
  919.   FSCTL_FILESYSTEM_GET_STATISTICS = (
  920.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  921.     (24 shl 2) or METHOD_BUFFERED); // FILESYSTEM_STATISTICS
  922.   {$EXTERNALSYM FSCTL_FILESYSTEM_GET_STATISTICS}
  923.   FSCTL_GET_NTFS_VOLUME_DATA = (
  924.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  925.     (25 shl 2) or METHOD_BUFFERED);
  926.   {$EXTERNALSYM FSCTL_GET_NTFS_VOLUME_DATA}
  927.   FSCTL_GET_NTFS_FILE_RECORD = (
  928.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  929.     (26 shl 2) or METHOD_BUFFERED);
  930.   {$EXTERNALSYM FSCTL_GET_NTFS_FILE_RECORD}
  931.   FSCTL_GET_VOLUME_BITMAP = (
  932.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  933.     (27 shl 2) or METHOD_NEITHER);
  934.   {$EXTERNALSYM FSCTL_GET_VOLUME_BITMAP}
  935.   FSCTL_GET_RETRIEVAL_POINTERS = (
  936.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  937.     (28 shl 2) or METHOD_NEITHER);
  938.   {$EXTERNALSYM FSCTL_GET_RETRIEVAL_POINTERS}
  939.   FSCTL_MOVE_FILE = (
  940.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  941.     (29 shl 2) or METHOD_BUFFERED);
  942.   {$EXTERNALSYM FSCTL_MOVE_FILE}
  943.   FSCTL_IS_VOLUME_DIRTY = (
  944.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  945.     (30 shl 2) or METHOD_BUFFERED);
  946.   {$EXTERNALSYM FSCTL_IS_VOLUME_DIRTY}
  947. // decomissioned fsctl value  31
  948. (*  FSCTL_GET_HFS_INFORMATION = (
  949.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  950.     (31 shl 2) or METHOD_BUFFERED);
  951.   {$EXTERNALSYM FSCTL_GET_HFS_INFORMATION}
  952. *)
  953.   FSCTL_ALLOW_EXTENDED_DASD_IO = (
  954.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  955.     (32 shl 2) or METHOD_NEITHER);
  956.   {$EXTERNALSYM FSCTL_ALLOW_EXTENDED_DASD_IO}
  957. // decommissioned fsctl value                                             33
  958. // decommissioned fsctl value                                             34
  959. (*
  960.   FSCTL_READ_PROPERTY_DATA = (
  961.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  962.     (33 shl 2) or METHOD_NEITHER);
  963.   {$EXTERNALSYM FSCTL_READ_PROPERTY_DATA}
  964.   FSCTL_WRITE_PROPERTY_DATA = (
  965.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  966.     (34 shl 2) or METHOD_NEITHER);
  967.   {$EXTERNALSYM FSCTL_WRITE_PROPERTY_DATA}
  968. *)
  969.   FSCTL_FIND_FILES_BY_SID = (
  970.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  971.     (35 shl 2) or METHOD_NEITHER);
  972.   {$EXTERNALSYM FSCTL_FIND_FILES_BY_SID}
  973. // decommissioned fsctl value                                             36
  974. // decommissioned fsctl value                                             37
  975. (*  FSCTL_DUMP_PROPERTY_DATA = (
  976.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  977.     (37 shl 2) or METHOD_NEITHER);
  978.   {$EXTERNALSYM FSCTL_DUMP_PROPERTY_DATA}
  979. *)
  980.   FSCTL_SET_OBJECT_ID = (
  981.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  982.     (38 shl 2) or METHOD_BUFFERED);
  983.   {$EXTERNALSYM FSCTL_SET_OBJECT_ID}
  984.   FSCTL_GET_OBJECT_ID = (
  985.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  986.     (39 shl 2) or METHOD_BUFFERED);
  987.   {$EXTERNALSYM FSCTL_GET_OBJECT_ID}
  988.   FSCTL_DELETE_OBJECT_ID = (
  989.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  990.     (40 shl 2) or METHOD_BUFFERED);
  991.   {$EXTERNALSYM FSCTL_DELETE_OBJECT_ID}
  992.   FSCTL_SET_REPARSE_POINT = (
  993.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  994.     (41 shl 2) or METHOD_BUFFERED);
  995.   {$EXTERNALSYM FSCTL_SET_REPARSE_POINT}
  996.   FSCTL_GET_REPARSE_POINT = (
  997.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  998.     (42 shl 2) or METHOD_BUFFERED);
  999.   {$EXTERNALSYM FSCTL_GET_REPARSE_POINT}
  1000.   FSCTL_DELETE_REPARSE_POINT = (
  1001.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1002.     (43 shl 2) or METHOD_BUFFERED);
  1003.   {$EXTERNALSYM FSCTL_DELETE_REPARSE_POINT}
  1004.   FSCTL_ENUM_USN_DATA = (
  1005.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1006.     (44 shl 2) or METHOD_NEITHER);
  1007.   {$EXTERNALSYM FSCTL_ENUM_USN_DATA}
  1008.   FSCTL_SECURITY_ID_CHECK = (
  1009.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_READ_DATA shl 14) or
  1010.     (45 shl 2) or METHOD_NEITHER);
  1011.   {$EXTERNALSYM FSCTL_SECURITY_ID_CHECK}
  1012.   FSCTL_READ_USN_JOURNAL = (
  1013.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1014.     (46 shl 2) or METHOD_NEITHER);
  1015.   {$EXTERNALSYM FSCTL_READ_USN_JOURNAL}
  1016.   FSCTL_SET_OBJECT_ID_EXTENDED = (
  1017.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1018.     (47 shl 2) or METHOD_BUFFERED);
  1019.   {$EXTERNALSYM FSCTL_SET_OBJECT_ID_EXTENDED}
  1020.   FSCTL_CREATE_OR_GET_OBJECT_ID = (
  1021.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1022.     (48 shl 2) or METHOD_BUFFERED);
  1023.   {$EXTERNALSYM FSCTL_CREATE_OR_GET_OBJECT_ID}
  1024.   FSCTL_SET_SPARSE = (
  1025.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1026.     (49 shl 2) or METHOD_BUFFERED);
  1027.   {$EXTERNALSYM FSCTL_SET_SPARSE}
  1028.   FSCTL_SET_ZERO_DATA = (
  1029.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_WRITE_DATA shl 14) or
  1030.     (50 shl 2) or METHOD_BUFFERED);
  1031.   {$EXTERNALSYM FSCTL_SET_ZERO_DATA}
  1032.   FSCTL_QUERY_ALLOCATED_RANGES = (
  1033.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_READ_DATA shl 14) or
  1034.     (51 shl 2) or METHOD_NEITHER);
  1035.   {$EXTERNALSYM FSCTL_QUERY_ALLOCATED_RANGES}
  1036. // decommissioned fsctl value                                             52
  1037. (*
  1038.   FSCTL_ENABLE_UPGRADE = (
  1039.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_WRITE_DATA shl 14) or
  1040.     (52 shl 2) or METHOD_BUFFERED);
  1041.   {$EXTERNALSYM FSCTL_ENABLE_UPGRADE}
  1042. *)
  1043.   FSCTL_SET_ENCRYPTION = (
  1044.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1045.     (53 shl 2) or METHOD_NEITHER);
  1046.   {$EXTERNALSYM FSCTL_SET_ENCRYPTION}
  1047.   FSCTL_ENCRYPTION_FSCTL_IO = (
  1048.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1049.     (54 shl 2) or METHOD_NEITHER);
  1050.   {$EXTERNALSYM FSCTL_ENCRYPTION_FSCTL_IO}
  1051.   FSCTL_WRITE_RAW_ENCRYPTED = (
  1052.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1053.     (55 shl 2) or METHOD_NEITHER);
  1054.   {$EXTERNALSYM FSCTL_WRITE_RAW_ENCRYPTED}
  1055.   FSCTL_READ_RAW_ENCRYPTED = (
  1056.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1057.     (56 shl 2) or METHOD_NEITHER);
  1058.   {$EXTERNALSYM FSCTL_READ_RAW_ENCRYPTED}
  1059.   FSCTL_CREATE_USN_JOURNAL = (
  1060.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1061.     (57 shl 2) or METHOD_NEITHER);
  1062.   {$EXTERNALSYM FSCTL_CREATE_USN_JOURNAL}
  1063.   FSCTL_READ_FILE_USN_DATA = (
  1064.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1065.     (58 shl 2) or METHOD_NEITHER);
  1066.   {$EXTERNALSYM FSCTL_READ_FILE_USN_DATA}
  1067.   FSCTL_WRITE_USN_CLOSE_RECORD = (
  1068.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1069.     (59 shl 2) or METHOD_NEITHER);
  1070.   {$EXTERNALSYM FSCTL_WRITE_USN_CLOSE_RECORD}
  1071.   FSCTL_EXTEND_VOLUME = (
  1072.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1073.     (60 shl 2) or METHOD_BUFFERED);
  1074.   {$EXTERNALSYM FSCTL_EXTEND_VOLUME}
  1075.   FSCTL_QUERY_USN_JOURNAL = (
  1076.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1077.     (61 shl 2) or METHOD_BUFFERED);
  1078.   {$EXTERNALSYM FSCTL_QUERY_USN_JOURNAL}
  1079.   FSCTL_DELETE_USN_JOURNAL = (
  1080.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1081.     (62 shl 2) or METHOD_BUFFERED);
  1082.   {$EXTERNALSYM FSCTL_DELETE_USN_JOURNAL}
  1083.   FSCTL_MARK_HANDLE = (
  1084.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1085.     (63 shl 2) or METHOD_BUFFERED);
  1086.   {$EXTERNALSYM FSCTL_MARK_HANDLE}
  1087.   FSCTL_SIS_COPYFILE = (
  1088.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1089.     (64 shl 2) or METHOD_BUFFERED);
  1090.   {$EXTERNALSYM FSCTL_SIS_COPYFILE}
  1091.   FSCTL_SIS_LINK_FILES = (
  1092.     (FILE_DEVICE_FILE_SYSTEM shl 16) or ((FILE_READ_DATA or FILE_WRITE_DATA) shl 14) or
  1093.     (65 shl 2) or METHOD_BUFFERED);
  1094.   {$EXTERNALSYM FSCTL_SIS_LINK_FILES}
  1095.   FSCTL_HSM_MSG = (
  1096.     (FILE_DEVICE_FILE_SYSTEM shl 16) or ((FILE_READ_DATA or FILE_WRITE_DATA) shl 14) or
  1097.     (66 shl 2) or METHOD_BUFFERED);
  1098.   {$EXTERNALSYM FSCTL_HSM_MSG}
  1099. // decommissioned fsctl value                                             67
  1100. (*
  1101.   FSCTL_NSS_CONTROL = (
  1102.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_WRITE_DATA shl 14) or
  1103.     (67 shl 2) or METHOD_BUFFERED);
  1104.   {$EXTERNALSYM FSCTL_NSS_CONTROL}
  1105. *)
  1106.   FSCTL_HSM_DATA = (
  1107.     (FILE_DEVICE_FILE_SYSTEM shl 16) or ((FILE_READ_DATA or FILE_WRITE_DATA) shl 14) or
  1108.     (68 shl 2) or METHOD_NEITHER);
  1109.   {$EXTERNALSYM FSCTL_HSM_DATA}
  1110.   FSCTL_RECALL_FILE = (
  1111.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_ANY_ACCESS shl 14) or
  1112.     (69 shl 2) or METHOD_NEITHER);
  1113.   {$EXTERNALSYM FSCTL_RECALL_FILE}
  1114. // decommissioned fsctl value                                             70
  1115. (*
  1116.   FSCTL_NSS_RCONTROL = (
  1117.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_READ_DATA shl 14) or
  1118.     (70 shl 2) or METHOD_BUFFERED);
  1119.   {$EXTERNALSYM FSCTL_NSS_RCONTROL}
  1120. *)
  1121.   FSCTL_READ_FROM_PLEX = (
  1122.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_READ_DATA shl 14) or
  1123.     (71 shl 2) or METHOD_OUT_DIRECT);
  1124.   {$EXTERNALSYM FSCTL_READ_FROM_PLEX}
  1125.   FSCTL_FILE_PREFETCH = (
  1126.     (FILE_DEVICE_FILE_SYSTEM shl 16) or (FILE_SPECIAL_ACCESS shl 14) or
  1127.     (72 shl 2) or METHOD_BUFFERED);
  1128.   {$EXTERNALSYM FSCTL_FILE_PREFETCH}
  1129. //
  1130. // The following long list of structs are associated with the preceeding
  1131. // file system fsctls.
  1132. //
  1133. // Note that the structs for the property sets fsctls are not included
  1134. // in this file.  They can be found in ntfsprop.h where they should stay
  1135. // because of their dependency on objidl.h.
  1136. //
  1137. //
  1138. // Structure for FSCTL_IS_PATHNAME_VALID
  1139. //
  1140. type
  1141.   PPATHNAME_BUFFER = ^PATHNAME_BUFFER;
  1142.   {$EXTERNALSYM PPATHNAME_BUFFER}
  1143.   _PATHNAME_BUFFER = record
  1144.     PathNameLength: DWORD;
  1145.     Name: array [0..0] of WCHAR;
  1146.   end;
  1147.   {$EXTERNALSYM _PATHNAME_BUFFER}
  1148.   PATHNAME_BUFFER = _PATHNAME_BUFFER;
  1149.   {$EXTERNALSYM PATHNAME_BUFFER}
  1150.   TPathnameBuffer = PATHNAME_BUFFER;
  1151.   PPathnameBuffer = PPATHNAME_BUFFER;
  1152. //
  1153. // Structure for FSCTL_QUERY_BPB_INFO
  1154. //
  1155.   PFSCTL_QUERY_FAT_BPB_BUFFER = ^FSCTL_QUERY_FAT_BPB_BUFFER;
  1156.   {$EXTERNALSYM PFSCTL_QUERY_FAT_BPB_BUFFER}
  1157.   _FSCTL_QUERY_FAT_BPB_BUFFER = record
  1158.     First0x24BytesOfBootSector: array [0..$23] of BYTE;
  1159.   end;
  1160.   {$EXTERNALSYM _FSCTL_QUERY_FAT_BPB_BUFFER}
  1161.   FSCTL_QUERY_FAT_BPB_BUFFER = _FSCTL_QUERY_FAT_BPB_BUFFER;
  1162.   {$EXTERNALSYM FSCTL_QUERY_FAT_BPB_BUFFER}
  1163.   TFsctlQueryFatBpbBuffer = FSCTL_QUERY_FAT_BPB_BUFFER;
  1164.   PFsctlQueryFatBpbBuffer = PFSCTL_QUERY_FAT_BPB_BUFFER;
  1165. //
  1166. // Structures for FSCTL_GET_NTFS_VOLUME_DATA.
  1167. // The user must pass the basic buffer below.  Ntfs
  1168. // will return as many fields as available in the extended
  1169. // buffer which follows immediately after the VOLUME_DATA_BUFFER.
  1170. //
  1171.   PNTFS_VOLUME_DATA_BUFFER = ^NTFS_VOLUME_DATA_BUFFER;
  1172.   {$EXTERNALSYM PNTFS_VOLUME_DATA_BUFFER}
  1173.   NTFS_VOLUME_DATA_BUFFER = record
  1174.     VolumeSerialNumber: LARGE_INTEGER;
  1175.     NumberSectors: LARGE_INTEGER;
  1176.     TotalClusters: LARGE_INTEGER;
  1177.     FreeClusters: LARGE_INTEGER;
  1178.     TotalReserved: LARGE_INTEGER;
  1179.     BytesPerSector: DWORD;
  1180.     BytesPerCluster: DWORD;
  1181.     BytesPerFileRecordSegment: DWORD;
  1182.     ClustersPerFileRecordSegment: DWORD;
  1183.     MftValidDataLength: LARGE_INTEGER;
  1184.     MftStartLcn: LARGE_INTEGER;
  1185.     Mft2StartLcn: LARGE_INTEGER;
  1186.     MftZoneStart: LARGE_INTEGER;
  1187.     MftZoneEnd: LARGE_INTEGER;
  1188.   end;
  1189.   {$EXTERNALSYM NTFS_VOLUME_DATA_BUFFER}
  1190.   TNtfsVolumeDataBuffer = NTFS_VOLUME_DATA_BUFFER;
  1191.   PNtfsVolumeDataBuffer = PNTFS_VOLUME_DATA_BUFFER;
  1192.   PNTFS_EXTENDED_VOLUME_DATA = ^NTFS_EXTENDED_VOLUME_DATA;
  1193.   {$EXTERNALSYM PNTFS_EXTENDED_VOLUME_DATA}
  1194.   NTFS_EXTENDED_VOLUME_DATA = record
  1195.     ByteCount: DWORD;
  1196.     MajorVersion: WORD;
  1197.     MinorVersion: WORD;
  1198.   end;
  1199.   {$EXTERNALSYM NTFS_EXTENDED_VOLUME_DATA}
  1200.   TNtfsExtendedVolumeData = NTFS_EXTENDED_VOLUME_DATA;
  1201.   PNtfsExtendedVolumeData = PNTFS_EXTENDED_VOLUME_DATA;
  1202. //
  1203. // Structure for FSCTL_GET_VOLUME_BITMAP
  1204. //
  1205.   PSTARTING_LCN_INPUT_BUFFER = ^STARTING_LCN_INPUT_BUFFER;
  1206.   {$EXTERNALSYM PSTARTING_LCN_INPUT_BUFFER}
  1207.   STARTING_LCN_INPUT_BUFFER = record
  1208.     StartingLcn: LARGE_INTEGER;
  1209.   end;
  1210.   {$EXTERNALSYM STARTING_LCN_INPUT_BUFFER}
  1211.   TStartingLcnInputBuffer = STARTING_LCN_INPUT_BUFFER;
  1212.   PStartingLcnInputBuffer = PSTARTING_LCN_INPUT_BUFFER;
  1213.   PVOLUME_BITMAP_BUFFER = ^VOLUME_BITMAP_BUFFER;
  1214.   {$EXTERNALSYM PVOLUME_BITMAP_BUFFER}
  1215.   VOLUME_BITMAP_BUFFER = record
  1216.     StartingLcn: LARGE_INTEGER;
  1217.     BitmapSize: LARGE_INTEGER;
  1218.     Buffer: array [0..0] of BYTE;
  1219.   end;
  1220.   {$EXTERNALSYM VOLUME_BITMAP_BUFFER}
  1221.   TVolumeBitmapBuffer = VOLUME_BITMAP_BUFFER;
  1222.   PVolumeBitmapBuffer = PVOLUME_BITMAP_BUFFER;
  1223. //
  1224. // Structure for FSCTL_GET_RETRIEVAL_POINTERS
  1225. //
  1226.   PSTARTING_VCN_INPUT_BUFFER = ^STARTING_VCN_INPUT_BUFFER;
  1227.   {$EXTERNALSYM PSTARTING_VCN_INPUT_BUFFER}
  1228.   STARTING_VCN_INPUT_BUFFER = record
  1229.     StartingVcn: LARGE_INTEGER;
  1230.   end;
  1231.   {$EXTERNALSYM STARTING_VCN_INPUT_BUFFER}
  1232.   TStartingVcnInputBuffer = STARTING_VCN_INPUT_BUFFER;
  1233.   PStartingVcnInputBuffer = PSTARTING_VCN_INPUT_BUFFER;
  1234.   TRPBExtends = record
  1235.     NextVcn: LARGE_INTEGER;
  1236.     Lcn: LARGE_INTEGER;
  1237.   end;
  1238.   PRETRIEVAL_POINTERS_BUFFER = ^RETRIEVAL_POINTERS_BUFFER;
  1239.   {$EXTERNALSYM PRETRIEVAL_POINTERS_BUFFER}
  1240.   RETRIEVAL_POINTERS_BUFFER = record
  1241.     ExtentCount: DWORD;
  1242.     StartingVcn: LARGE_INTEGER;
  1243.     Extends: array [0..0] of TRPBExtends;
  1244.   end;
  1245.   {$EXTERNALSYM RETRIEVAL_POINTERS_BUFFER}
  1246.   TRetrievalPointersBuffer = RETRIEVAL_POINTERS_BUFFER;
  1247.   PRetrievalPointersBuffer = PRETRIEVAL_POINTERS_BUFFER;
  1248. //
  1249. // Structures for FSCTL_GET_NTFS_FILE_RECORD
  1250. //
  1251.   PNTFS_FILE_RECORD_INPUT_BUFFER = ^NTFS_FILE_RECORD_INPUT_BUFFER;
  1252.   {$EXTERNALSYM PNTFS_FILE_RECORD_INPUT_BUFFER}
  1253.   NTFS_FILE_RECORD_INPUT_BUFFER = record
  1254.     FileReferenceNumber: LARGE_INTEGER;
  1255.   end;
  1256.   {$EXTERNALSYM NTFS_FILE_RECORD_INPUT_BUFFER}
  1257.   TNtfsFileRecordInputBuffer = NTFS_FILE_RECORD_INPUT_BUFFER;
  1258.   PNtfsFileRecordInputBuffer = PNTFS_FILE_RECORD_INPUT_BUFFER;
  1259.   PNTFS_FILE_RECORD_OUTPUT_BUFFER = ^NTFS_FILE_RECORD_OUTPUT_BUFFER;
  1260.   {$EXTERNALSYM PNTFS_FILE_RECORD_OUTPUT_BUFFER}
  1261.   NTFS_FILE_RECORD_OUTPUT_BUFFER = record
  1262.     FileReferenceNumber: LARGE_INTEGER;
  1263.     FileRecordLength: DWORD;
  1264.     FileRecordBuffer: array [0..0] of BYTE;
  1265.   end;
  1266.   {$EXTERNALSYM NTFS_FILE_RECORD_OUTPUT_BUFFER}
  1267.   TNtfsFileRecordOutputBuffer = NTFS_FILE_RECORD_OUTPUT_BUFFER;
  1268.   PNtfsFileRecordOutputBuffer = PNTFS_FILE_RECORD_OUTPUT_BUFFER;
  1269. //
  1270. // Structure for FSCTL_MOVE_FILE
  1271. //
  1272.   PMOVE_FILE_DATA = ^MOVE_FILE_DATA;
  1273.   {$EXTERNALSYM PMOVE_FILE_DATA}
  1274.   MOVE_FILE_DATA = record
  1275.     FileHandle: HANDLE;
  1276.     StartingVcn: LARGE_INTEGER;
  1277.     StartingLcn: LARGE_INTEGER;
  1278.     ClusterCount: DWORD;
  1279.   end;
  1280.   {$EXTERNALSYM MOVE_FILE_DATA}
  1281.   TMoveFileData = MOVE_FILE_DATA;
  1282.   PMoveFileData = PMOVE_FILE_DATA;
  1283. {$IFDEF _WIN64}
  1284. //
  1285. //  32/64 Bit thunking support structure
  1286. //
  1287.   _MOVE_FILE_DATA32 = record
  1288.     FileHandle: UINT32;
  1289.     StartingVcn: LARGE_INTEGER;
  1290.     StartingLcn: LARGE_INTEGER;
  1291.     ClusterCount: DWORD;
  1292.   end;
  1293.   {$EXTERNALSYM _MOVE_FILE_DATA32}
  1294.   MOVE_FILE_DATA32 = _MOVE_FILE_DATA32;
  1295.   {$EXTERNALSYM MOVE_FILE_DATA32}
  1296.   PMOVE_FILE_DATA32 = ^MOVE_FILE_DATA32;
  1297.   {$EXTERNALSYM PMOVE_FILE_DATA32}
  1298.   TMoveFileData32 = MOVE_FILE_DATA32;
  1299.   PMoveFileData32 = PMOVE_FILE_DATA32;
  1300.   
  1301. {$ENDIF _WIN64}
  1302. //
  1303. // Structure for FSCTL_FIND_FILES_BY_SID
  1304. //
  1305.   PFIND_BY_SID_DATA = ^FIND_BY_SID_DATA;
  1306.   {$EXTERNALSYM PFIND_BY_SID_DATA}
  1307.   FIND_BY_SID_DATA = record
  1308.     Restart: DWORD;
  1309.     Sid: SID;
  1310.   end;
  1311.   {$EXTERNALSYM FIND_BY_SID_DATA}
  1312.   TFindBySidData = FIND_BY_SID_DATA;
  1313.   PFindBySidData = PFIND_BY_SID_DATA;
  1314. //
  1315. //  The following structures apply to Usn operations.
  1316. //
  1317. //
  1318. // Structure for FSCTL_ENUM_USN_DATA
  1319. //
  1320.   PMFT_ENUM_DATA = ^MFT_ENUM_DATA;
  1321.   {$EXTERNALSYM PMFT_ENUM_DATA}
  1322.   MFT_ENUM_DATA = record
  1323.     StartFileReferenceNumber: DWORDLONG;
  1324.     LowUsn: USN;
  1325.     HighUsn: USN;
  1326.   end;
  1327.   {$EXTERNALSYM MFT_ENUM_DATA}
  1328.   TMftEnumData = MFT_ENUM_DATA;
  1329.   PMftEnumData = PMFT_ENUM_DATA;
  1330. //
  1331. // Structure for FSCTL_CREATE_USN_JOURNAL
  1332. //
  1333.   PCREATE_USN_JOURNAL_DATA = ^CREATE_USN_JOURNAL_DATA;
  1334.   {$EXTERNALSYM PCREATE_USN_JOURNAL_DATA}
  1335.   CREATE_USN_JOURNAL_DATA = record
  1336.     MaximumSize: DWORDLONG;
  1337.     AllocationDelta: DWORDLONG;
  1338.   end;
  1339.   {$EXTERNALSYM CREATE_USN_JOURNAL_DATA}
  1340.   TCreateUsnJournalData = CREATE_USN_JOURNAL_DATA;
  1341.   PCreateUsnJournalData = PCREATE_USN_JOURNAL_DATA;
  1342. //
  1343. // Structure for FSCTL_READ_USN_JOURNAL
  1344. //
  1345.   PREAD_USN_JOURNAL_DATA = ^READ_USN_JOURNAL_DATA;
  1346.   {$EXTERNALSYM PREAD_USN_JOURNAL_DATA}
  1347.   READ_USN_JOURNAL_DATA = record
  1348.     StartUsn: USN;
  1349.     ReasonMask: DWORD;
  1350.     ReturnOnlyOnClose: DWORD;
  1351.     Timeout: DWORDLONG;
  1352.     BytesToWaitFor: DWORDLONG;
  1353.     UsnJournalID: DWORDLONG;
  1354.   end;
  1355.   {$EXTERNALSYM READ_USN_JOURNAL_DATA}
  1356.   TReadUsnJournalData = READ_USN_JOURNAL_DATA;
  1357.   PReadUsnJournalData = PREAD_USN_JOURNAL_DATA;
  1358. //
  1359. //  The initial Major.Minor version of the Usn record will be 2.0.
  1360. //  In general, the MinorVersion may be changed if fields are added
  1361. //  to this structure in such a way that the previous version of the
  1362. //  software can still correctly the fields it knows about.  The
  1363. //  MajorVersion should only be changed if the previous version of
  1364. //  any software using this structure would incorrectly handle new
  1365. //  records due to structure changes.
  1366. //
  1367. //  The first update to this will force the structure to version 2.0.
  1368. //  This will add the extended information about the source as
  1369. //  well as indicate the file name offset within the structure.
  1370. //
  1371. //  The following structure is returned with these fsctls.
  1372. //
  1373. //      FSCTL_READ_USN_JOURNAL
  1374. //      FSCTL_READ_FILE_USN_DATA
  1375. //      FSCTL_ENUM_USN_DATA
  1376. //
  1377.   PUSN_RECORD = ^USN_RECORD;
  1378.   {$EXTERNALSYM PUSN_RECORD}
  1379.   USN_RECORD = record
  1380.     RecordLength: DWORD;
  1381.     MajorVersion: WORD;
  1382.     MinorVersion: WORD;
  1383.     FileReferenceNumber: DWORDLONG;
  1384.     ParentFileReferenceNumber: DWORDLONG;
  1385.     Usn: USN;
  1386.     TimeStamp: LARGE_INTEGER;
  1387.     Reason: DWORD;
  1388.     SourceInfo: DWORD;
  1389.     SecurityId: DWORD;
  1390.     FileAttributes: DWORD;
  1391.     FileNameLength: WORD;
  1392.     FileNameOffset: WORD;
  1393.     FileName: array [0..0] of WCHAR;
  1394.   end;
  1395.   {$EXTERNALSYM USN_RECORD}
  1396.   TUsnRecord = USN_RECORD;
  1397.   PUsnRecord = PUSN_RECORD;
  1398. const
  1399.   USN_PAGE_SIZE = ($1000);
  1400.   {$EXTERNALSYM USN_PAGE_SIZE}
  1401.   USN_REASON_DATA_OVERWRITE        = ($00000001);
  1402.   {$EXTERNALSYM USN_REASON_DATA_OVERWRITE}
  1403.   USN_REASON_DATA_EXTEND           = ($00000002);
  1404.   {$EXTERNALSYM USN_REASON_DATA_EXTEND}
  1405.   USN_REASON_DATA_TRUNCATION       = ($00000004);
  1406.   {$EXTERNALSYM USN_REASON_DATA_TRUNCATION}
  1407.   USN_REASON_NAMED_DATA_OVERWRITE  = ($00000010);
  1408.   {$EXTERNALSYM USN_REASON_NAMED_DATA_OVERWRITE}
  1409.   USN_REASON_NAMED_DATA_EXTEND     = ($00000020);
  1410.   {$EXTERNALSYM USN_REASON_NAMED_DATA_EXTEND}
  1411.   USN_REASON_NAMED_DATA_TRUNCATION = ($00000040);
  1412.   {$EXTERNALSYM USN_REASON_NAMED_DATA_TRUNCATION}
  1413.   USN_REASON_FILE_CREATE           = ($00000100);
  1414.   {$EXTERNALSYM USN_REASON_FILE_CREATE}
  1415.   USN_REASON_FILE_DELETE           = ($00000200);
  1416.   {$EXTERNALSYM USN_REASON_FILE_DELETE}
  1417.   USN_REASON_EA_CHANGE             = ($00000400);
  1418.   {$EXTERNALSYM USN_REASON_EA_CHANGE}
  1419.   USN_REASON_SECURITY_CHANGE       = ($00000800);
  1420.   {$EXTERNALSYM USN_REASON_SECURITY_CHANGE}
  1421.   USN_REASON_RENAME_OLD_NAME       = ($00001000);
  1422.   {$EXTERNALSYM USN_REASON_RENAME_OLD_NAME}
  1423.   USN_REASON_RENAME_NEW_NAME       = ($00002000);
  1424.   {$EXTERNALSYM USN_REASON_RENAME_NEW_NAME}
  1425.   USN_REASON_INDEXABLE_CHANGE      = ($00004000);
  1426.   {$EXTERNALSYM USN_REASON_INDEXABLE_CHANGE}
  1427.   USN_REASON_BASIC_INFO_CHANGE     = ($00008000);
  1428.   {$EXTERNALSYM USN_REASON_BASIC_INFO_CHANGE}
  1429.   USN_REASON_HARD_LINK_CHANGE      = ($00010000);
  1430.   {$EXTERNALSYM USN_REASON_HARD_LINK_CHANGE}
  1431.   USN_REASON_COMPRESSION_CHANGE    = ($00020000);
  1432.   {$EXTERNALSYM USN_REASON_COMPRESSION_CHANGE}
  1433.   USN_REASON_ENCRYPTION_CHANGE     = ($00040000);
  1434.   {$EXTERNALSYM USN_REASON_ENCRYPTION_CHANGE}
  1435.   USN_REASON_OBJECT_ID_CHANGE      = ($00080000);
  1436.   {$EXTERNALSYM USN_REASON_OBJECT_ID_CHANGE}
  1437.   USN_REASON_REPARSE_POINT_CHANGE  = ($00100000);
  1438.   {$EXTERNALSYM USN_REASON_REPARSE_POINT_CHANGE}
  1439.   USN_REASON_STREAM_CHANGE         = ($00200000);
  1440.   {$EXTERNALSYM USN_REASON_STREAM_CHANGE}
  1441.   USN_REASON_CLOSE = DWORD($80000000);
  1442.   {$EXTERNALSYM USN_REASON_CLOSE}
  1443. //
  1444. //  Structure for FSCTL_QUERY_USN_JOUNAL
  1445. //
  1446. type
  1447.   PUSN_JOURNAL_DATA = ^USN_JOURNAL_DATA;
  1448.   {$EXTERNALSYM PUSN_JOURNAL_DATA}
  1449.   USN_JOURNAL_DATA = record
  1450.     UsnJournalID: DWORDLONG;
  1451.     FirstUsn: USN;
  1452.     NextUsn: USN;
  1453.     LowestValidUsn: USN;
  1454.     MaxUsn: USN;
  1455.     MaximumSize: DWORDLONG;
  1456.     AllocationDelta: DWORDLONG;
  1457.   end;
  1458.   {$EXTERNALSYM USN_JOURNAL_DATA}
  1459.   TUsnJournalData = USN_JOURNAL_DATA;
  1460.   PUsnJournalData = PUSN_JOURNAL_DATA;
  1461. //
  1462. //  Structure for FSCTL_DELETE_USN_JOURNAL
  1463. //
  1464.   PDELETE_USN_JOURNAL_DATA = ^DELETE_USN_JOURNAL_DATA;
  1465.   {$EXTERNALSYM PDELETE_USN_JOURNAL_DATA}
  1466.   DELETE_USN_JOURNAL_DATA = record
  1467.     UsnJournalID: DWORDLONG;
  1468.     DeleteFlags: DWORD;
  1469.   end;
  1470.   {$EXTERNALSYM DELETE_USN_JOURNAL_DATA}
  1471.   TDeleteUsnJournalData = DELETE_USN_JOURNAL_DATA;
  1472.   PDeleteUsnJournalData = PDELETE_USN_JOURNAL_DATA;
  1473. const
  1474.   USN_DELETE_FLAG_DELETE = ($00000001);
  1475.   {$EXTERNALSYM USN_DELETE_FLAG_DELETE}
  1476.   USN_DELETE_FLAG_NOTIFY = ($00000002);
  1477.   {$EXTERNALSYM USN_DELETE_FLAG_NOTIFY}
  1478.   USN_DELETE_VALID_FLAGS = ($00000003);
  1479.   {$EXTERNALSYM USN_DELETE_VALID_FLAGS}
  1480. //
  1481. //  Structure for FSCTL_MARK_HANDLE
  1482. //
  1483. type
  1484.   PMARK_HANDLE_INFO = ^MARK_HANDLE_INFO;
  1485.   {$EXTERNALSYM PMARK_HANDLE_INFO}
  1486.   MARK_HANDLE_INFO = record
  1487.     UsnSourceInfo: DWORD;
  1488.     VolumeHandle: HANDLE;
  1489.     HandleInfo: DWORD;
  1490.   end;
  1491.   {$EXTERNALSYM MARK_HANDLE_INFO}
  1492.   TMarkHandleInfo = MARK_HANDLE_INFO;
  1493.   PMarkHandleInfo = PMARK_HANDLE_INFO;
  1494. {$IFDEF _WIN64}
  1495. //
  1496. //  32/64 Bit thunking support structure
  1497. //
  1498.   MARK_HANDLE_INFO32 = record
  1499.     UsnSourceInfo: DWORD;
  1500.     VolumeHandle: UINT32;
  1501.     HandleInfo: DWORD;
  1502.   end;
  1503.   {$EXTERNALSYM MARK_HANDLE_INFO32}
  1504.   PMARK_HANDLE_INFO32 = ^MARK_HANDLE_INFO32;
  1505.   {$EXTERNALSYM PMARK_HANDLE_INFO32}
  1506.   TMarkHandleInfo32 = MARK_HANDLE_INFO32;
  1507.   PMarkHandleInfo32 = PMARK_HANDLE_INFO32;
  1508. {$ENDIF _WIN64}
  1509. //
  1510. //  Flags for the additional source information above.
  1511. //
  1512. //      USN_SOURCE_DATA_MANAGEMENT - Service is not modifying the external view
  1513. //          of any part of the file.  Typical case is HSM moving data to
  1514. //          and from external storage.
  1515. //
  1516. //      USN_SOURCE_AUXILIARY_DATA - Service is not modifying the external view
  1517. //          of the file with regard to the application that created this file.
  1518. //          Can be used to add private data streams to a file.
  1519. //
  1520. //      USN_SOURCE_REPLICATION_MANAGEMENT - Service is modifying a file to match
  1521. //          the contents of the same file which exists in another member of the
  1522. //          replica set.
  1523. //
  1524. const
  1525.   USN_SOURCE_DATA_MANAGEMENT        = ($00000001);
  1526.   {$EXTERNALSYM USN_SOURCE_DATA_MANAGEMENT}
  1527.   USN_SOURCE_AUXILIARY_DATA         = ($00000002);
  1528.   {$EXTERNALSYM USN_SOURCE_AUXILIARY_DATA}
  1529.   USN_SOURCE_REPLICATION_MANAGEMENT = ($00000004);
  1530.   {$EXTERNALSYM USN_SOURCE_REPLICATION_MANAGEMENT}
  1531. //
  1532. //  Flags for the HandleInfo field above
  1533. //
  1534. //  MARK_HANDLE_PROTECT_CLUSTERS - disallow any defragmenting (FSCTL_MOVE_FILE) until the
  1535. //      the handle is closed
  1536. //
  1537.   MARK_HANDLE_PROTECT_CLUSTERS      = $00000001;
  1538.   {$EXTERNALSYM MARK_HANDLE_PROTECT_CLUSTERS}
  1539. //
  1540. // Structure for FSCTL_SECURITY_ID_CHECK
  1541. //
  1542. type
  1543.   PBULK_SECURITY_TEST_DATA = ^BULK_SECURITY_TEST_DATA;
  1544.   {$EXTERNALSYM PBULK_SECURITY_TEST_DATA}
  1545.   BULK_SECURITY_TEST_DATA = record
  1546.     DesiredAccess: ACCESS_MASK;
  1547.     SecurityIds: array [0..0] of DWORD;
  1548.   end;
  1549.   {$EXTERNALSYM BULK_SECURITY_TEST_DATA}
  1550.   TBulkSecurityTestData = BULK_SECURITY_TEST_DATA;
  1551.   PBulkSecurityTestData = PBULK_SECURITY_TEST_DATA;
  1552. //
  1553. //  Output flags for the FSCTL_IS_VOLUME_DIRTY
  1554. //
  1555. const
  1556.   VOLUME_IS_DIRTY          = ($00000001);
  1557.   {$EXTERNALSYM VOLUME_IS_DIRTY}
  1558.   VOLUME_UPGRADE_SCHEDULED = ($00000002);
  1559.   {$EXTERNALSYM VOLUME_UPGRADE_SCHEDULED}
  1560. //
  1561. // Structures for FSCTL_FILE_PREFETCH
  1562. //
  1563. type
  1564.   _FILE_PREFETCH = record
  1565.     Type_: DWORD;
  1566.     Count: DWORD;
  1567.     Prefetch: array [0..0] of DWORDLONG;
  1568.   end;
  1569.   {$EXTERNALSYM _FILE_PREFETCH}
  1570.   FILE_PREFETCH = _FILE_PREFETCH;
  1571.   {$EXTERNALSYM FILE_PREFETCH}
  1572.   PFILE_PREFETCH = ^FILE_PREFETCH;
  1573.   {$EXTERNALSYM PFILE_PREFETCH}
  1574.   TFilePrefetch = FILE_PREFETCH;
  1575.   PFilePrefetch = PFILE_PREFETCH;  
  1576. const
  1577.   FILE_PREFETCH_TYPE_FOR_CREATE = $1;
  1578.   {$EXTERNALSYM FILE_PREFETCH_TYPE_FOR_CREATE}
  1579. //
  1580. // Structures for FSCTL_FILESYSTEM_GET_STATISTICS
  1581. //
  1582. // Filesystem performance counters
  1583. //
  1584. type
  1585.   PFILESYSTEM_STATISTICS = ^FILESYSTEM_STATISTICS;
  1586.   {$EXTERNALSYM PFILESYSTEM_STATISTICS}
  1587.   _FILESYSTEM_STATISTICS = record
  1588.     FileSystemType: WORD;
  1589.     Version: WORD;                  // currently version 1
  1590.     SizeOfCompleteStructure: DWORD; // must by a mutiple of 64 bytes
  1591.     UserFileReads: DWORD;
  1592.     UserFileReadBytes: DWORD;
  1593.     UserDiskReads: DWORD;
  1594.     UserFileWrites: DWORD;
  1595.     UserFileWriteBytes: DWORD;
  1596.     UserDiskWrites: DWORD;
  1597.     MetaDataReads: DWORD;
  1598.     MetaDataReadBytes: DWORD;
  1599.     MetaDataDiskReads: DWORD;
  1600.     MetaDataWrites: DWORD;
  1601.     MetaDataWriteBytes: DWORD;
  1602.     MetaDataDiskWrites: DWORD;
  1603.     //
  1604.     //  The file system's private structure is appended here.
  1605.     //
  1606.   end;
  1607.   {$EXTERNALSYM _FILESYSTEM_STATISTICS}
  1608.   FILESYSTEM_STATISTICS = _FILESYSTEM_STATISTICS;
  1609.   {$EXTERNALSYM FILESYSTEM_STATISTICS}
  1610.   TFilesystemStatistics = FILESYSTEM_STATISTICS;
  1611.   PFilesystemStatistics = PFILESYSTEM_STATISTICS;
  1612. // values for FS_STATISTICS.FileSystemType
  1613. const
  1614.   FILESYSTEM_STATISTICS_TYPE_NTFS = 1;
  1615.   {$EXTERNALSYM FILESYSTEM_STATISTICS_TYPE_NTFS}
  1616.   FILESYSTEM_STATISTICS_TYPE_FAT  = 2;
  1617.   {$EXTERNALSYM FILESYSTEM_STATISTICS_TYPE_FAT}
  1618. //
  1619. //  File System Specific Statistics Data
  1620. //
  1621. type
  1622.   PFAT_STATISTICS = ^FAT_STATISTICS;
  1623.   {$EXTERNALSYM PFAT_STATISTICS}
  1624.   _FAT_STATISTICS = record
  1625.     CreateHits: DWORD;
  1626.     SuccessfulCreates: DWORD;
  1627.     FailedCreates: DWORD;
  1628.     NonCachedReads: DWORD;
  1629.     NonCachedReadBytes: DWORD;
  1630.     NonCachedWrites: DWORD;
  1631.     NonCachedWriteBytes: DWORD;
  1632.     NonCachedDiskReads: DWORD;
  1633.     NonCachedDiskWrites: DWORD;
  1634.   end;
  1635.   {$EXTERNALSYM _FAT_STATISTICS}
  1636.   FAT_STATISTICS = _FAT_STATISTICS;
  1637.   {$EXTERNALSYM FAT_STATISTICS}
  1638.   TFatStatistics = FAT_STATISTICS;
  1639.   PFatStatistics = PFAT_STATISTICS;
  1640.   // NTFS Statistics
  1641.   TMftWritesUserLevel = record
  1642.     Write: WORD;
  1643.     Create: WORD;
  1644.     SetInfo: WORD;
  1645.     Flush: WORD;
  1646.   end;
  1647.   TMft2WritesUserLevel = record
  1648.     Write: WORD;
  1649.     Create: WORD;
  1650.     SetInfo: WORD;
  1651.     Flush: WORD;
  1652.   end;
  1653.   TBitmapWritesUserLevel = record
  1654.     Write: WORD;
  1655.     Create: WORD;
  1656.     SetInfo: WORD;
  1657.   end;
  1658.   TMftBitmapWritesUserLevel = record
  1659.     Write: WORD;
  1660.     Create: WORD;
  1661.     SetInfo: WORD;
  1662.     Flush: WORD;
  1663.   end;
  1664.   TAllocate = record
  1665.     Calls: DWORD;                // number of individual calls to allocate clusters
  1666.     Clusters: DWORD;             // number of clusters allocated
  1667.     Hints: DWORD;                // number of times a hint was specified
  1668.     RunsReturned: DWORD;         // number of runs used to satisify all the requests
  1669.     HintsHonored: DWORD;         // number of times the hint was useful
  1670.     HintsClusters: DWORD;        // number of clusters allocated via the hint
  1671.     Cache: DWORD;                // number of times the cache was useful other than the hint
  1672.     CacheClusters: DWORD;        // number of clusters allocated via the cache other than the hint
  1673.     CacheMiss: DWORD;            // number of times the cache wasn't useful
  1674.     CacheMissClusters: DWORD;    // number of clusters allocated without the cache
  1675.   end;
  1676.   {$EXTERNALSYM NTFS_STATISTICS}
  1677.   PNTFS_STATISTICS = ^NTFS_STATISTICS;
  1678.   _NTFS_STATISTICS  = record
  1679.     LogFileFullExceptions: DWORD;
  1680.     OtherExceptions: DWORD;
  1681.     //
  1682.     // Other meta data io's
  1683.     //
  1684.     MftReads: DWORD;
  1685.     MftReadBytes: DWORD;
  1686.     MftWrites: DWORD;
  1687.     MftWriteBytes: DWORD;
  1688.     MftWritesUserLevel: TMftWritesUserLevel;
  1689.     MftWritesFlushForLogFileFull: WORD;
  1690.     MftWritesLazyWriter: WORD;
  1691.     MftWritesUserRequest: WORD;
  1692.     Mft2Writes: DWORD;
  1693.     Mft2WriteBytes: DWORD;
  1694.     Mft2WritesUserLevel: TMft2WritesUserLevel;
  1695.     Mft2WritesFlushForLogFileFull: WORD;
  1696.     Mft2WritesLazyWriter: WORD;
  1697.     Mft2WritesUserRequest: WORD;
  1698.     RootIndexReads: DWORD;
  1699.     RootIndexReadBytes: DWORD;
  1700.     RootIndexWrites: DWORD;
  1701.     RootIndexWriteBytes: DWORD;
  1702.     BitmapReads: DWORD;
  1703.     BitmapReadBytes: DWORD;
  1704.     BitmapWrites: DWORD;
  1705.     BitmapWriteBytes: DWORD;
  1706.     BitmapWritesFlushForLogFileFull: WORD;
  1707.     BitmapWritesLazyWriter: WORD;
  1708.     BitmapWritesUserRequest: WORD;
  1709.     BitmapWritesUserLevel: TBitmapWritesUserLevel;
  1710.     MftBitmapReads: DWORD;
  1711.     MftBitmapReadBytes: DWORD;
  1712.     MftBitmapWrites: DWORD;
  1713.     MftBitmapWriteBytes: DWORD;
  1714.     MftBitmapWritesFlushForLogFileFull: WORD;
  1715.     MftBitmapWritesLazyWriter: WORD;
  1716.     MftBitmapWritesUserRequest: WORD;
  1717.     MftBitmapWritesUserLevel: TMftBitmapWritesUserLevel;
  1718.     UserIndexReads: DWORD;
  1719.     UserIndexReadBytes: DWORD;
  1720.     UserIndexWrites: DWORD;
  1721.     UserIndexWriteBytes: DWORD;
  1722.     //
  1723.     // Additions for NT 5.0
  1724.     //
  1725.     LogFileReads: DWORD;
  1726.     LogFileReadBytes: DWORD;
  1727.     LogFileWrites: DWORD;
  1728.     LogFileWriteBytes: DWORD;
  1729.     Allocate: TAllocate;
  1730.   end;
  1731.   {$EXTERNALSYM _NTFS_STATISTICS}
  1732.   NTFS_STATISTICS = _NTFS_STATISTICS;
  1733.   {$EXTERNALSYM PNTFS_STATISTICS}
  1734.   TNTFSStatistics = NTFS_STATISTICS;
  1735.   PNTFSStatistics = PNTFS_STATISTICS;
  1736. //
  1737. // Structure for FSCTL_SET_OBJECT_ID, FSCTL_GET_OBJECT_ID, and FSCTL_CREATE_OR_GET_OBJECT_ID
  1738. //
  1739.   PFILE_OBJECTID_BUFFER = ^FILE_OBJECTID_BUFFER;
  1740.   {$EXTERNALSYM PFILE_OBJECTID_BUFFER}
  1741.   _FILE_OBJECTID_BUFFER = record
  1742.     //
  1743.     //  This is the portion of the object id that is indexed.
  1744.     //
  1745.     ObjectId: array [0..15] of BYTE;
  1746.     //
  1747.     //  This portion of the object id is not indexed, it's just
  1748.     //  some metadata for the user's benefit.
  1749.     //
  1750.     case Integer of
  1751.       0: (
  1752.         BirthVolumeId: array [0..15] of BYTE;
  1753.         BirthObjectId: array [0..15] of BYTE;
  1754.         DomainId: array [0..15] of BYTE);
  1755.       1: (
  1756.         ExtendedInfo: array [0..47] of BYTE);
  1757.   end;
  1758.   {$EXTERNALSYM _FILE_OBJECTID_BUFFER}
  1759.   FILE_OBJECTID_BUFFER = _FILE_OBJECTID_BUFFER;
  1760.   {$EXTERNALSYM FILE_OBJECTID_BUFFER}
  1761.   TFileObjectIdBuffer = FILE_OBJECTID_BUFFER;
  1762.   PFileObjectIdBuffer = PFILE_OBJECTID_BUFFER;
  1763. //
  1764. // Structure for FSCTL_SET_SPARSE
  1765. //
  1766.   PFILE_SET_SPARSE_BUFFER = ^FILE_SET_SPARSE_BUFFER;
  1767.   {$EXTERNALSYM PFILE_SET_SPARSE_BUFFER}
  1768.   _FILE_SET_SPARSE_BUFFER = record
  1769.     SetSparse: ByteBool;
  1770.   end;
  1771.   {$EXTERNALSYM _FILE_SET_SPARSE_BUFFER}
  1772.   FILE_SET_SPARSE_BUFFER = _FILE_SET_SPARSE_BUFFER;
  1773.   {$EXTERNALSYM FILE_SET_SPARSE_BUFFER}
  1774.   TFileSetSparseBuffer = FILE_SET_SPARSE_BUFFER;
  1775.   PFileSetSparseBuffer = PFILE_SET_SPARSE_BUFFER;
  1776. //
  1777. // Structure for FSCTL_SET_ZERO_DATA
  1778. //
  1779.   PFILE_ZERO_DATA_INFORMATION = ^FILE_ZERO_DATA_INFORMATION;
  1780.   {$EXTERNALSYM PFILE_ZERO_DATA_INFORMATION}
  1781.   _FILE_ZERO_DATA_INFORMATION = record
  1782.     FileOffset: LARGE_INTEGER;
  1783.     BeyondFinalZero: LARGE_INTEGER;
  1784.   end;
  1785.   {$EXTERNALSYM _FILE_ZERO_DATA_INFORMATION}
  1786.   FILE_ZERO_DATA_INFORMATION = _FILE_ZERO_DATA_INFORMATION;
  1787.   {$EXTERNALSYM FILE_ZERO_DATA_INFORMATION}
  1788.   TFileZeroDataInformation = FILE_ZERO_DATA_INFORMATION;
  1789.   PFileZeroDataInformation = PFILE_ZERO_DATA_INFORMATION;
  1790. //
  1791. // Structure for FSCTL_QUERY_ALLOCATED_RANGES
  1792. //
  1793. //
  1794. // Querying the allocated ranges requires an output buffer to store the
  1795. // allocated ranges and an input buffer to specify the range to query.
  1796. // The input buffer contains a single entry, the output buffer is an
  1797. // array of the following structure.
  1798. //
  1799.   PFILE_ALLOCATED_RANGE_BUFFER = ^FILE_ALLOCATED_RANGE_BUFFER;
  1800.   {$EXTERNALSYM PFILE_ALLOCATED_RANGE_BUFFER}
  1801.   _FILE_ALLOCATED_RANGE_BUFFER = record
  1802.     FileOffset: LARGE_INTEGER;
  1803.     Length: LARGE_INTEGER;
  1804.   end;
  1805.   {$EXTERNALSYM _FILE_ALLOCATED_RANGE_BUFFER}
  1806.   FILE_ALLOCATED_RANGE_BUFFER = _FILE_ALLOCATED_RANGE_BUFFER;
  1807.   {$EXTERNALSYM FILE_ALLOCATED_RANGE_BUFFER}
  1808.   TFileAllocatedRangeBuffer = FILE_ALLOCATED_RANGE_BUFFER;
  1809.   PFileAllocatedRangeBuffer = PFILE_ALLOCATED_RANGE_BUFFER;
  1810. //
  1811. // Structures for FSCTL_SET_ENCRYPTION, FSCTL_WRITE_RAW_ENCRYPTED, and FSCTL_READ_RAW_ENCRYPTED
  1812. //
  1813. //
  1814. //  The input buffer to set encryption indicates whether we are to encrypt/decrypt a file
  1815. //  or an individual stream.
  1816. //
  1817.   PENCRYPTION_BUFFER = ^ENCRYPTION_BUFFER;
  1818.   {$EXTERNALSYM PENCRYPTION_BUFFER}
  1819.   _ENCRYPTION_BUFFER = record
  1820.     EncryptionOperation: DWORD;
  1821.     Private_: array [0..0] of BYTE;
  1822.   end;
  1823.   {$EXTERNALSYM _ENCRYPTION_BUFFER}
  1824.   ENCRYPTION_BUFFER = _ENCRYPTION_BUFFER;
  1825.   {$EXTERNALSYM ENCRYPTION_BUFFER}
  1826.   TEncryptionBuffer = ENCRYPTION_BUFFER;
  1827.   PEncryptionBuffer = PENCRYPTION_BUFFER;
  1828. const
  1829.   FILE_SET_ENCRYPTION      = $00000001;
  1830.   {$EXTERNALSYM FILE_SET_ENCRYPTION}
  1831.   FILE_CLEAR_ENCRYPTION    = $00000002;
  1832.   {$EXTERNALSYM FILE_CLEAR_ENCRYPTION}
  1833.   STREAM_SET_ENCRYPTION    = $00000003;
  1834.   {$EXTERNALSYM STREAM_SET_ENCRYPTION}
  1835.   STREAM_CLEAR_ENCRYPTION  = $00000004;
  1836.   {$EXTERNALSYM STREAM_CLEAR_ENCRYPTION}
  1837.   MAXIMUM_ENCRYPTION_VALUE = $00000004;
  1838.   {$EXTERNALSYM MAXIMUM_ENCRYPTION_VALUE}
  1839. //
  1840. //  The optional output buffer to set encryption indicates that the last encrypted
  1841. //  stream in a file has been marked as decrypted.
  1842. //
  1843. type
  1844.   PDECRYPTION_STATUS_BUFFER = ^DECRYPTION_STATUS_BUFFER;
  1845.   {$EXTERNALSYM PDECRYPTION_STATUS_BUFFER}
  1846.   _DECRYPTION_STATUS_BUFFER = record
  1847.     NoEncryptedStreams: ByteBool;
  1848.   end;
  1849.   {$EXTERNALSYM _DECRYPTION_STATUS_BUFFER}
  1850.   DECRYPTION_STATUS_BUFFER = _DECRYPTION_STATUS_BUFFER;
  1851.   {$EXTERNALSYM DECRYPTION_STATUS_BUFFER}
  1852.   TDecryptionStatusBuffer = DECRYPTION_STATUS_BUFFER;
  1853.   PDecryptionStatusBuffer = PDECRYPTION_STATUS_BUFFER;
  1854. const
  1855.   ENCRYPTION_FORMAT_DEFAULT = ($01);
  1856.   {$EXTERNALSYM ENCRYPTION_FORMAT_DEFAULT}
  1857.   COMPRESSION_FORMAT_SPARSE = ($4000);
  1858.   {$EXTERNALSYM COMPRESSION_FORMAT_SPARSE}
  1859. //
  1860. //  Request Encrypted Data structure.  This is used to indicate
  1861. //  the range of the file to read.  It also describes the
  1862. //  output buffer used to return the data.
  1863. //
  1864. type
  1865.   PREQUEST_RAW_ENCRYPTED_DATA = ^REQUEST_RAW_ENCRYPTED_DATA;
  1866.   {$EXTERNALSYM PREQUEST_RAW_ENCRYPTED_DATA}
  1867.   _REQUEST_RAW_ENCRYPTED_DATA = record
  1868.     //
  1869.     //  Requested file offset and requested length to read.
  1870.     //  The fsctl will round the starting offset down
  1871.     //  to a file system boundary.  It will also
  1872.     //  round the length up to a file system boundary.
  1873.     //
  1874.     FileOffset: LONGLONG;
  1875.     Length: DWORD;
  1876.   end;
  1877.   {$EXTERNALSYM _REQUEST_RAW_ENCRYPTED_DATA}
  1878.   REQUEST_RAW_ENCRYPTED_DATA = _REQUEST_RAW_ENCRYPTED_DATA;
  1879.   {$EXTERNALSYM REQUEST_RAW_ENCRYPTED_DATA}
  1880.   TRequestRawEncryptedData = REQUEST_RAW_ENCRYPTED_DATA;
  1881.   PRequestRawEncryptedData = PREQUEST_RAW_ENCRYPTED_DATA;
  1882. //
  1883. //  Encrypted Data Information structure.  This structure
  1884. //  is used to return raw encrypted data from a file in
  1885. //  order to perform off-line recovery.  The data will be
  1886. //  encrypted or encrypted and compressed.  The off-line
  1887. //  service will need to use the encryption and compression
  1888. //  format information to recover the file data.  In the
  1889. //  event that the data is both encrypted and compressed then
  1890. //  the decryption must occur before decompression.  All
  1891. //  the data units below must be encrypted and compressed
  1892. //  with the same format.
  1893. //
  1894. //  The data will be returned in units.  The data unit size
  1895. //  will be fixed per request.  If the data is compressed
  1896. //  then the data unit size will be the compression unit size.
  1897. //
  1898. //  This structure is at the beginning of the buffer used to
  1899. //  return the encrypted data.  The actual raw bytes from
  1900. //  the file will follow this buffer.  The offset of the
  1901. //  raw bytes from the beginning of this structure is
  1902. //  specified in the REQUEST_RAW_ENCRYPTED_DATA structure
  1903. //  described above.
  1904. //
  1905.   PENCRYPTED_DATA_INFO = ^ENCRYPTED_DATA_INFO;
  1906.   {$EXTERNALSYM PENCRYPTED_DATA_INFO}
  1907.   _ENCRYPTED_DATA_INFO = record
  1908.     //
  1909.     //  This is the file offset for the first entry in the
  1910.     //  data block array.  The file system will round
  1911.     //  the requested start offset down to a boundary
  1912.     //  that is consistent with the format of the file.
  1913.     //
  1914.     StartingFileOffset: DWORDLONG;
  1915.     //
  1916.     //  Data offset in output buffer.  The output buffer
  1917.     //  begins with an ENCRYPTED_DATA_INFO structure.
  1918.     //  The file system will then store the raw bytes from
  1919.     //  disk beginning at the following offset within the
  1920.     //  output buffer.
  1921.     //
  1922.     OutputBufferOffset: DWORD;
  1923.     //
  1924.     //  The number of bytes being returned that are within
  1925.     //  the size of the file.  If this value is less than
  1926.     //  (NumberOfDataBlocks << DataUnitShift), it means the
  1927.     //  end of the file occurs within this transfer.  Any
  1928.     //  data beyond file size is invalid and was never
  1929.     //  passed to the encryption driver.
  1930.     //
  1931.     BytesWithinFileSize: DWORD;
  1932.     //
  1933.     //  The number of bytes being returned that are below
  1934.     //  valid data length.  If this value is less than
  1935.     //  (NumberOfDataBlocks << DataUnitShift), it means the
  1936.     //  end of the valid data occurs within this transfer.
  1937.     //  After decrypting the data from this transfer, any
  1938.     //  byte(s) beyond valid data length must be zeroed.
  1939.     //
  1940.     BytesWithinValidDataLength: DWORD;
  1941.     //
  1942.     //  Code for the compression format as defined in
  1943.     //  ntrtl.h.  Note that COMPRESSION_FORMAT_NONE
  1944.     //  and COMPRESSION_FORMAT_DEFAULT are invalid if
  1945.     //  any of the described chunks are compressed.
  1946.     //
  1947.     CompressionFormat: WORD;
  1948.     //
  1949.     //  The DataUnit is the granularity used to access the
  1950.     //  disk.  It will be the same as the compression unit
  1951.     //  size for a compressed file.  For an uncompressed
  1952.     //  file, it will be some cluster-aligned power of 2 that
  1953.     //  the file system deems convenient.  A caller should
  1954.     //  not expect that successive calls will have the
  1955.     //  same data unit shift value as the previous call.
  1956.     //
  1957.     //  Since chunks and compression units are expected to be
  1958.     //  powers of 2 in size, we express them log2.  So, for
  1959.     //  example (1 << ChunkShift) == ChunkSizeInBytes.  The
  1960.     //  ClusterShift indicates how much space must be saved
  1961.     //  to successfully compress a compression unit - each
  1962.     //  successfully compressed data unit must occupy
  1963.     //  at least one cluster less in bytes than an uncompressed
  1964.     //  data block unit.
  1965.     //
  1966.     DataUnitShift: BYTE;
  1967.     ChunkShift: BYTE;
  1968.     ClusterShift: BYTE;
  1969.     //
  1970.     //  The format for the encryption.
  1971.     //
  1972.     EncryptionFormat: BYTE;
  1973.     //
  1974.     //  This is the number of entries in the data block size
  1975.     //  array.
  1976.     //
  1977.     NumberOfDataBlocks: WORD;
  1978.     //
  1979.     //  This is an array of sizes in the data block array.  There
  1980.     //  must be one entry in this array for each data block
  1981.     //  read from disk.  The size has a different meaning
  1982.     //  depending on whether the file is compressed.
  1983.     //
  1984.     //  A size of zero always indicates that the final data consists entirely
  1985.     //  of zeroes.  There is no decryption or decompression to
  1986.     //  perform.
  1987.     //
  1988.     //  If the file is compressed then the data block size indicates
  1989.     //  whether this block is compressed.  A size equal to
  1990.     //  the block size indicates that the corresponding block did
  1991.     //  not compress.  Any other non-zero size indicates the
  1992.     //  size of the compressed data which needs to be
  1993.     //  decrypted/decompressed.
  1994.     //
  1995.     //  If the file is not compressed then the data block size
  1996.     //  indicates the amount of data within the block that
  1997.     //  needs to be decrypted.  Any other non-zero size indicates
  1998.     //  that the remaining bytes in the data unit within the file
  1999.     //  consists of zeros.  An example of this is when the
  2000.     //  the read spans the valid data length of the file.  There
  2001.     //  is no data to decrypt past the valid data length.
  2002.     //
  2003.     DataBlockSize: array [0..ANYSIZE_ARRAY - 1] of DWORD;
  2004.   end;
  2005.   {$EXTERNALSYM _ENCRYPTED_DATA_INFO}
  2006.   ENCRYPTED_DATA_INFO = _ENCRYPTED_DATA_INFO;
  2007.   {$EXTERNALSYM ENCRYPTED_DATA_INFO}
  2008.   TEncryptedDataInfo = ENCRYPTED_DATA_INFO;
  2009.   PEncryptedDataInfo = PENCRYPTED_DATA_INFO;
  2010. //
  2011. //  FSCTL_READ_FROM_PLEX support
  2012. //  Request Plex Read Data structure.  This is used to indicate
  2013. //  the range of the file to read.  It also describes
  2014. //  which plex to perform the read from.
  2015. //
  2016.   _PLEX_READ_DATA_REQUEST = record
  2017.     //
  2018.     //  Requested offset and length to read.
  2019.     //  The offset can be the virtual offset (vbo) in to a file,
  2020.     //  or a volume. In the case of a file offset,
  2021.     //  the fsd will round the starting offset down
  2022.     //  to a file system boundary.  It will also
  2023.     //  round the length up to a file system boundary and
  2024.     //  enforce any other applicable limits.
  2025.     //
  2026.     ByteOffset: LARGE_INTEGER;
  2027.     ByteLength: DWORD;
  2028.     PlexNumber: DWORD;
  2029.   end;
  2030.   {$EXTERNALSYM _PLEX_READ_DATA_REQUEST}
  2031.   PLEX_READ_DATA_REQUEST = _PLEX_READ_DATA_REQUEST;
  2032.   {$EXTERNALSYM PLEX_READ_DATA_REQUEST}
  2033.   PPLEX_READ_DATA_REQUEST = ^PLEX_READ_DATA_REQUEST;
  2034.   {$EXTERNALSYM PPLEX_READ_DATA_REQUEST}
  2035.   TPlexReadDataRequest = PLEX_READ_DATA_REQUEST;
  2036.   PPlexReadDataRequest = PPLEX_READ_DATA_REQUEST;  
  2037. //
  2038. // FSCTL_SIS_COPYFILE support
  2039. // Source and destination file names are passed in the FileNameBuffer.
  2040. // Both strings are null terminated, with the source name starting at
  2041. // the beginning of FileNameBuffer, and the destination name immediately
  2042. // following.  Length fields include terminating nulls.
  2043. //
  2044.   PSI_COPYFILE = ^SI_COPYFILE;
  2045.   {$EXTERNALSYM PSI_COPYFILE}
  2046.   _SI_COPYFILE = record
  2047.     SourceFileNameLength: DWORD;
  2048.     DestinationFileNameLength: DWORD;
  2049.     Flags: DWORD;
  2050.     FileNameBuffer: array [0..0] of WCHAR;
  2051.   end;
  2052.   {$EXTERNALSYM _SI_COPYFILE}
  2053.   SI_COPYFILE = _SI_COPYFILE;
  2054.   {$EXTERNALSYM SI_COPYFILE}
  2055.   TSiCopyfile = SI_COPYFILE;
  2056.   PSiCopyfile = PSI_COPYFILE;
  2057. const
  2058.   COPYFILE_SIS_LINK    = $0001; // Copy only if source is SIS
  2059.   {$EXTERNALSYM COPYFILE_SIS_LINK}
  2060.   COPYFILE_SIS_REPLACE = $0002; // Replace destination if it exists, otherwise don't.
  2061.   {$EXTERNALSYM COPYFILE_SIS_REPLACE}
  2062.   COPYFILE_SIS_FLAGS   = $0003;
  2063.   {$EXTERNALSYM COPYFILE_SIS_FLAGS}
  2064. //
  2065. // These IOCTLs are handled by hard disk volumes.
  2066. //
  2067.   IOCTL_VOLUME_BASE = DWORD('V');
  2068.   {$EXTERNALSYM IOCTL_VOLUME_BASE}
  2069.   IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS = (
  2070.     (IOCTL_VOLUME_BASE shl 16) or (FILE_ANY_ACCESS shl 14) or
  2071.     (0 shl 2) or METHOD_BUFFERED);
  2072.   {$EXTERNALSYM IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS}
  2073.   IOCTL_VOLUME_IS_CLUSTERED = (
  2074.     (IOCTL_VOLUME_BASE shl 16) or (FILE_ANY_ACCESS shl 14) or
  2075.     (12 shl 2) or METHOD_BUFFERED);
  2076.   {$EXTERNALSYM IOCTL_VOLUME_IS_CLUSTERED}
  2077. //
  2078. // Disk extent definition.
  2079. //
  2080. type
  2081.   PDISK_EXTENT = ^DISK_EXTENT;
  2082.   {$EXTERNALSYM PDISK_EXTENT}
  2083.   _DISK_EXTENT = record
  2084.     DiskNumber: DWORD;
  2085.     StartingOffset: LARGE_INTEGER;
  2086.     ExtentLength: LARGE_INTEGER;
  2087.   end;
  2088.   {$EXTERNALSYM _DISK_EXTENT}
  2089.   DISK_EXTENT = _DISK_EXTENT;
  2090.   {$EXTERNALSYM DISK_EXTENT}
  2091.   TDiskExtent = DISK_EXTENT;
  2092.   PDiskExtent = PDISK_EXTENT;
  2093. //
  2094. // Output structure for IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS.
  2095. //
  2096.   PVOLUME_DISK_EXTENTS = ^VOLUME_DISK_EXTENTS;
  2097.   {$EXTERNALSYM PVOLUME_DISK_EXTENTS}
  2098.   _VOLUME_DISK_EXTENTS = record
  2099.     NumberOfDiskExtents: DWORD;
  2100.     Extents: array [0..0] of DISK_EXTENT;
  2101.   end;
  2102.   {$EXTERNALSYM _VOLUME_DISK_EXTENTS}
  2103.   VOLUME_DISK_EXTENTS = _VOLUME_DISK_EXTENTS;
  2104.   {$EXTERNALSYM VOLUME_DISK_EXTENTS}
  2105.   TVolumeDiskExtents = VOLUME_DISK_EXTENTS;
  2106.   PVolumeDiskExtents = PVOLUME_DISK_EXTENTS;
  2107. implementation
  2108. function CTL_CODE(DeviceType, Func, Method, Access: WORD): DWORD;
  2109. begin
  2110.   Result := (DeviceType shl 16) or (Access shl 14) or (Func shl 2) or Method;
  2111. end;
  2112. function DEVICE_TYPE_FROM_CTL_CODE(CtrlCode: DWORD): WORD;
  2113. begin
  2114.   Result := (CtrlCode and DWORD($FFFF0000)) shr 16;
  2115. end;
  2116. {
  2117. #define IsRecognizedPartition( PartitionType ) (    
  2118.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_FAT_12)) ||  
  2119.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_IFS)) ||  
  2120.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_HUGE)) ||  
  2121.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_FAT32)) ||  
  2122.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_FAT32_XINT13)) ||  
  2123.      ((PartitionType & PARTITION_NTFT) && ((PartitionType & ~0xC0) == PARTITION_XINT13)) ||  
  2124.      ((PartitionType) == PARTITION_FAT_12)          ||  
  2125.      ((PartitionType) == PARTITION_FAT_16)          ||  
  2126.      ((PartitionType) == PARTITION_IFS)             ||  
  2127.      ((PartitionType) == PARTITION_HUGE)            ||  
  2128.      ((PartitionType) == PARTITION_FAT32)           ||  
  2129.      ((PartitionType) == PARTITION_FAT32_XINT13)    ||  
  2130.      ((PartitionType) == PARTITION_XINT13) )
  2131. }
  2132. function IsRecognizedPartition(PartitionType: DWORD): Boolean;
  2133. begin
  2134.   Result :=
  2135.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_FAT_12)) or
  2136.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_IFS)) or
  2137.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_HUGE)) or
  2138.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_FAT32)) or
  2139.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_FAT32_XINT13)) or
  2140.     (((PartitionType and PARTITION_NTFT) <> 0) and ((PartitionType and not $C0) = PARTITION_XINT13)) or
  2141.     ((PartitionType) = PARTITION_FAT_12) or
  2142.     ((PartitionType) = PARTITION_FAT_16) or
  2143.     ((PartitionType) = PARTITION_IFS) or
  2144.     ((PartitionType) = PARTITION_HUGE) or
  2145.     ((PartitionType) = PARTITION_FAT32) or
  2146.     ((PartitionType) = PARTITION_FAT32_XINT13) or
  2147.     ((PartitionType) = PARTITION_XINT13);
  2148. end;
  2149. function IsContainerPartition(PartitionType: DWORD): Boolean;
  2150. begin
  2151.   Result :=
  2152.     (PartitionType = PARTITION_EXTENDED) or
  2153.     (PartitionType = PARTITION_XINT13_EXTENDED);
  2154. end;
  2155. function IsFTPartition(PartitionType: DWORD): Boolean;
  2156. begin
  2157. {     (((PartitionType)&PARTITION_NTFT) && IsRecognizedPartition(PartitionType)) }
  2158.   Result := ((PartitionType and PARTITION_NTFT) = PARTITION_NTFT) and IsRecognizedPartition(PartitionType);
  2159. end;
  2160. function DiskGeometryGetPartition(Geometry: DWORD): PDISK_PARTITION_INFO;
  2161. begin
  2162. //((PDISK_PARTITION_INFO)((Geometry)+1))
  2163.   Result := PDISK_PARTITION_INFO(Geometry + 1);
  2164. end;
  2165. function DiskGeometryGetDetect(Geometry: DWORD): PDISK_DETECTION_INFO;
  2166. begin
  2167. //((PDISK_DETECTION_INFO)(((PBYTE)DiskGeometryGetPartition(Geometry)+
  2168. //DiskGeometryGetPartition(Geometry)->SizeOfPartitionInfo)))
  2169.   Result := PDISK_DETECTION_INFO(DWORD_PTR(DiskGeometryGetPartition(Geometry)) + DiskGeometryGetPartition(Geometry)^.SizeOfPartitionInfo);
  2170. end;
  2171. end.