DS_REPL_PENDING_OPSW structure (ntdsapi.h)
The DS_REPL_PENDING_OPS structure contains an array of DS_REPL_OP structures, which in turn describe the replication tasks currently executing and queued to execute, as returned by the DsReplicaGetInfo and DsReplicaGetInfo2 functions. The entries in the queue are processed in priority order, and the first entry is the one currently being executed.
Syntax
typedef struct _DS_REPL_PENDING_OPSW {
FILETIME ftimeCurrentOpStarted;
DWORD cNumPendingOps;
#if ...
DS_REPL_OPW rgPendingOp[];
#else
DS_REPL_OPW rgPendingOp[1];
#endif
} DS_REPL_PENDING_OPSW;
Members
ftimeCurrentOpStarted
Contains a FILETIME structure that contains the date and time at which the first operation in the queue began executing.
cNumPendingOps
Contains the number of elements in the rgPendingOps array.
rgPendingOp
Contains an array of DS_REPL_OP structures that contain the replication tasks currently executing and queued to execute.
rgPendingOp[1]
Contains an array of DS_REPL_OP structures that contain the replication tasks currently executing and queued to execute.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Minimum supported server | Windows Server 2008 |
Header | ntdsapi.h |