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.

41 lines
1.3 KiB

  1. #define MAX_PROP_PAGES 20
  2. //
  3. // Used by General, Schedule & Settings page to query each other
  4. // through PSM_QUERYSIBLINGS to see if they are ready to be saved
  5. // to storage.
  6. //
  7. //
  8. // Used by General, Schedule & Settings pages to query each other
  9. // to see if they are ready to be saved to storage. Do this by sending
  10. // the PSM_QUERYSIBLINGS message to each of the page with wParam set to
  11. // QUERY_READY_TO_BE_SAVED & lParam set to 0. A return value of 0 by all
  12. // pages imples they are all ready to be saved.
  13. //
  14. #define QUERY_READY_TO_BE_SAVED 7341
  15. //
  16. // Used by general and schedule page to share the icon helper object.
  17. //
  18. #define GET_ICON_HELPER 7342
  19. //
  20. // Used by all pages to set task application & account change status
  21. // flags to pass in to the common save code (JFSaveJob).
  22. //
  23. #define QUERY_TASK_APPLICATION_DIRTY_STATUS 7345
  24. #define QUERY_TASK_ACCOUNT_INFO_DIRTY_STATUS 7346
  25. #define QUERY_SUPPRESS_ACCOUNT_INFO_REQUEST_FLAG 7347
  26. #define RESET_TASK_APPLICATION_DIRTY_STATUS 7348
  27. #define RESET_TASK_ACCOUNT_INFO_DIRTY_STATUS 7349
  28. #define RESET_SUPPRESS_ACCOUNT_INFO_REQUEST_FLAG 7350
  29. //
  30. // Used to instruct the general page to refresh account information visuals.
  31. //
  32. #define TASK_ACCOUNT_CHANGE_NOTIFY 7351