Directory Services

DS_REPL_PENDING_OPS

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.

typedef struct _DS_REPL_PENDING_OPS {
FILETIME ftimeCurrentOpStarted;
DWORD cNumPendingOps;
DS_REPL_OP rgPendingOp[1]; } DS_REPL_PENDING_OPS;

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.

Requirements

Client: Included in Windows XP and Windows 2000 Professional.
Server: Included in Windows Server 2003 and Windows 2000 Server.
Redistributable: Requires Active Directory Client Extension on Windows NT 4.0 SP6a and Windows 95/98/Me.
Unicode: Declared only as Unicode.
Header: Declared in Ntdsapi.h.

See Also

DS_REPL_OP, DsReplicaGetInfo, DsReplicaGetInfo2