zlib Reference Manual

Synopsis

public class GZFileStream {
    public    static GZFileStream       open                      ( string              path,
                                                                    string              mode ) ;
    public    static GZFileStream       dopen                     ( int                 fd,
                                                                    string              mode ) ;
    public    int                       setparams                 ( int                 level,
                                                                    int                 strategy ) ;
    public    int                       read                      ( char[]              buf ) ;
    public    int                       write                     ( char[]              buf ) ;
    public    int                       printf                    ( string              format,
                                                                    ... ) ;
    public    int                       puts                      ( string              s ) ;
    public    weak string               gets                      ( char[]              buf ) ;
    public    int                       flush                     ( int                 flush ) ;
    public    int                       rewind                    (  ) ;
    public    bool                      eof                       (  ) ;
    public    bool                      direct                    (  ) ;
}

GZFileStream Description

Details

Constructor Details

Field Details

Signal Details

Property Details

Method Details

open ()
    public    static GZFileStream       open                      ( string              path,
                                                                    string              mode ) ;		

dopen ()
    public    static GZFileStream       dopen                     ( int                 fd,
                                                                    string              mode ) ;		

setparams ()
    public    int                       setparams                 ( int                 level,
                                                                    int                 strategy ) ;		

read ()
    public    int                       read                      ( char[]              buf ) ;		

write ()
    public    int                       write                     ( char[]              buf ) ;		

printf ()
    public    int                       printf                    ( string              format,
                                                                    ... ) ;		

puts ()
    public    int                       puts                      ( string              s ) ;		

gets ()
    public    weak string               gets                      ( char[]              buf ) ;		

flush ()
    public    int                       flush                     ( int                 flush ) ;		

rewind ()
    public    int                       rewind                    (  ) ;		

eof ()
    public    bool                      eof                       (  ) ;		

direct ()
    public    bool                      direct                    (  ) ;		


Created by Valadoc