20 lines
300 B
C
20 lines
300 B
C
|
|
#ifndef STRUCT_WCOSTREAM_INHERITANCE
|
|
#define STRUCT_WCOSTREAM_INHERITANCE
|
|
|
|
#include <wchar.h>
|
|
|
|
struct wcostream;
|
|
|
|
struct wcostream_inheritance
|
|
{
|
|
void (*write)(
|
|
struct wcostream*,
|
|
const wchar_t*,
|
|
size_t);
|
|
|
|
void (*free)(
|
|
struct wcostream* this);
|
|
};
|
|
|
|
#endif
|