Prototype
size_t __cdecl fnVersion ( void );
Return value
The version of the loader plugin interface this plugin is using.
Parameters
None.
Remarks
This function helps ShapeUp control the interface for which a plugin was built and call the right functions with the right parameters. The official interface version is currently defined in ldrdef.h to LOADER_PLUGIN_INTERFACE_VERSION.
Example
size_t __cdecl fnVersion ( void ) { return LOADER_PLUGIN_INTERFACE_VERSION; }
See Also