home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / tools / bachmann / bachmann.exe / CW / Samples / PrintMgr Sample / src / pms.h < prev   
Encoding:
C/C++ Source or Header  |  2000-10-06  |  666 b   |  31 lines

  1. /*
  2.    PMS.H
  3.    Print Manager Sample Application declarations.
  4.    Greg Winton
  5.    Bachmann Software and Services, 1998
  6. */
  7.  
  8. // Prevent multiple includes
  9. #ifndef PMS_H
  10. #define PMS_H
  11.  
  12. #define  PMS_FILE_CREATOR   ('BPS1')
  13. #define  PMS_FILE_VERSION   (0x01)
  14. #define  PMS_PREF_ID        (0x02)
  15. #define  PMS_PREF_VERSION   (0x01)
  16.  
  17. #define  PALMOS_VERSION_20 (0x02000000)
  18.  
  19. #define  PALMOS_VERSION    (PALMOS_VERSION_20)
  20.  
  21. /*
  22.    MainFormEventHandler (EventPtr)
  23.    Parms:   pEvent   - event to be handled.
  24.    Return:  true  - handled (successfully or not)
  25.             false - not handled
  26. */
  27. Boolean  MainFormEventHandler (EventPtr pEvent);
  28.  
  29. #endif
  30.  
  31.