summaryrefslogtreecommitdiff
path: root/epan/except.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-02-18 00:08:03 +0000
committerGerald Combs <gerald@wireshark.org>2011-02-18 00:08:03 +0000
commitd60527b94f5e3cd8e401b79f6046884413426133 (patch)
tree99e6fc25c6777124438e850dff8387a082a07cac /epan/except.h
parente654a29b1c49cb9350db809f5984b8e38ee9d4d7 (diff)
downloadwireshark-d60527b94f5e3cd8e401b79f6046884413426133.tar.gz
Put WS_MSVC_NORETURN back.
svn path=/trunk/; revision=35993
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 *);