From 1cacabc4a97dc5303964161dc0e5d8fd53c6e036 Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Fri, 26 Sep 2014 21:50:14 +0000 Subject: Crash Dumper: - Removed folders support for CrashLog directory (too dangerous and only available after all plugins have been loaded) - menus are created inside Load() PluginUpdater: - Replace obsioleted plugins git-svn-id: http://svn.miranda-ng.org/main/trunk@10606 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/CrashDumper/src/utils.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'plugins/CrashDumper/src/utils.cpp') 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 }; -- cgit v1.2.3