aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/ComTry.h
diff options
context:
space:
mode:
authorrepo sync <gcondra@google.com>2013-07-26 17:53:31 -0700
committerrepo sync <gcondra@google.com>2013-07-29 11:00:59 -0700
commitbaa3858d3f5d128a5c8466b700098109edcad5f2 (patch)
tree2860fc3eaf476caa6296788b828f296a5ee37486 /CPP/Common/ComTry.h
parentdd8f4f771627dacc36cd45f18c2b54f939471065 (diff)
downloadlzma-baa3858d3f5d128a5c8466b700098109edcad5f2.tar.gz
The only change from stock lzma sdk is the removal of two .exe files, which we don't need. Change-Id: I46287cbc416161e93b449761ebe531acd758cf95
Diffstat (limited to 'CPP/Common/ComTry.h')
-rwxr-xr-xCPP/Common/ComTry.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/CPP/Common/ComTry.h b/CPP/Common/ComTry.h
new file mode 100755
index 0000000..b2b3029
--- /dev/null
+++ b/CPP/Common/ComTry.h
@@ -0,0 +1,17 @@
+// ComTry.h
+
+#ifndef __COM_TRY_H
+#define __COM_TRY_H
+
+#include "MyWindows.h"
+// #include "Exception.h"
+// #include "NewHandler.h"
+
+#define COM_TRY_BEGIN try {
+#define COM_TRY_END } catch(...) { return E_OUTOFMEMORY; }
+
+ // catch(const CNewException &) { return E_OUTOFMEMORY; }
+ // catch(const CSystemException &e) { return e.ErrorCode; }
+ // catch(...) { return E_FAIL; }
+
+#endif