GetOpenPluginInfo

Far Manager

GetOpenPluginInfo

The GetOpenPluginInfo function is called to get the information about an open plugin instance.
void WINAPI GetOpenPluginInfo(
  HANDLE hPlugin,
  struct OpenPluginInfo *Info
);

Parameters

hPlugin
Plugin handle returned by OpenPlugin or OpenFilePlugin.
Info
Points to an OpenPluginInfo structure that should be filled by this function.

Return value

None.

Remarks

  1. The OpenPluginInfo structure passed to this function is already filled with zeroes. The plugin is required to fill the OpenPluginInfo.StructSize field.
  2. FAR calls GetOpenPluginInfo function rather often, therefore it is necessary to minimize "computations" performed by this function when developing a plugin.
See also: