aboutsummaryrefslogtreecommitdiffstats
path: root/epan/except.h
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-18 00:08:03 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-02-18 00:08:03 +0000
commit30d1c94979a67c089f8469f51950e82d02ea1582 (patch)
tree99e6fc25c6777124438e850dff8387a082a07cac /epan/except.h
parent24819a1b051e4635e20c29ce001cd1e4e063d64f (diff)
Put WS_MSVC_NORETURN back.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35993 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/except.h')
-rw-r--r--epan/except.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/except.h b/epan/except.h
index a0b0d7655f..407be9d83c 100644
--- a/epan/except.h
+++ b/epan/except.h
@@ -93,10 +93,10 @@ extern struct except_stacknode *except_pop(void);
/* public interface functions */
extern int except_init(void);
extern void except_deinit(void);
-extern void except_rethrow(except_t *) G_GNUC_NORETURN;
-extern void except_throw(long, long, const char *) G_GNUC_NORETURN;
-extern void except_throwd(long, long, const char *, void *) G_GNUC_NORETURN;
-extern void except_throwf(long, long, const char *, ...) G_GNUC_NORETURN;
+extern WS_MSVC_NORETURN void except_rethrow(except_t *) G_GNUC_NORETURN;
+extern WS_MSVC_NORETURN void except_throw(long, long, const char *) G_GNUC_NORETURN;
+extern WS_MSVC_NORETURN void except_throwd(long, long, const char *, void *) G_GNUC_NORETURN;
+extern WS_MSVC_NORETURN void except_throwf(long, long, const char *, ...) G_GNUC_NORETURN;
extern void (*except_unhandled_catcher(void (*)(except_t *)))(except_t *);
extern unsigned long except_code(except_t *);
extern unsigned long except_group(except_t *);