OSDN Git Service

Change a directory tree
[peercast-im/PeerCastIM.git] / c: / Git / PeerCast.root / PeerCast / core / win32 / seh.h
diff --git a/c:/Git/PeerCast.root/PeerCast/core/win32/seh.h b/c:/Git/PeerCast.root/PeerCast/core/win32/seh.h
deleted file mode 100644 (file)
index cb99a6a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef _SEH_H_
-#define _SEH_H_
-
-#include "stream.h"
-#include <dbghelp.h>
-
-#pragma once
-#pragma comment(lib, "dbghelp.lib")
-
-extern FileStream fs;
-
-#ifndef _DEBUG
-#define SEH_THREAD(func, name) \
-{ \
-       __try \
-       { \
-               return func(thread); \
-       } __except(SEHdump(GetExceptionInformation()), EXCEPTION_EXECUTE_HANDLER) \
-       { \
-       } \
-}
-
-#else
-
-#define SEH_THREAD(func, name) return func(thread);
-#endif
-
-void SEHdump(_EXCEPTION_POINTERS *);
-
-#endif