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.

51 lines
1.6 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998.
  5. //
  6. // File: stringc.h
  7. //
  8. // Contents: SyncMgr string constants
  9. //
  10. // History: 18-Feb-98 SusiA Created.
  11. //
  12. //--------------------------------------------------------------------------
  13. #ifndef _LIB_STRINGC_
  14. #define _LIB_STRINGC_
  15. extern "C" {
  16. extern const WCHAR SZ_SYNCMGRNAME[];
  17. extern const WCHAR REGSTR_WINLOGON[];
  18. extern const WCHAR REGSTR_DEFAULT_DOMAIN[];
  19. extern const WCHAR CREATOR_SYNCMGR_TASK[];
  20. extern const WCHAR SCHED_COMMAND_LINE_ARG[];
  21. // registration constants. should be able to move to dll string constants
  22. // if write wrapper class for preference access instead of exe reading these
  23. // keys directly.
  24. extern const WCHAR TOPLEVEL_REGKEY[];
  25. extern const WCHAR HANDLERS_REGKEY[];
  26. extern const WCHAR AUTOSYNC_REGKEY[];
  27. extern const WCHAR IDLESYNC_REGKEY[];
  28. extern const WCHAR SCHEDSYNC_REGKEY[];
  29. extern const WCHAR MANUALSYNC_REGKEY[];
  30. extern const WCHAR PROGRESS_REGKEY[];
  31. extern const WCHAR SZ_IDLELASTHANDLERKEY[];
  32. extern const WCHAR SZ_IDLERETRYMINUTESKEY[];
  33. extern const WCHAR SZ_IDLEDELAYSHUTDOWNTIMEKEY[];
  34. extern const WCHAR SZ_IDLEREPEATESYNCHRONIZATIONKEY[];
  35. extern const WCHAR SZ_IDLEWAITAFTERIDLEMINUTESKEY[];
  36. extern const WCHAR SZ_IDLERUNONBATTERIESKEY[];
  37. extern const WCHAR SZ_REGISTRATIONFLAGSKEY[];
  38. extern const WCHAR SZ_REGISTRATIONTIMESTAMPKEY[];
  39. extern const WCHAR SZ_DEFAULTDOMAINANDUSERNAME[];
  40. };
  41. #endif // _LIB_STRINGC_