]> git.tdb.fi Git - libs/core.git/blob - source/seek.h
Move class members and comments around
[libs/core.git] / source / seek.h
1 #ifndef MSP_IO_SEEK_H_
2 #define MSP_IO_SEEK_H_
3
4 namespace Msp {
5 namespace IO {
6
7 enum SeekType
8 {
9         S_BEG,
10         S_CUR,
11         S_END
12 };
13
14 extern int sys_seek_type(SeekType);
15
16 } // namespace IO
17 } // namespace Msp
18
19 #endif