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.

34 lines
724 B

  1. /****************************************************************************
  2. Copyright (c) Microsoft Corporation 1998
  3. All rights reserved
  4. File: TASKS.H
  5. ***************************************************************************/
  6. #ifndef _TASKS_H_
  7. #define _TASKS_H_
  8. #define STATE_NOTSTARTED ODS_DEFAULT
  9. #define STATE_STARTED ODS_SELECTED
  10. #define STATE_DONE ODS_CHECKED
  11. #define STATE_ERROR ODS_DISABLED
  12. typedef struct {
  13. LPWSTR pszText;
  14. UINT uState;
  15. IMIRROR_TODO todo;
  16. BOOLEAN fSeen;
  17. } LBITEMDATA, *LPLBITEMDATA;
  18. INT_PTR CALLBACK
  19. TasksDlgProc(
  20. HWND hDlg,
  21. UINT uMsg,
  22. WPARAM wParam,
  23. LPARAM lParam );
  24. #endif // _TASKS_H_