#include <libcomprex/archive.h>
Go to the source code of this file.
Functions | |
CxArchive * | cxOpenArchive (const char *path) |
Opens an archive for reading or writing. | |
CxArchive * | cxOpenArchiveStream (FILE *fp) |
Opens an archive from an existing file stream for reading or writing. | |
CxArchive * | cxOpenArchiveBuffer (char *buffer, size_t size) |
Opens an archive from a buffer for reading or writing. | |
void | cxCloseArchive (CxArchive *archive) |
Closes an archive. | |
CxStatus | cxSaveArchive (CxArchive *archive, const char *filename) |
Saves an archive. |
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
Closes an archive. If changes were made to this archive, they will not be saved. To save them, use cxSaveArchive().
|
|
Opens an archive for reading or writing.
|
|
Opens an archive from a buffer for reading or writing.
|
|
Opens an archive from an existing file stream for reading or writing.
|
|
Saves an archive. This will not close the archive. To close the archive, use cxCloseArchive().
|