You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#ifndef _STREAM_H_
|
|
|
#define _STREAM_H_
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
void stream_open(metafile_t *mf, unsigned long id, char *name);
|
|
|
void stream_close(stream_t *stream);
|
|
|
void stream_free(stream_t *stream);
|
|
|
|
|
|
#endif
|