Sha256: 9874c1c9077221f89917f4690fb43c87aa7131c368b9588bdc2276f554f30234

Contents?: true

Size: 674 Bytes

Versions: 5

Compression:

Stored size: 674 Bytes

Contents

module Fox
  # File Store Definition
  class FXFileStream < FXStream
    #
    # Return an initialized FXFileStream instance.
    #
    def initialize(cont=nil) # :yields: theFileStream
    end
  
    #
    # Open binary data file stream; allocate a buffer of the given _size_
    # for the file I/O; the buffer must be at least 16 bytes. Returns
    # +true+ on success, +false+ on failure.
    #
    # ==== Parameters:
    #
    # +filename+::	name of the file to open [String]
    # +save_or_load+::	access mode, either +FXStreamSave+ or +FXStreamLoad+ [Integer]
    # +size+::		buffer size [Integer]
    #
    def open(filename, save_or_load, size=8192); end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fxruby-1.2.2 rdoc-sources/FXFileStream.rb
fxruby-1.2.3 rdoc-sources/FXFileStream.rb
fxruby-1.2.4 rdoc-sources/FXFileStream.rb
fxruby-1.2.5 rdoc-sources/FXFileStream.rb
fxruby-1.2.6 rdoc-sources/FXFileStream.rb