1
0
mirror of https://github.com/chibicitiberiu/rainmeter-studio.git synced 2024-02-24 04:33:31 +00:00

27 lines
436 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"
EXTERN_C_BEGIN
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);
EXTERN_C_END
#endif