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 exporter dialog in ShapeUp to describe what this plug-in does.
Example
const wchar_t* __cdecl fnGetDescription ( void ) { return L"My type file exporter"; }
See Also