Share via


CDROM_READ (Windows Embedded CE 6.0)

1/6/2010

This structure contains information on where to start reading information from the CD-ROM.

Syntax

typedef struct CDROM_READ { 
  CDROM_ADDR StartAddr; 
  DWORD TransferLength; 
  BOOL bRawMode; 
  TRACK_MODE_TYPE TrackMode; 
  DWORD sgcount; 
  SGX_BUF sglist[1]; 
} CDROM_READ, *PCDROM_READ;

Members

  • StartAddr
    Contains the sector number from which to read.
  • TransferLength
    Contains the number of blocks to read.
  • bRawMode
    Flag to set RawMode.
  • TrackMode
    Only used if bRawMode is TRUE.
  • sgcount
    The number of scatter/gather buffers.
  • sglist
    Contains the first scatter/gather buffer.

Requirements

Header cdioctl.h
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

Block Driver Structures

Other Resources

Block Drivers