Windows: remove crash dump analysis functionality. It didn't always work and it required external debugging tools.

This commit is contained in:
Mounir IDRASSI
2015-05-20 07:08:03 +02:00
parent 330bed0c42
commit 138d22a254
7 changed files with 4 additions and 541 deletions

View File

@@ -67,12 +67,6 @@ public:
return S_OK;
}
virtual void STDMETHODCALLTYPE AnalyzeKernelMiniDump (LONG_PTR hwndDlg)
{
MainDlg = (HWND) hwndDlg;
::AnalyzeKernelMiniDump ((HWND) hwndDlg);
}
virtual int STDMETHODCALLTYPE BackupVolumeHeader (LONG_PTR hwndDlg, BOOL bRequireConfirmation, BSTR lpszVolume)
{
USES_CONVERSION;
@@ -230,23 +224,6 @@ ITrueCryptMainCom *GetElevatedInstance (HWND parent)
}
extern "C" void UacAnalyzeKernelMiniDump (HWND hwndDlg)
{
CComPtr<ITrueCryptMainCom> tc;
CoInitialize (NULL);
if (ComGetInstance (hwndDlg, &tc))
{
WaitCursor();
tc->AnalyzeKernelMiniDump ((LONG_PTR) hwndDlg);
NormalCursor();
}
CoUninitialize ();
}
extern "C" int UacBackupVolumeHeader (HWND hwndDlg, BOOL bRequireConfirmation, char *lpszVolume)
{
CComPtr<ITrueCryptMainCom> tc;