Jump to content

LISTIO

From EDM2
Revision as of 00:49, 19 May 2025 by Martini (talk | contribs) (Created page with "List of I/O requests for DosListIO. ==Syntax== <PRE> typedef struct _LISTIO { HFILE hFile; File handle.: ULONG CmdFlag; Command flag.: LONG Offset; Offset into file or disk.: PVOID pBuffer; Pointer to read/write buffer.: ULONG NumBytes; Number of bytes to read or write.: ULONG Actual; Actual number of bytes read or written.: ULONG RetCode; /* Retu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

List of I/O requests for DosListIO.

Syntax

typedef struct _LISTIO {
  HFILE     hFile;         /*  File handle. */
  ULONG     CmdFlag;       /*  Command flag. */
  LONG      Offset;        /*  Offset into file or disk. */
  PVOID     pBuffer;       /*  Pointer to read/write buffer. */
  ULONG     NumBytes;      /*  Number of bytes to read or write. */
  ULONG     Actual;        /*  Actual number of bytes read or written. */
  ULONG     RetCode;       /*  Return code from operation. */
  ULONG     Reserved;      /*  Reserved. */
  ULONG     Reserved2[3];  /*  Reserved. */
  ULONG     Reserved3[2];  /*  Reserved. */
} LISTIO;

typedef   LISTIO   * PLISTIO ;

Type

struct

C Declaration Method

typedef