Changes to update Tomato RAF.
[tomato.git] / release / src / lzma / C / IStream.h
blob1472c3e755e02b10da9e18ca28134a5f1508ce9f
1 /* IStream.h */
3 #ifndef __C_ISTREAM_H
4 #define __C_ISTREAM_H
6 #include "Types.h"
8 typedef struct _ISeqInStream
10 HRes (*Read)(void *object, void *data, UInt32 size, UInt32 *processedSize);
11 } ISeqInStream;
13 typedef struct _ISzAlloc
15 void *(*Alloc)(size_t size);
16 void (*Free)(void *address); /* address can be 0 */
17 } ISzAlloc;
19 #endif