Prototype
const wchar_t* __cdecl fnGetDescription ( void );
Return value
A short description of this plugin as a const wchar_t*.
Parameters
None
Remarks
Implement this function to supply a short one-line description of this plug-in. The return value is used in the status bar in ShapeUp when the mouse is hovering this menu item, or optionally its associated tool bar button.
Example
const wchar_t* __cdecl fnGetDescription ( void ) { return L"Performs custom calculations on selected column."; }
See Also