rainmeter-studio/Installer/lzma/7zMemInStream.h
Birunthan Mohanathas b7c1e16554 Add initial work for installer C++ rewrite
Release build requires WinDDK to link with the system msvcrt.dll.
2013-03-18 18:55:34 +02:00

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