aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/io/writer.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/io/writer.v')
-rw-r--r--v_windows/v/vlib/io/writer.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/v_windows/v/vlib/io/writer.v b/v_windows/v/vlib/io/writer.v
new file mode 100644
index 0000000..322dd45
--- /dev/null
+++ b/v_windows/v/vlib/io/writer.v
@@ -0,0 +1,12 @@
+module io
+
+// Writer represents a stream of data that can be wrote to
+pub interface Writer {
+ write(buf []byte) ?int
+}
+
+// RandomWriter represents a stream of data that can be wrote to
+// at a random pos
+pub interface RandomWriter {
+ write_to(pos u64, buf []byte) ?int
+}