diff options
Diffstat (limited to 'plugins/Clist_modern')
-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
|