X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbemodule_t.h;h=c78bfe78c4f94d2a79ea7bee063ce29516643195;hb=780d1704bdcc2332c68a5161cfaa0f15cee9c352;hp=a0d705888f00da448fedca55dc54732cb2093376;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/bemodule_t.h b/ir/be/bemodule_t.h index a0d705888..c78bfe78c 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. * @@ -17,21 +17,25 @@ * PURPOSE. */ -/* - * Author: Matthias Braun - * Date: 11.12.2006 - * Copyright: (c) Universitaet Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. +/** + * @file + * @brief Backend module interface. + * @author Matthias Braun + * @date 11.12.2006 + * @version $Id$ */ -#ifndef BEMODULE_T_H_ -#define BEMODULE_T_H_ +#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 +#endif /* FIRM_BE_BEMODULE_T_H */