mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
23 lines
380 B
C
23 lines
380 B
C
|
/* 7zMemInStream.h -- Memory input stream
|
||
|
** 2012 - Birunthan Mohanathas
|
||
|
**
|
||
|
** This file is public domain.
|
||
|
*/
|
||
|
|
||
|
#ifndef __7Z_MEMINSTREAM_H
|
||
|
#define __7Z_MEMINSTREAM_H
|
||
|
|
||
|
#include "Types.h"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
ILookInStream s;
|
||
|
const Byte *begin;
|
||
|
const Byte *pos;
|
||
|
const Byte *end;
|
||
|
} CMemInStream;
|
||
|
|
||
|
void MemInStream_Init(CMemInStream *p, const void *begin, size_t length);
|
||
|
|
||
|
#endif
|