24 lines
256 B
C
24 lines
256 B
C
|
|
||
|
// TOP
|
||
|
|
||
|
#if !defined(FCODER_SEEK_H)
|
||
|
#define FCODER_SEEK_H
|
||
|
|
||
|
typedef uint32_t Buffer_Seek_String_Flags;
|
||
|
enum{
|
||
|
BufferSeekString_Backward = 1,
|
||
|
BufferSeekString_CaseInsensitive = 2,
|
||
|
};
|
||
|
|
||
|
enum{
|
||
|
DirLeft = 0,
|
||
|
DirRight = 1,
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|
||
|
|
||
|
|