xflminterface IF_OStream : public XF_RefCount


This class represents an output stream object. It extends XF_RefCount.


Method Summary

RCODE  

 write - Method that is called to write data to the output stream.

RCODE  

 close - Close the output stream.

 

Method Detail

write

    RCODE write(

        void *             pvBuffer,
        FLMUINT     uiBytesToWrite,
        FLMUINT *  puiBytesWritten = NULL);

This is called to write data to the output stream.

    Parameters In:

void * pvBuffer The buffer containing data to be written out.
FLMUINT uiBytesToWrite The number of bytes of data to be written out.

    Parameters Out:

FLMUINT * puiBytesWritten The number of bytes that were actually written out to the stream.

[Back to Top]


close

    RCODE close( void);

Close the output stream.

    Parameters In: none

    Parameters Out: none

[Back to Top]