Jump to content

EPTGTBUFTAB

From EDM2

This structure is the target buffer table for the PARM_NOTIFY data structure. It defines the characteristics and location of the destination buffer during a notification event.

 typedef struct _EPTGTBUFTAB {
   PVOID      pBuffer;        /*  Pointer to buffer. */
   ULONG      ulBufId;        /*  Buffer ID. */
   ULONG      ulLength;       /*  Buffer length. */
   ULONG      ulMessageParm;  /*  Message passed to application. */
   MMTIME     mmtimeOffset;   /*  MMTIME offset from beginning of buffer. */
   ULONG      ulParm1;        /*  Buffer-specific data. */
   ULONG      ulParm2;        /*  Buffer-specific data. */
   PVOID      pProcessLin;    /*  Process linear buffer pointer. */
 } EPTGTBUFTAB;
 
 typedef   EPTGTBUFTAB   FAR   * PEPTGTBUFTAB ;