//SetDef.h typedef enum fileReturnCode { error = -1, blocked, filed }; typedef enum removeReturnCode { RCCError = -1, notFound, removed }; typedef enum insertLocType { atFront = 1, First = 1, internal = 2, between = 3, after = 3, atBack = 4, Last = 4, Empty = 5 }; typedef enum direction { Forward = 0, Backward = 1, Backwards = 1 }; typedef enum findInstruction { Equal = 0, EqualOrHigher = 1, EqualOrLower = 2, FirstHigher = 3, NextHigher =3, FirstLower = 4, NextLower = 4 }; typedef enum Cu_Status { NotInSet, Bound, Loose }; typedef enum DestroyInstructionNE { WarnIfNotEmpty, ErrorIfNotEmpty, OKtoDestroyIfNotEmpty }; typedef enum DestroyInstructionCC { ErrorIfContainsCursors, RemoveCursorsAndWarnIfCC, RemoveCursorsAndDontWarnIfCC, DestroyWithoutRemovingCursors };