diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-11-17 09:16:57 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-11-17 09:16:57 +0100 |
commit | 3d93df54d024f49895db6277e873dccd10b5baec (patch) | |
tree | c664797c69e4b4680d04aee7669da03e452e0c5d /src/ufo-roof-read.h | |
download | ufo-roof-3d93df54d024f49895db6277e873dccd10b5baec.tar.gz ufo-roof-3d93df54d024f49895db6277e873dccd10b5baec.tar.bz2 ufo-roof-3d93df54d024f49895db6277e873dccd10b5baec.tar.xz ufo-roof-3d93df54d024f49895db6277e873dccd10b5baec.zip |
The first test (file file-base simmulation)
Diffstat (limited to 'src/ufo-roof-read.h')
-rw-r--r-- | src/ufo-roof-read.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ufo-roof-read.h b/src/ufo-roof-read.h new file mode 100644 index 0000000..50dbdf3 --- /dev/null +++ b/src/ufo-roof-read.h @@ -0,0 +1,17 @@ +#ifndef __UFO_ROOF_READ_H +#define __UFO_ROOF_READ_H + +#include "ufo-roof-config.h" + +typedef struct _UfoRoofReadInterface UfoRoofReadInterface; + +typedef guint (*UfoRoofReaderRead)(UfoRoofReadInterface *reader, void *buf, GError **error); +typedef void (*UfoRoofReaderClose)(UfoRoofReadInterface *reader); + +struct _UfoRoofReadInterface { + UfoRoofReaderRead read; + UfoRoofReaderClose close; +}; + + +#endif /* __UFO_ROOF_READ_H */ |