Jump to content

EPSRCBUFTAB

From EDM2

This structure is the source buffer table for the PARM_NOTIFY data structure. It provides details about the specific buffer and record currently being processed or notified.

 typedef struct _EPSRCBUFTAB {
   PVOID      pBuffer;        /*  Pointer to buffer. */
   PVOID      pRecord;        /*  Pointer to record in buffer. */
   ULONG      ulLength;       /*  Buffer length. */
   ULONG      ulMessageParm;  /*  Message to passed to application. */
   MMTIME     mmtimeOffset;   /*  MMTIME offset from beginning of buffer. */
   ULONG      ulParm1;        /*  Record or buffer-specific data. */
   ULONG      ulParm2;        /*  Record or buffer-specific data. */
   PVOID      pProcessLin;    /*  Process linear record pointer. */
 } EPSRCBUFTAB;
 
 typedef   EPSRCBUFTAB   FAR   * PEPSRCBUFTAB ;