aboutsummaryrefslogtreecommitdiffstats
path: root/epan/except.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2011-02-17 23:35:46 +0000
committerGerald Combs <gerald@wireshark.org>2011-02-17 23:35:46 +0000
commit301a4ac9de4d00a65fb7e3f848782782b5fe69ec (patch)
treebe0b3d0e7be658360334fdd28e1ecb2360ae5037 /epan/except.h
parent33819c43c80d5f2f9a2da5190c3511866171a0d2 (diff)
Fix compilation on Windows.
svn path=/trunk/; revision=35991
Diffstat (limited to 'epan/except.h')
-rw-r--r--epan/except.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/except.h b/epan/except.h
index 16ee729a1d..a0b0d7655f 100644
--- a/epan/except.h
+++ b/epan/except.h
@@ -18,7 +18,7 @@
* $Name: $
*/
-/**
+/**
* @file
* Portable Exception Handling for ANSI C.<BR>
* Modified to support throwing an exception with a null message pointer,
@@ -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 WS_MSVC_NORETURN except_rethrow(except_t *) G_GNUC_NORETURN;
-extern void WS_MSVC_NORETURN except_throw(long, long, const char *) G_GNUC_NORETURN;
-extern void WS_MSVC_NORETURN except_throwd(long, long, const char *, void *) G_GNUC_NORETURN;
-extern void WS_MSVC_NORETURN except_throwf(long, long, const char *, ...) G_GNUC_NORETURN;
+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 void (*except_unhandled_catcher(void (*)(except_t *)))(except_t *);
extern unsigned long except_code(except_t *);
extern unsigned long except_group(except_t *);