CLFS_CONTEXT_MODE enumeration (clfs.h)

Specifies a context mode type that indicates the direction and access methods that a client uses to scan a log. The context mode is set by using ReadLogRecord, and is embedded in the read context that these two functions return.

Syntax

typedef enum _CLFS_CONTEXT_MODE {
  ClfsContextNone = 0x00,
  ClfsContextUndoNext,
  ClfsContextPrevious,
  ClfsContextForward
} CLFS_CONTEXT_MODE, *PCLFS_CONTEXT_MODE, PPCLFS_CONTEXT_MODE;

Constants

 
ClfsContextNone
Value: 0x00
Do not move the cursor.
ClfsContextUndoNext
Move the cursor backward to the next undo record.
ClfsContextPrevious
Move the cursor to the previous log record from the current read context.
ClfsContextForward
Move the cursor to the next client log record from the current read context.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2003 R2 [desktop apps only]
Header clfs.h (include Clfsw32.h)

See also

ReadLogRecord