aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-08-28 19:27:19 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-08-28 19:27:19 +0000
commita96e6b2047cce1c671f476ae26c81ee8afb7ca12 (patch)
tree2056442e125bbf13f50e1d84c913ca2a8cd783c1 /epan/wslua/wslua.h
parentf17c5ac01f9198a033f6c1cb97ee54676121453e (diff)
Doxygen changes.
svn path=/trunk/; revision=33981
Diffstat (limited to 'epan/wslua/wslua.h')
-rw-r--r--epan/wslua/wslua.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/epan/wslua/wslua.h b/epan/wslua/wslua.h
index 629869b955..86004656b0 100644
--- a/epan/wslua/wslua.h
+++ b/epan/wslua/wslua.h
@@ -58,6 +58,10 @@
#include "declare_wslua.h"
+/** @file
+ * @ingroup wslua_group
+ */
+
#define WSLUA_INIT_ROUTINES "init_routines"
#define LOG_DOMAIN_LUA "wslua"
@@ -94,7 +98,7 @@ typedef struct _wslua_field_t {
guint32 mask;
} wslua_field_t;
-/*
+/**
* PREF_OBSOLETE is used for preferences that a module used to support
* but no longer supports; we give different error messages for them.
*/
@@ -122,15 +126,15 @@ typedef struct _wslua_pref_t {
void* p;
} value;
union {
- guint32 max_value; /* maximum value of a range */
+ guint32 max_value; /**< maximum value of a range */
struct {
- const enum_val_t *enumvals; /* list of name & values */
- gboolean radio_buttons; /* TRUE if it should be shown as
+ const enum_val_t *enumvals; /**< list of name & values */
+ gboolean radio_buttons; /**< TRUE if it should be shown as
radio buttons rather than as an
option menu or combo box in
the preferences tab */
- } enum_info; /* for PREF_ENUM */
- } info; /* display/text file information */
+ } enum_info; /**< for PREF_ENUM */
+ } info; /**< display/text file information */
struct _wslua_pref_t* next;
struct _wslua_proto_t* proto;