NWSM_LIST

Contains list information.

Syntax

  typedef struct NWSM_LIST_STRUCT 
  { 
     UINT8                     marked; 
     struct NWSM_LIST_STRUCT  *prev; 
     struct NWSM_LIST_STRUCT  *next; 
     void                     *otherInfo; 
     BUFFER                    text[1]; 
  } NWSM_LIST;
  

Fields

marked

Specifies if the data is valid or has been touched.

prev

Specifies the previous list element.

next

Specifies the next list element.

otherInfo

Specifies either a buffer containing user-defined information or an integer value (optional).

text

Specifies further information about the element.

Remarks

Do not modify marked.

The size of text is determined by the amount of text to be stored.

SMS uses NWSM_LIST for scan types. text contains the scan type string, and otherInfo contains the scan type bit map.