mirror of
https://github.com/aaru-dps/010templates.git
synced 2025-12-16 11:14:27 +00:00
21 lines
455 B
Plaintext
21 lines
455 B
Plaintext
//------------------------------------------------
|
|
//--- 010 Editor v8.0.1 Binary Template
|
|
//
|
|
// File: scsi_read_capacity.bt
|
|
// Authors: Natalia Portillo
|
|
// Version: 0.1
|
|
// Purpose: Decoding of SCSI READ CAPACITY return
|
|
// Category: SCSI
|
|
// File Mask:
|
|
// ID Bytes:
|
|
// History:
|
|
//------------------------------------------------
|
|
|
|
typedef struct
|
|
{
|
|
uint blocks;
|
|
uint blocksize;
|
|
} ScsiReadCapacity;
|
|
|
|
BigEndian();
|
|
ScsiReadCapacity capacity; |