2018-05-10 08:12:47 +00:00
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FCODER_SEEK_H)
|
|
|
|
#define FCODER_SEEK_H
|
|
|
|
|
2019-02-26 23:17:53 +00:00
|
|
|
typedef u32 Buffer_Seek_String_Flags;
|
2018-05-10 08:12:47 +00:00
|
|
|
enum{
|
|
|
|
BufferSeekString_Backward = 1,
|
|
|
|
BufferSeekString_CaseInsensitive = 2,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum{
|
|
|
|
DirLeft = 0,
|
|
|
|
DirRight = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|
|
|
|
|
|
|
|
|