XSIPLUGINCALLBACK CStatus XSIUnloadPlugin( const PluginRegistrar& in_reg ) { CString strPluginName; strPluginName = in_reg.GetName(); Application().LogMessage(strPluginName + L" has been unloaded.",siVerboseMsg); return CStatus::OK; }
SICALLBACK XSIUnloadPlugin( const PluginRegistrar& in_reg ) { CString strPluginName; strPluginName = in_reg.GetName(); app.LogMessage(strPluginName + L" has been unloaded.",siVerboseMsg); return CStatus::OK; }
SICALLBACK XSIUnloadPlugin( const PluginRegistrar& in_reg ) { deleteAllArchives(); CString strPluginName; strPluginName = in_reg.GetName(); Application().LogMessage(strPluginName + L" has been unloaded.",siVerboseMsg); return CStatus::OK; }
/* Plugin ロードエントリ */ XSIPLUGINCALLBACK CStatus XSILoadPlugin( PluginRegistrar& in_reg ) { in_reg.PutAuthor(L"oyaG"); in_reg.PutName(L"GMenuPlugin"); in_reg.PutEmail(L""); in_reg.PutURL(L""); in_reg.PutVersion(1,0); in_reg.RegisterCommand(L"GMenu",L"GMenu"); //RegistrationInsertionPoint - do not remove this line Application().LogMessage(in_reg.GetName() + L" is loading.",siVerboseMsg); return CStatus::OK; }