Removed annoying documentation page for internal struct.
authorJustin Seyster <jseyster@cs.sunysb.edu>
Tue, 21 Sep 2010 02:09:26 +0000 (22:09 -0400)
committerJustin Seyster <jseyster@cs.sunysb.edu>
Tue, 21 Sep 2010 02:09:26 +0000 (22:09 -0400)
src/aop-header.c

index 9e31260e6aca77b027225dfd52912875dab37766..02a0f96f5ae4a7d47bddd7d2392d3394e72181cd 100644 (file)
@@ -72,6 +72,10 @@ static const char *header_typedefs =
   "typedef void *ALL_POINTER_T;\n\n"
   "/* BEGIN PROTOTYPES */\n";
 
+/**
+ * \cond HIDDEN_SYMBOLS
+ */
+
 /* An aop_prototype struct represents the prototype of an advice
    function, including its name, return type and parameters. */
 struct aop_prototype {
@@ -89,6 +93,9 @@ struct aop_prototype {
   int num_params;
   const struct aop_type *param_types[];
 };
+/**
+ * \endcond
+ */
 
 /* This table matches function name to function prototype.  Where
    there are multiple prototypes with the same name (an error case),