summaryrefslogtreecommitdiff
path: root/source/utilities/Error.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/utilities/Error.h')
-rwxr-xr-xsource/utilities/Error.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/utilities/Error.h b/source/utilities/Error.h
new file mode 100755
index 0000000..0693287
--- /dev/null
+++ b/source/utilities/Error.h
@@ -0,0 +1,25 @@
+/*******************************************************************************
+ * Copyright (C) ST-Ericsson SA 2011
+ * License terms: 3-clause BSD license
+ ******************************************************************************/
+#ifndef _ERROR_H_
+#define _ERROR_H_
+
+#define VERIFY(Condition, ErrorCode)\
+ do\
+ {\
+ if(!(Condition))\
+ {\
+ ReturnValue = (ErrorCode);\
+ goto ErrorExit;\
+ }\
+ } while(0)
+
+#define VERIFY_SUCCESS(ErrorCode)\
+ do\
+ {\
+ ReturnValue = (ErrorCode);\
+ VERIFY(E_SUCCESS == ReturnValue, ReturnValue);\
+ } while (0)
+
+#endif // _ERROR_H_