]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/handle.h
Use #ifdef _WIN32 rather than WIN32
[libs/core.git] / source / io / handle.h
index 44b59371e56ef5262f1e0ba0dd621eb73ef0192a..8a9db50b60ec5e85032fa5e1eb0741f9857cbdfe 100644 (file)
@@ -27,6 +27,12 @@ public:
        operator const void *() const;
 };
 
+
+void sys_set_blocking(Handle &, bool);
+unsigned sys_read(Handle &, char *, unsigned);
+unsigned sys_write(Handle &, const char *, unsigned);
+void sys_close(Handle &);
+
 } // namespace IO
 } // namespace Msp