logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

VistaIOWriteObjects - write a series of objects to a stream

Arguments

file      Specifies the open stream to which the objects should be written.

       repn      Specifies the kind of objects to be written.

       attributes
                 Specifies a list of attributes to be written to the stream.

       nobjects  Specifies the number of objects to be written.

       objects   Specifies the objects to be written.

Author

       Art Pope <pope@cs.ubc.ca>

       Adaption to vistaio: Gert Wollny <gw.fossdev@gmail.com>

VistaIO Version 1.2.14                            24 April 1993                           VistaIOWriteObjects(3)

Description

VistaIOWriteObjects  writes  a series of objects to an open stream as a Vista data file. The objects must
       be of the type specified by repn.  Objects objects[0] through objects[nimages - 1] are written,  followed
       by any attributes in the list attributes.  The attributes argument may be NULL if only the objects are to
       be written.

Name

       VistaIOWriteObjects - write a series of objects to a stream

Return Values

VistaIOWriteObjects returns TRUE if successful and FALSE otherwise. In the case of an error, data written
       to the stream may be incomplete.

See Also

VistaIOOpenOutputFile(3), VistaIOWriteEdges(3), VistaIOWriteFile(3), VistaIOWriteImages(3), stdio(3)

Synopsis

#include<stdio>#include<vistaio.h>VistaIOBooleanVistaIOWriteObjects(file,repn,attributes,nobjects,objects)FILE*file;VistaIORepnKindrepn;VistaIOAttrListattributes;intnobjects;VistaIOPointerobjects[nobjects];

See Also