mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
429 B
C
14 lines
429 B
C
// StreamUtils.h
|
|
|
|
#ifndef __STREAMUTILS_H
|
|
#define __STREAMUTILS_H
|
|
|
|
#include "../IStream.h"
|
|
|
|
HRESULT ReadStream(ISequentialInStream *stream, void *data, size_t *size);
|
|
HRESULT ReadStream_FALSE(ISequentialInStream *stream, void *data, size_t size);
|
|
HRESULT ReadStream_FAIL(ISequentialInStream *stream, void *data, size_t size);
|
|
HRESULT WriteStream(ISequentialOutStream *stream, const void *data, size_t size);
|
|
|
|
#endif
|