]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/backend/windows/windows.factor
Squashed commit of the following:
[factor.git] / basis / io / backend / windows / windows.factor
index 7ecb5765a18869dc94d9c646feeb8940e9e5e691..7f9c42d13ba879bf012399e3f0bb260b23fbcec8 100755 (executable)
@@ -1,34 +1,8 @@
 ! Copyright (C) 2004, 2010 Mackenzie Straight, Doug Coleman.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors alien.c-types classes.struct destructors
-io.backend io.timeouts kernel literals windows.errors
-windows.handles windows.kernel32 vocabs.loader ;
+USING: io.backend namespaces system vocabs.loader ;
 IN: io.backend.windows
 
-HOOK: CreateFile-flags io-backend ( DWORD -- DWORD )
-HOOK: FileArgs-overlapped io-backend ( port -- overlapped/f )
-HOOK: add-completion io-backend ( port -- port )
+"io.files.windows" require
 
-TUPLE: win32-file < win32-handle ptr ;
-
-: <win32-file> ( handle -- win32-file )
-    win32-file new-win32-handle ;
-
-M: win32-file dispose
-    [ cancel-operation ] [ call-next-method ] bi ;
-    
-: opened-file ( handle -- win32-file )
-    check-invalid-handle <win32-file> |dispose add-completion ;
-
-CONSTANT: share-mode
-    flags{
-        FILE_SHARE_READ
-        FILE_SHARE_WRITE
-        FILE_SHARE_DELETE
-    }
-    
-: default-security-attributes ( -- obj )
-    SECURITY_ATTRIBUTES <struct>
-    SECURITY_ATTRIBUTES heap-size >>nLength ;
-
-"io.files.windows" require
\ No newline at end of file
+winnt set-io-backend