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 Table menu in ShapeUp to let the user select this plugin.
Example
const wchar_t* __cdecl fnGetName ( void ) { return L"Custom Statistical Tool"; }
See Also