mars/mars_usebuf.h

27 lines
446 B
C
Raw Normal View History

2010-07-30 05:46:22 +00:00
// (c) 2010 Thomas Schoebel-Theuer / 1&1 Internet AG
#ifndef MARS_USEBUF_H
#define MARS_USEBUF_H
2010-08-05 15:54:48 +00:00
struct usebuf_mars_ref_aspect {
GENERIC_ASPECT(mars_ref);
2010-11-26 13:45:10 +00:00
struct mars_ref_object *sub_mref;
2010-08-08 14:02:54 +00:00
struct generic_callback cb;
2010-07-30 05:46:22 +00:00
};
struct usebuf_brick {
MARS_BRICK(usebuf);
};
struct usebuf_input {
MARS_INPUT(usebuf);
};
struct usebuf_output {
MARS_OUTPUT(usebuf);
2010-11-26 13:45:10 +00:00
struct generic_object_layout mref_object_layout;
2010-07-30 05:46:22 +00:00
};
MARS_TYPES(usebuf);
#endif