fnGetInfo


Prototype

const wchar_t* __cdecl fnGetInfo ( void ); 

Return value

A wide character string describing this plugin.

Parameters

None

Remarks

Implement and export this function if the plugin 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 plugin exports data to *** format.\n\tCopyright ... 2004";
} 

See Also

Exporter API