Directory Services |
The SCHEDULE_HEADER structure is used to contain the replication schedule data for a replication source. The SCHEDULE structure contains an array of SCHEDULE_HEADER structures.
typedef struct _SCHEDULE_HEADER {
ULONG Type;
ULONG Offset; } SCHEDULE_HEADER, *PSCHEDULE_HEADER;
Each bit of the lower four bits of each byte represents a 15 minute block within the hour that the source is available for replication. The following table lists the binary values and describes each bit of the lower four bits of the hour value.
Binary Value | Description |
---|---|
0001 | The source is available for replication from 0 to 14 minutes after the hour. |
0010 | The source is available for replication from 15 to 29 minutes after the hour. |
0100 | The source is available for replication from 30 to 44 minutes after the hour. |
1000 | The source is available for replication from 45 to 59 minutes after the hour. |
The upper fours bits of each byte are not used.
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.
Header: Declared in Schedule.h.