]> git.tdb.fi Git - libs/core.git/blob - source/seek.h
Rename error.h to except.h
[libs/core.git] / source / seek.h
1 /* $Id$
2
3 This file is part of libmspio
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7 #ifndef MSP_IO_SEEK_H_
8 #define MSP_IO_SEEK_H_
9
10 namespace Msp {
11 namespace IO {
12
13 enum SeekType
14 {
15         S_BEG,
16         S_CUR,
17         S_END
18 };
19
20 extern int sys_seek_type(SeekType);
21
22 } // namespace IO
23 } // namespace Msp
24
25 #endif