gmio/tests/stream_buffer.h
2014-03-28 16:33:35 +01:00

16 lines
282 B
C

#ifndef GMIO_STREAM_BUFFER_H
#define GMIO_STREAM_BUFFER_H
#include "../src/gmio_core/stream.h"
typedef struct
{
void* ptr;
size_t len;
size_t pos;
} gmio_buffer_t;
void gmio_stream_set_buffer(gmio_stream_t* stream, gmio_buffer_t* buff);
#endif /* GMIO_STREAM_BUFFER_H */