IOCTL_CDROM_READ_TOC (Windows CE 5.0)

Send Feedback

This IOCTL returns the table of contents of the medium. The DeviceIoControl function processes this IOCTL.

Parameters

  • dwIoControlCode
    [in] Set to IOCTL_CDROM_READ_TOC to retrieve the table of contents information and store it into the CDROM_TOC structure.
  • lpInBuf
    [in] Set to NULL.
  • nInBufSize
    [in] Set to zero.
  • lpOutBuf
    [in, out] On input, set to the address of an allocated CDROM_TOC structure. On output, a filled CDROM_TOC structure.
  • nOutBufSize
    [in] Set to the size of the CDROM_TOC.
  • lpBytesReturned
    [in, out] On input, address of a DWORD that receives the size in bytes of the data returned. On output, set to the number of bytes written to the supplied buffer.

Return Values

If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To obtain extended error information, call GetLastError.

Remarks

The maximum number of tracks is 100.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Cdioctl.h.

See Also

Block Drivers | DeviceIoControl

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.