summaryrefslogtreecommitdiff
path: root/plugins/CrashDumper/src/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/CrashDumper/src/utils.cpp')
-rw-r--r--plugins/CrashDumper/src/utils.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/CrashDumper/src/utils.cpp b/plugins/CrashDumper/src/utils.cpp
index 4a8feb88b0..83e99f25c9 100644
--- a/plugins/CrashDumper/src/utils.cpp
+++ b/plugins/CrashDumper/src/utils.cpp
@@ -23,20 +23,6 @@ static HINSTANCE hKernel = GetModuleHandleA("kernel32.dll");
typedef BOOL (WINAPI *tGetProductInfo)(DWORD, DWORD, DWORD, DWORD, PDWORD);
tGetProductInfo pGetProductInfo = (tGetProductInfo)GetProcAddress(hKernel, "GetProductInfo");
-void CheckForOtherCrashReportingPlugins(void)
-{
- HMODULE hModule = GetModuleHandle(TEXT("attache.dll"));
- if (hModule == NULL)
- hModule = GetModuleHandle(TEXT("crashrpt.dll"));
- if (hModule == NULL)
- hModule = GetModuleHandle(TEXT("crashdmp.dll"));
-
- if (hModule == NULL) return;
-
- MessageBox(NULL, TranslateT("More then one crash reporting plugin installed. This will result in inability of creating crash reports"),
- TEXT("Miranda Crash Dumper"), MB_OK | MB_ICONERROR | MB_TASKMODAL | MB_TOPMOST);
-}
-
void GetOSDisplayString(CMString &buffer)
{
OSVERSIONINFOEX osvi = { 0 };