forked from TortoiseGit/TortoiseGit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switched to crash-server crash handler
Signed-off-by: Sven Strickroth <[email protected]>
- Loading branch information
Showing
12 changed files
with
658 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// TortoiseGit - a Windows shell extension for easy version control | ||
|
||
// External Cache Copyright (C) 2005 - 2006,2010 - Will Dean, Stefan Kueng | ||
// Copyright (C) 2008-2011 - TortoiseGit | ||
// Copyright (C) 2008-2012 - TortoiseGit | ||
|
||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of the GNU General Public License | ||
|
@@ -25,7 +25,7 @@ | |
#include "CacheInterface.h" | ||
#include "Resource.h" | ||
#include "registry.h" | ||
#include "..\crashrpt\CrashReport.h" | ||
#include "CrashReport.h" | ||
#include "GitAdminDir.h" | ||
#include "Dbt.h" | ||
#include <initguid.h> | ||
|
@@ -46,7 +46,7 @@ | |
|
||
#pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"") | ||
|
||
CCrashReport crasher("[email protected]", "Crash Report for TGitCache " APP_X64_STRING " : " STRPRODUCTVER, TRUE);// crash | ||
CCrashReportTGit crasher(L"TGitCache " _T(APP_X64_STRING)); | ||
|
||
DWORD WINAPI InstanceThread(LPVOID); | ||
DWORD WINAPI PipeThread(LPVOID); | ||
|
Oops, something went wrong.