~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to impress/zip.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-01-10 19:35:11 UTC
  • mto: (1.3.1 experimental) (52.1.1 hardy-proposed)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20070110193511-yjrnndv8e8wv03yy
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* imposter (OO.org Impress viewer)
2
 
** Copyright (C) 2003-2005 Gurer Ozen
3
 
** This code is free software; you can redistribute it and/or
4
 
** modify it under the terms of GNU General Public License.
5
 
*/
6
 
 
7
 
struct zip_struct;
8
 
typedef struct zip_struct zip;
9
 
 
10
 
char *zip_error (int err);
11
 
 
12
 
zip *zip_open (const char *fname, int *err);
13
 
void zip_close (zip *z);
14
 
 
15
 
iks *zip_load_xml (zip *z, const char *name, int *err);
16
 
 
17
 
unsigned long zip_get_size (zip *z, const char *name);
18
 
int zip_load (zip *z, const char *name, char *buf);