misc/libphysfs/lzma/C/IStream.h
author nemo
Fri, 06 Apr 2018 12:34:23 -0400
changeset 13316 574d34577ee9
parent 12218 bb5522e88ab2
permissions -rw-r--r--
quick game wasn't checking for hidden themes. It should, but this will at least make them not-crash. The results are kind of amusing.

/* IStream.h */

#ifndef __C_ISTREAM_H
#define __C_ISTREAM_H

#include "Types.h"

typedef struct _ISeqInStream
{
  HRes (*Read)(void *object, void *data, UInt32 size, UInt32 *processedSize);
} ISeqInStream;

typedef struct _ISzAlloc
{
  void *(*Alloc)(size_t size);
  void (*Free)(void *address); /* address can be 0 */
} ISzAlloc;

#endif