aboutsummaryrefslogtreecommitdiff
path: root/util/cbfstool/lzma/C/Common/NewHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/cbfstool/lzma/C/Common/NewHandler.h')
-rw-r--r--util/cbfstool/lzma/C/Common/NewHandler.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/util/cbfstool/lzma/C/Common/NewHandler.h b/util/cbfstool/lzma/C/Common/NewHandler.h
new file mode 100644
index 0000000000..0619fc69e5
--- /dev/null
+++ b/util/cbfstool/lzma/C/Common/NewHandler.h
@@ -0,0 +1,16 @@
+// Common/NewHandler.h
+
+#ifndef __COMMON_NEWHANDLER_H
+#define __COMMON_NEWHANDLER_H
+
+class CNewException {};
+
+#ifdef _WIN32
+void
+#ifdef _MSC_VER
+__cdecl
+#endif
+operator delete(void *p) throw();
+#endif
+
+#endif