winprefs v0.3.2
A registry exporter for programmers.
Loading...
Searching...
No Matches
io_writer.h
1#ifndef IO_WRITER_H
2#define IO_WRITER_H
3
4typedef struct {
5 bool (*setup)(void *instance, bool writing_to_stdout, wchar_t *full_output_path);
6 void (*teardown)(void *instance);
7 bool (*write_output)(void *instance,
8 const char *mb_out,
9 size_t total_size,
10 long unsigned int *written);
11 void *user_args;
12} writer_t;
13
14#endif // IO_WRITER_H