/****************************************************

These are for use with props, E.G.:

Tbuffer.set( 0, 0, CursorPos, PROP_CURSOR_START ); // index:owner 0:0, pos = 0, type = 0

If your creating new types, try to keep 
'starts' on even numbers 
and
'ends' on odd numbers


*****************************************************/

#define PROP_RESERVED_0             0
#define PROP_RESERVED_1             1

/* Cursor (select region) */
#define PROP_CURSOR_START           2
#define PROP_CURSOR_END             3

/* Bookmark */
#define PROP_BOOKMARK_START         4
#define PROP_BOOKMARK_END           5

/* A screen area (by line start as per random definition) */
#define PROP_SCREEN_START           8
#define PROP_SCREEN_END             9

/* simple (point) whatzit */
#define PROP_UNKNOWN_SINGLE         32

/* spanning whatzit */
#define PROP_UNKNOWN_DOUBLE_START   126
#define PROP_UNKNOWN_DOUBLE_END     127


