home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / schedule.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  2KB  |  82 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1997-1999 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     schedule.h
  8.  
  9. Abstract:
  10.  
  11.     This file defines a common schedule structure for use by various NT
  12.     components.
  13.  
  14. --*/
  15.  
  16. #ifndef _SCHEDULE_H_
  17. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  18. #define _SCHEDULE_H_
  19.  
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. //
  29. // The DS and FRS use the same structure to represent different schedules.
  30. // The DS uses a 15-minute polling schedule. FRS uses a 60-minute
  31. // start/stop schedule. Hence, the schedule for the system volume is
  32. // a special case because we only have the DS schedule to work from.
  33. // We will work around this problem by treating the 15
  34. // -minute polling schedule as a 60-minute start/stop schedule.
  35. // Replication is enabled for any hour that has any of the four
  36. // 15-minute bits set.
  37. //
  38. // When the ReplicationSchedule is not present the default is
  39. // "always replicate."
  40. //
  41.  
  42. //
  43. // Only the interval schedule is currently implemented. Others are ignored.
  44. //
  45. #define SCHEDULE_INTERVAL       0 // schedule as understood by NT5
  46. #define SCHEDULE_BANDWIDTH      1 // bandwidth as understood by NT5
  47. #define SCHEDULE_PRIORITY       2 // priority as understood by NT5
  48.  
  49. //
  50. // Schedule Header
  51. //
  52. // Each schedule blob begins with n array of schedule headers that
  53. // specify the number and type of schedules contained in the blob.
  54. //
  55. typedef struct _SCHEDULE_HEADER {
  56.     ULONG   Type;       // one of the SCHEDULE_ ordinals
  57.     ULONG   Offset;     // offset from start of schedule structure
  58. } SCHEDULE_HEADER, *PSCHEDULE_HEADER;
  59.  
  60. //
  61. // Schedule
  62. //
  63. typedef struct _SCHEDULE {
  64.     ULONG           Size;           // inclusive size in bytes
  65.     ULONG           Bandwidth;
  66.     ULONG           NumberOfSchedules;
  67.     SCHEDULE_HEADER Schedules[1];
  68. } SCHEDULE, *PSCHEDULE;
  69. // The above structure is followed by the Data buffer and the
  70. // SCHEDULE_HEADER contains offsets to refer to the appropriate
  71. // parts in the data buffer.
  72.  
  73. #define SCHEDULE_DATA_ENTRIES   (7 * 24)    // 7 days X 24 hours
  74.  
  75. #ifdef __cplusplus
  76. }
  77. #endif
  78.  
  79. #pragma option pop /*P_O_Pop*/
  80. #endif // _SCHEDULE_H_
  81.  
  82.