split graph state into properties and constraints
[libfirm] / ir / be / bemodule_t.h
index a264215..c88809e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * @brief       Backend module interface.
  * @author      Matthias Braun
  * @date        11.12.2006
- * @version     $Id$
  */
 #ifndef FIRM_BE_BEMODULE_T_H
 #define FIRM_BE_BEMODULE_T_H
 
 #include "bemodule.h"
 
+/**
+ * A module list entry.
+ */
 struct be_module_list_entry_t {
-       const char *name;
-       void *data;
-       struct be_module_list_entry_t *next;
+       const char *name;                    /**< The name of the entry. */
+       void *data;                          /**< Some data associated with this entry. */
+       struct be_module_list_entry_t *next; /**< Points to the next entry. */
 };
 
 #endif /* FIRM_BE_BEMODULE_T_H */