Click or drag to resize
PFSDllWrapperpfsExplore Method
To provide an alternative to the lookup read interface. pfsExplore guides the application programmer through a PFS data structure and calls a user-defined function for each pfsNode encountered. The pfsNode is passed to the user-defined function for processing in the application context. With this approach, the application programmer needs not care about how to traverse the PFS data structure - this is done by pfsExplore - but instead pay attention to the position of the actual pfsNode in the structure.

Namespace: DHI.PFS
Assembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax
public static void pfsExplore(
	IntPtr handle,
	pfsNodeCallback callMeAt
)

Parameters

handle
Type: SystemIntPtr
A pfsHandle pointer
callMeAt
Type: DHI.PFSpfsNodeCallback
Remarks
See the application examples for a complete example (in pfsdll.w51).
See Also