home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / apcinbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  1.6 KB  |  42 lines

  1. /****************************************************************************
  2. * Copyright (c) 1998 Microsoft Corporation, All rights reserved.
  3. ****************************************************************************
  4. * APCInbox.h    - Contains platform specific information for the AutoPC Inbox
  5. *
  6. * Notes:        Additional header fields used by AutoPC Wireless 
  7. *               application are:
  8. *
  9. *               Type    -   Indicates the type of message. Currently optional
  10. *                           for 'Email', 'Traffic', and 'News' messages.  
  11. *                           However, this is used to determine messages of
  12. *                           type 'Page'.  If this is not present, 'Email' is
  13. *                           assummed.
  14. *
  15. *               Status  -   This can be either 'read', 'unread' or 'new'. If
  16. *                           this field is not present, the message is assumed
  17. *                           to be new.
  18. *
  19. ****************************************************************************/
  20. #ifndef __APCINBOX_H__
  21. #define    __APCINBOX_H__
  22.  
  23. // msg type flags
  24. #define MSG_EMAIL   0           // default
  25. #define MSG_PAGE    1
  26. #define MSG_TRAFFIC 2
  27. #define MSG_NEWS    3
  28.  
  29. // folders - Email and pages will be using the inbox
  30. #define MAIL_FOLDER_TRAFFIC 18  // szName will be "Traffic"
  31. #define MAIL_FOLDER_NEWS    19  // szName will be "News"
  32.  
  33. // msg status flags
  34. #define MSG_UNREAD  0
  35. #define MSG_READ    1
  36. #define MSG_NEW     2
  37. #define MSG_SAVE    4
  38.  
  39. #define MSG_NOT_SAVE        (MAIL_STATUS_NOT|MAIL_STATUS_LOCKED)
  40.  
  41. #endif // __APCINBOX_H__
  42.