diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 13:02:21 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-05-22 13:02:21 +0000 |
commit | bd5d777d5d7de22817b7bd868e3b3281d6fdcb49 (patch) | |
tree | 530bf7565831a482791c00ad7f2af2cd0386146d | |
parent | 2136c7efff71099e8ad1fc2196cd973f2316bc03 (diff) |
not used function removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@13756 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Clist_modern/src/hdr/modern_commonheaders.h | 1 | ||||
-rw-r--r-- | plugins/Clist_modern/src/modern_utils.cpp | 13 |
2 files changed, 0 insertions, 14 deletions
diff --git a/plugins/Clist_modern/src/hdr/modern_commonheaders.h b/plugins/Clist_modern/src/hdr/modern_commonheaders.h index 8e8f4f36b9..81ec07edc3 100644 --- a/plugins/Clist_modern/src/hdr/modern_commonheaders.h +++ b/plugins/Clist_modern/src/hdr/modern_commonheaders.h @@ -138,7 +138,6 @@ extern TCHAR SkinsFolder[MAX_PATH]; #define SCF_BOTTOM 6
char* __cdecl strstri(char *a, const char *b);
-DWORD exceptFunction(LPEXCEPTION_POINTERS EP);
// Register of plugin's user
//
diff --git a/plugins/Clist_modern/src/modern_utils.cpp b/plugins/Clist_modern/src/modern_utils.cpp index b4116451e7..b68088679c 100644 --- a/plugins/Clist_modern/src/modern_utils.cpp +++ b/plugins/Clist_modern/src/modern_utils.cpp @@ -35,19 +35,6 @@ char * strdupn(const char * src, int len) return p;
}
-DWORD exceptFunction(LPEXCEPTION_POINTERS EP)
-{
- char buf[4096];
- mir_snprintf(buf, SIZEOF(buf), "\r\nExceptCode: %x\r\nExceptFlags: %x\r\nExceptAddress: %p\r\n",
- EP->ExceptionRecord->ExceptionCode,
- EP->ExceptionRecord->ExceptionFlags,
- EP->ExceptionRecord->ExceptionAddress);
-
- TRACE(buf);
- MessageBoxA(0, buf, "clist_mw Exception", 0);
- return EXCEPTION_EXECUTE_HANDLER;
-}
-
#ifdef _DEBUG
#undef DeleteObject
#endif
|