libisofs/src/image_writer.h

36 lines
602 B
C

/*
* Copyright (c) 2007 Vreixo Formoso
*
* This file is part of the libisofs project; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation. See COPYING file for details.
*/
#ifndef LIBISO_IMAGE_WRITER_H_
#define LIBISO_IMAGE_WRITER_H_
struct Iso_Writer_State
{
};
struct Iso_Image_Writer
{
//init()
//compute_dir_structure()
//write_vol_desc
//
//free
void *data;
Ecma119Image *image;
};
#endif /*LIBISO_IMAGE_WRITER_H_*/