Source code of Windows XP (NT5)
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.

46 lines
2.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998.
  5. //
  6. // File: stringc.c
  7. //
  8. // Contents: SyncMgr string constants
  9. //
  10. // History: 18-Feb-98 SusiA Created.
  11. //
  12. //--------------------------------------------------------------------------
  13. #include <objbase.h>
  14. const WCHAR SZ_SYNCMGRNAME[] = TEXT("Synchronization Manager");
  15. const WCHAR REGSTR_WINLOGON[] = TEXT("Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon");
  16. const WCHAR REGSTR_DEFAULT_DOMAIN[] = TEXT("DefaultDomainName");
  17. const WCHAR CREATOR_SYNCMGR_TASK[] = L"SyncMgrInternalCreatorName";
  18. const WCHAR SCHED_COMMAND_LINE_ARG[] = L" /Schedule=";
  19. // strings consts used for registration
  20. // should have a preference class so these strings can be moved to the dll.
  21. const WCHAR TOPLEVEL_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr");
  22. const WCHAR HANDLERS_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\Handlers");
  23. const WCHAR AUTOSYNC_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\AutoSync");
  24. const WCHAR IDLESYNC_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\Idle");
  25. const WCHAR SCHEDSYNC_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\SchedSync");
  26. const WCHAR MANUALSYNC_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\Manual");
  27. const WCHAR PROGRESS_REGKEY[] = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\SyncMgr\\ProgressState");
  28. const WCHAR SZ_IDLELASTHANDLERKEY[] = TEXT("LastIdleHandler");
  29. const WCHAR SZ_IDLERETRYMINUTESKEY[] = TEXT("IdleRetryMinutes");
  30. const WCHAR SZ_IDLEDELAYSHUTDOWNTIMEKEY[] = TEXT("DelayShutDownTime");
  31. const WCHAR SZ_IDLEREPEATESYNCHRONIZATIONKEY[] = TEXT("RepeatSynchronization");
  32. const WCHAR SZ_IDLEWAITAFTERIDLEMINUTESKEY[] = TEXT("WaitMinutesAfterIdle");
  33. const WCHAR SZ_IDLERUNONBATTERIESKEY[] = TEXT("RunOnBattery");
  34. const WCHAR SZ_REGISTRATIONFLAGSKEY[] = TEXT("RegistrationFlags");
  35. const WCHAR SZ_REGISTRATIONTIMESTAMPKEY[] = TEXT("TimeStamp");
  36. const WCHAR SZ_DEFAULTDOMAINANDUSERNAME[] = TEXT("Default");