diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2014-09-26 21:50:14 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2014-09-26 21:50:14 +0000 |
commit | 1cacabc4a97dc5303964161dc0e5d8fd53c6e036 (patch) | |
tree | 9acf55cb920e724b339b9c8547f0fed547c2d7cd /plugins/CrashDumper/src/utils.cpp | |
parent | ed4041f2807d8aadad1e9701675ede59d1d8e417 (diff) |
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
Diffstat (limited to 'plugins/CrashDumper/src/utils.cpp')
-rw-r--r-- | plugins/CrashDumper/src/utils.cpp | 14 |
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 };
|