Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
943 B

  1. /****************************************************************************/
  2. /* nschdata.c */
  3. /* */
  4. /* RDP Scheduler global data */
  5. /* */
  6. /* Copyright (c) 1996-1999 Microsoft Corp. */
  7. /****************************************************************************/
  8. #include <ndcgdata.h>
  9. DC_DATA(UINT32, schCurrentMode, SCH_MODE_ASLEEP);
  10. DC_DATA(BOOLEAN, schInputKickMode, FALSE);
  11. // Avoid branches by using a table for setting the period.
  12. DC_DATA_ARRAY_NULL(UINT32, schPeriods, 3, NULL);
  13. DC_DATA(UINT32, schTurboModeDuration, 0);
  14. DC_DATA(UINT32, schLastTurboModeSwitch, 0);
  15. DC_DATA(BOOLEAN, schInTTDS, FALSE);