fnGetLastErrMsg


Prototype

const wchar_t* __cdecl fnGetLastErrMsg ( void ); 

Return value

String describing the last error in a human readable way.

Parameters

None

Remarks

This function gets called after an exported function like fnExportShape fails, to get error information to present to the user.

Example

const wchar_t* __cdecl fnGetLastErrMsg ( void )
{
    return wsErr;
} 

See Also

Exporter API, fnExportShape