X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbemodule_t.h;h=c88809e927b08d9d17cd7ecee0d41f9145c1bbed;hb=b2008e0b7c77ead1540a4793d235fafb6fcff873;hp=a264215ef500e04d25dd2af2d0aced6a8ba02789;hpb=39f3a8dbd0f00f90b7b12a849d1bf7b9c1329479;p=libfirm diff --git a/ir/be/bemodule_t.h b/ir/be/bemodule_t.h index a264215ef..c88809e92 100644 --- a/ir/be/bemodule_t.h +++ b/ir/be/bemodule_t.h @@ -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. * @@ -22,17 +22,19 @@ * @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 */