summaryrefslogtreecommitdiff
path: root/epan/except.h
diff options
context:
space:
mode:
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 *);