====== PluginGetTitle plugin export ====== You can define this export to give PlayClaw user-friendly plugin name to show it in plugins settings instead of plugin dll name (by default). ==== Syntax ==== <code> PLUGIN_EXPORT const WCHAR* PluginGetTitle( ); </code> ====Sample code==== <code> PLUGIN_EXPORT const WCHAR* PluginGetTitle() { return L"My Plugin Name"; } </code> ===See also=== Other [[plugin_sdk:exports:|export functions]]