home *** CD-ROM | disk | FTP | other *** search
- ' BINIO interface.
- ' Copyright (c) 1990-1994 Eugene Nelson, Four Lakes Computing.
-
- Global Const BINIO_OPEN_READ = 1
- Global Const BINIO_OPEN_WRITE = 2
- Global Const BINIO_OPEN_CREATE = 3
-
- Declare Function binio_open Lib "BINIO.DLL" (ByVal s$, ByVal m%) As Integer
- Declare Function binio_close Lib "BINIO.DLL" (ByVal handle%) As Integer
- Declare Function binio_read Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
- Declare Function binio_write Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
- Declare Function binio_seek Lib "BINIO.DLL" (ByVal handle%, ByVal ofs&, ByVal where%) As Long
- Declare Function binio_tell Lib "BINIO.DLL" (ByVal handle%) As Long
- Declare Function binio_length Lib "BINIO.DLL" (ByVal handle%) As Long
-
-