Implement ECMA-119 burn_source and writer thread handling.
At this time, nglibisofs is able to output an image!! Note that communication between writer and read thread is done via a pipe. That will be replaced by a ring buffer in the near future.
This commit is contained in:
@ -19,8 +19,12 @@
|
||||
#define LIBISO_FILE_IGNORED 0x00030100
|
||||
/** File cannot be writing to image (ignored) */
|
||||
#define LIBISO_FILE_CANT_WRITE 0x00030101
|
||||
/** Read error */
|
||||
#define LIBISO_READ_ERROR 0x00030102
|
||||
/** Write error */
|
||||
#define LIBISO_WRITE_ERROR 0x00030102
|
||||
#define LIBISO_WRITE_ERROR 0x00030103
|
||||
/** Cannot create writer thread */
|
||||
#define LIBISO_THREAD_ERROR 0x00030110
|
||||
|
||||
|
||||
/** Can't read file (ignored) */
|
||||
|
Reference in New Issue
Block a user