DEADSOFTWARE

files: move resource manager to system drivers
[flatwaifu.git] / src / kos32 / streams.h
1 #ifndef D2D_KOS32_STREAMS_H_INCLUDED
2 #define D2D_KOS32_STREAMS_H_INCLUDED
4 #include <common/streams.h>
6 typedef struct KOS32_Stream {
7 Stream base;
8 char name[264];
9 long pos;
10 } KOS32_Stream;
12 void KOS32_Assign (KOS32_Stream *s, const char *name, long pos);
13 int KOS32_Open (KOS32_Stream *s, const char *name);
14 int KOS32_Create (KOS32_Stream *s, const char *name);
15 void KOS32_Close (KOS32_Stream *s);
17 #endif /* D2D_KOS32_STREAMS_H_INCLUDED */