2.2.2.8 WINSINTF_RECS_T

The structure WINSINTF_RECS_T defines an array of WINSINTF_RECORD_ACTION_T (section 2.2.2.3) elements. The R_WinsGetDbRecs (section 3.1.4.6) and R_WinsGetDbRecsByName (section 3.1.4.19) methods use this structure.

 typedef struct _WINSINTF_RECS_T {
   DWORD BuffSize;
   [unique, size_is(NoOfRecs)] PWINSINTF_RECORD_ACTION_T pRow;
   DWORD NoOfRecs;
   DWORD TotalNoOfRecs;
 } WINSINTF_RECS_T,
  *PWINSINTF_RECS_T;

BuffSize: The number of bytes allocated for the pointer pRow.

pRow: A pointer to an array of WINSINTF_RECORD_ACTION_T elements.

NoOfRecs: The number of records stored in the array pointed to by pRow.

TotalNoOfRecs: This member is not set and MUST be ignored on receipt.