Implementation of the write function to use by the Writers.

This commit is contained in:
Vreixo Formoso
2007-12-18 00:37:24 +01:00
parent 257b08bfcf
commit 36894d6a23
4 changed files with 31 additions and 1 deletions

View File

@ -71,6 +71,10 @@ struct ecma119_image {
/* tree of files sources */
void *file_srcs;
int file_count;
/* file descriptors for read and writing image */
int wrfd; /* write to here */
int rdfd; /* read from here */
};
#endif /*LIBISO_ECMA119_H_*/