Prototype
const wchar_t* __cdecl fnGetInfo ( void );
Return value
A wide character string describing this plug-in.
Parameters
None
Remarks
Implement and export this function if the plug-in has some information to be displayed to the user. E.g. what it does and copyright notices.
Example
const wchar_t* __cdecl fnGetInfo ( void ) { return L"This plug-in performs custom calculations on selected columns.\n" L"\tCopyright ... 2004"; }
See Also