repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grub2: bring back build of aros-side grub2 tools
[AROS.git]
/
workbench
/
c
/
Unpack
/
bzip2_private.h
blob
348a7536179990170c1ac469f5e912e16f8c543a
1
#ifndef PKG_BZIP2_PRIVATE_H
2
#define PKG_BZIP2_PRIVATE_H
3
4
/*
5
Copyright © 2003, The AROS Development Team. All rights reserved.
6
$Id$
7
*/
8
9
#include <exec/types.h>
10
#include <dos/bptr.h>
11
12
#include <bzlib.h>
13
14
struct
bzFile
15
{
16
BPTR bzf_File
;
17
bz_stream bzf_Stream
;
18
APTR bzf_Buffer
;
19
LONG bzf_BufferAmount
;
20
};
21
22
#endif
/* PKG_BZIP2_PRIVATE_H */