VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Mount/MainCom.cpp
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2015-05-20 07:08:03 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2015-05-22 12:00:17 +0200
commit138d22a254d55724efa9587ce3d53fbed491d04f (patch)
tree160743d77457a79450872dee66f155fa19108cff /src/Mount/MainCom.cpp
parent330bed0c42ae906d4482db8896b8cb7b2820107b (diff)
downloadVeraCrypt-138d22a254d55724efa9587ce3d53fbed491d04f.tar.gz
VeraCrypt-138d22a254d55724efa9587ce3d53fbed491d04f.zip
Windows: remove crash dump analysis functionality. It didn't always work and it required external debugging tools.
Diffstat (limited to 'src/Mount/MainCom.cpp')
-rw-r--r--src/Mount/MainCom.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Mount/MainCom.cpp b/src/Mount/MainCom.cpp
index 5a43d36f..69f8bd4e 100644
--- a/src/Mount/MainCom.cpp
+++ b/src/Mount/MainCom.cpp
@@ -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;