bemodule: Remove (hopefully really last) remnants of the STA backend.
[libfirm] / ir / be / bemodule_t.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief       Backend module interface.
9  * @author      Matthias Braun
10  * @date        11.12.2006
11  */
12 #ifndef FIRM_BE_BEMODULE_T_H
13 #define FIRM_BE_BEMODULE_T_H
14
15 #include "bemodule.h"
16
17 /**
18  * A module list entry.
19  */
20 struct be_module_list_entry_t {
21         const char *name;                    /**< The name of the entry. */
22         void *data;                          /**< Some data associated with this entry. */
23         struct be_module_list_entry_t *next; /**< Points to the next entry. */
24 };
25
26 #endif /* FIRM_BE_BEMODULE_T_H */