mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[PSDK]
- Add CDROM_TOC_SESSION_DATA structure. [DDK] - Add missing min and max macros. svn path=/trunk/; revision=48878
This commit is contained in:
parent
fd0b03ddfd
commit
f6e6759404
2 changed files with 10 additions and 0 deletions
|
@ -13,6 +13,9 @@
|
|||
|
||||
#include <scsi.h>
|
||||
|
||||
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||
|
||||
#define SRB_CLASS_FLAGS_LOW_PRIORITY 0x10000000
|
||||
#define SRB_CLASS_FLAGS_PERSISTANT 0x20000000
|
||||
#define SRB_CLASS_FLAGS_PAGING 0x40000000
|
||||
|
|
|
@ -165,6 +165,13 @@ typedef struct _CDROM_TOC {
|
|||
|
||||
#define CDROM_TOC_SIZE sizeof(CDROM_TOC)
|
||||
|
||||
typedef struct _CDROM_TOC_SESSION_DATA {
|
||||
UCHAR Length[2];
|
||||
UCHAR FirstCompleteSession;
|
||||
UCHAR LastCompleteSession;
|
||||
TRACK_DATA TrackData[1];
|
||||
} CDROM_TOC_SESSION_DATA, *PCDROM_TOC_SESSION_DATA;
|
||||
|
||||
typedef struct _CDROM_TOC_ATIP_DATA_BLOCK {
|
||||
UCHAR CdrwReferenceSpeed : 3;
|
||||
UCHAR Reserved3 : 1;
|
||||
|
|
Loading…
Reference in a new issue