16 lines
230 B
C
16 lines
230 B
C
|
|
#ifndef STRUCT_ISTREAM_INHERITANCE
|
|
#define STRUCT_ISTREAM_INHERITANCE
|
|
|
|
struct wcistream;
|
|
|
|
struct wcistream_inheritance
|
|
{
|
|
void (*read)(
|
|
struct wcistream*);
|
|
|
|
void (*free)(
|
|
struct wcistream*);
|
|
};
|
|
|
|
#endif
|