TXF_LOG_RECORD_BASE structure (txfw32.h)

[Microsoft strongly recommends developers utilize alternative means to achieve your application’s needs. Many scenarios that TxF was developed for can be achieved through simpler and more readily available techniques. Furthermore, TxF may not be available in future versions of Microsoft Windows. For more information, and alternatives to TxF, please see Alternatives to using Transactional NTFS.]

Contains the basic record information.

Syntax

typedef struct _TXF_LOG_RECORD_BASE {
  USHORT Version;
  USHORT RecordType;
  ULONG  RecordLength;
} TXF_LOG_RECORD_BASE, *PTXF_LOG_RECORD_BASE;

Members

Version

The version identifier for the replication record.

RecordType

The record type. This member can be one of the following values.

Value Meaning
TXF_LOG_RECORD_TYPE_AFFECTED_FILE
4
The record is a TXF_LOG_RECORD_AFFECTED_FILE structure.
TXF_LOG_RECORD_TYPE_TRUNCATE
2
The record is a TXF_LOG_RECORD_TRUNCATE structure.
TXF_LOG_RECORD_TYPE_WRITE
1
The record is a TXF_LOG_RECORD_WRITE structure.

RecordLength

The length of this record, in bytes.

Requirements

Requirement Value
Minimum supported client Windows Vista with SP1 [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header txfw32.h

See also

TXF_LOG_RECORD_AFFECTED_FILE

TXF_LOG_RECORD_TRUNCATE

TXF_LOG_RECORD_WRITE

TxfLogReadRecords