NWSM_GET_FIELDS_TABLE

Contains information about each table entry.

Syntax

  typedef struct 
  { 
     UINT32      fid; 
     void       *data; 
     UINT32      dataSize; 
     NWBOOLEAN   found; 
  } NWSM_GET_FIELDS_TABLE;
  

Fields

fid

Specifies the FID of the field the you are looking for.

data

Specifies the field's data.

dataSize

Specifies the size of data in bytes.

found

Specifies a flag that indicates if a FID that matches fid was found (initialize to FALSE):

  • TRUE Match was found
  • FALSE No match was found

Remarks

Set fid to NWSM_RECORD_SIZE. The fid value of the first element must be set to the section FID. The fid value of the last element must be set to NWSM_END to indicate the end of the table.

data is allocated by the calling function. If the buffer is too small, BUFFER_OVERFLOW is returned.