Prototype
const wchar_t* __cdecl fnGetName ( void );
Return value
The name of this plugin as a const wchar_t*.
Parameters
None
Remarks
Implement this function to give a user-friendly name for the plugin. The return value is used in the exporter dialog in ShapeUp to let the user export data using this plugin.
Example
const wchar_t* __cdecl fnGetName ( void ) { return L"Custom Data Exporter"; }
See Also