Line | |
---|
1 | // =============================================================== // |
---|
2 | // // |
---|
3 | // File : gb_cb.h // |
---|
4 | // Purpose : gb_callback_list // |
---|
5 | // // |
---|
6 | // Institute of Microbiology (Technical University Munich) // |
---|
7 | // http://www.arb-home.de/ // |
---|
8 | // // |
---|
9 | // =============================================================== // |
---|
10 | |
---|
11 | #ifndef GB_CB_H |
---|
12 | #define GB_CB_H |
---|
13 | |
---|
14 | #ifndef ARBDB_H |
---|
15 | #include <arbdb.h> |
---|
16 | #endif |
---|
17 | |
---|
18 | struct gb_transaction_save; |
---|
19 | |
---|
20 | |
---|
21 | struct gb_callback_list { |
---|
22 | gb_callback_list *next; |
---|
23 | GB_CB func; |
---|
24 | gb_transaction_save *old; |
---|
25 | GB_CB_TYPE type; |
---|
26 | GBDATA *gbd; |
---|
27 | int *clientdata; |
---|
28 | }; |
---|
29 | |
---|
30 | #else |
---|
31 | #error gb_cb.h included twice |
---|
32 | #endif // GB_CB_H |
---|
Note: See
TracBrowser
for help on using the repository browser.