fnVersion


Prototype

size_t __cdecl fnVersion ( void ); 

Return value

The version of the exporter 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 xprdef.h to EXPORTER_PLUGIN_INTERFACE_VERSION.

Example

size_t __cdecl fnVersion ( void )
{
    return EXPORTER_PLUGIN_INTERFACE_VERSION;
} 

See Also

Exporter API