FSDERRINFO (Compact 2013)
3/26/2014
This structure contains members that define a disk I/O error for an error handler to use.
Syntax
typedef struct _FSDERRINFO (
DWORD dwIoctlCode;
DWORD dwSectorStart;
DWORD dwNumSectors;
DWORD dwRetryCount;
DWORD dwError;
LPCVOID pInBuf;
) FSDERRINFO, *PFSDERRINFO;
typedef const FSDERRINFO *PCFSDERRINFO;
Members
- dwIoctlCode
Specifies IOCTL performed.
- dwSectorStart
Specifies starting sector.
- dwNumSectors
Specifies number of sectors.
- dwRetryCount
Specifies number of times retried.
- dwError
Error code (GetLastError). The error reported will change to ERROR_GEN_FAILURE if GetLastError returns a value of 0.
- pInBuf
Specifies the pInBuf argument of the IOCTL.