projects
/
goodguy
/
cinelerra.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Credit Andrew - improve in-tree documentation
[goodguy/cinelerra.git]
/
cinelerra
/
indexstate.inc
1
#ifndef INDEXSTATE_INC
2
#define INDEXSTATE_INC
3
4
// magic number "mkr" version = "1"
5
#define MARKER_MAGIC_VERSION "mkr1"
6
7
class IndexItem;
8
class IndexMark;
9
class IndexChannel;
10
class IndexChannels;
11
class IndexEntry;
12
class IndexEntries;
13
class IndexMarks;
14
class IndexMarkers;
15
class IndexState;
16
17
// Index statuses
18
#define INDEX_READY 0
19
#define INDEX_NOTTESTED 1
20
#define INDEX_BUILDING 2
21
#define INDEX_TOOSMALL 3
22
23
#define MARKERS_NOTTESTED 0
24
#define MARKERS_READY 1
25
26
#endif