fnGetName


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 menues in ShapeUp to let the user load data from this plugin.

Example

const wchar_t* __cdecl fnGetName ( void )
{
    return L"Custom Data Loader";
} 

See Also

Loader API