ContentPluginUnloading

From TotalcmdWiki
Revision as of 15:27, 15 April 2017 by Lefteous (talk | contribs) (Initial document version, backlink & category)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ContentPluginUnloading is called just before the plugin is unloaded, e.g. to close buffers, abort operations etc.

Declaration:

void __stdcall ContentPluginUnloading(void);

Description of parameters:

There are no parameters.

Return value:

There is no return value.

Note:

This function was added by request from a user who needs to unload GDI+. It seems that GDI+ has a bug which makes it crash when unloading it in the DLL unload function, therefore a separate unload function is needed.


Back to Content plugins developer guide