Wrap in "extern "C"" for the benefit of C++ code including it.

svn path=/trunk/; revision=51332
This commit is contained in:
Guy Harris 2013-08-13 07:58:06 +00:00
parent 1e9644c204
commit 890093e0e4
1 changed files with 10 additions and 1 deletions

View File

@ -26,6 +26,11 @@
#define __ETYPES_H__
#include "ws_symbol_export.h"
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#include <epan/value_string.h>
/*
@ -545,4 +550,8 @@
WS_DLL_PUBLIC const value_string etype_vals[];
#endif /* etypes.h */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __ETYPES_H__ */