mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 15:29:45 +03:00
ba23e4b693
svn path=/trunk/netsurf/; revision=3073
40 lines
1.2 KiB
C
40 lines
1.2 KiB
C
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2006 Rob Kendrick <rjek@rjek.com>
|
|
*/
|
|
|
|
/** \file
|
|
* Container format handling for themes etc. */
|
|
|
|
#ifndef __CONTAINER_H__
|
|
#define __CONTAINER_H__
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct container_ctx;
|
|
|
|
/* reading interface */
|
|
struct container_ctx *container_open(const char *filename);
|
|
const unsigned char *container_get(struct container_ctx *ctx,
|
|
const unsigned char *entryname,
|
|
u_int32_t *size);
|
|
const unsigned char *container_get_name(struct container_ctx *ctx);
|
|
const unsigned char *container_get_author(struct container_ctx *ctx);
|
|
const unsigned char *container_iterate(struct container_ctx *ctx,
|
|
int *state);
|
|
|
|
/* creating interface */
|
|
struct container_ctx *container_create(const char *filename,
|
|
const unsigned char *name,
|
|
const unsigned char *author);
|
|
void container_add(struct container_ctx *ctx, const unsigned char *entryname,
|
|
const unsigned char *data,
|
|
const u_int32_t datalen);
|
|
|
|
/* common interface */
|
|
void container_close(struct container_ctx *ctx);
|
|
|
|
#endif /* __CONTAINER_H__ */
|