summaryrefslogtreecommitdiff
path: root/utils/container.h
blob: 5a82ace2b9bbb5f04a5e04b883a669f3b992d63a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * 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__ */