PF_PARSERDLLINFO structure

The PF_PARSERDLLINFO structure defines the parsers located in the parser DLL.

Syntax

typedef struct _PF_PARSERDLLINFO {
  DWORD         nParsers;
  PF_PARSERINFO ParserInfo[];
} PF_PARSERDLLINFO, *PPF_PARSERDLLINFO;

Members

nParsers

Number of parsers in the parser DLL.

ParserInfo

Array of PF_PARSERINFO structures that describe each parser in the parser DLL.

Remarks

The PF_PARSERDLLINFO structure is returned by the ParserAutoInstallInfo export function that is implemented in the parser DLL. The ParserAutoInstallInfo function identifies the number of parsers in the DLL, and uses an array of PF_PARSERINFO structures to describe each parser.

The PF_PARSERDLLINFO structure must be allocated using HeapAlloc.

For information on See
What parsers are, and how they work with Network Monitor. Parsers
Which entry points are included in the parser DLL. Parser DLL Architecture
How to implement ParserAutoInstallInfo includes an example. Implementing ParserAutoIstallInfo

Requirements

Requirement Value
Minimum supported client
Windows 2000 Professional [desktop apps only]
Minimum supported server
Windows 2000 Server [desktop apps only]
Header
Netmon.h

See also

PF_PARSERINFO

ParserAutoInstallInfo