]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/seek.h
Move files to prepare for assimilation into core
[libs/core.git] / source / io / seek.h
diff --git a/source/io/seek.h b/source/io/seek.h
new file mode 100644 (file)
index 0000000..3c6c331
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef MSP_IO_SEEK_H_
+#define MSP_IO_SEEK_H_
+
+namespace Msp {
+namespace IO {
+
+enum SeekType
+{
+       S_BEG,
+       S_CUR,
+       S_END
+};
+
+extern int sys_seek_type(SeekType);
+
+} // namespace IO
+} // namespace Msp
+
+#endif