Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alabuzhev committed Apr 20, 2016
1 parent 2470a3d commit 5707cf8
Showing 1 changed file with 0 additions and 38 deletions.
38 changes: 0 additions & 38 deletions far/plclass.cpp
Expand Up @@ -405,44 +405,6 @@ static void ShowMessageAboutIllegalPluginVersion(const string& plg,const Version
);
}

/*void Plugin::ExecuteFunction(ExecuteStruct& es, const std::function<void()>& f)
{
Prologue();
++Activity;
try
{
f();
}
catch (const SException &e)
{
if (ProcessSEHException(e.GetInfo(), m_Factory->ExportsNames()[es.id].UName, this))
{
m_Factory->GetOwner()->UnloadPlugin(this, es.id);
es.Result = es.Default;
Global->ProcessException=FALSE;
}
else
{
throw;
}
}
catch (const std::exception &e)
{
if (ProcessStdException(e, m_Factory->ExportsNames()[es.id].UName, this))
{
m_Factory->GetOwner()->UnloadPlugin(this, es.id);
es.Result = es.Default;
Global->ProcessException = FALSE;
}
else
{
throw;
}
}
--Activity;
Epilogue();
}*/

static string MakeSignature(const os::FAR_FIND_DATA& Data)
{
return to_hex_wstring(Data.nFileSize) + to_hex_wstring(Data.ftCreationTime.dwLowDateTime) + to_hex_wstring(Data.ftLastWriteTime.dwLowDateTime);
Expand Down

0 comments on commit 5707cf8

Please sign in to comment.