PF_PARSERDLLINFO
The PF_PARSERDLLINFO structure defines the parsers located in the parser DLL.
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
Client | Requires Windows XP, Windows 2000 Professional, or Windows NT Workstation 4.0. |
Server | Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0. |
Header | Declared in Netmon.h. |