home *** CD-ROM | disk | FTP | other *** search
- /*
- PMS.H
- PageMgr Sample Application declarations.
- Greg Winton
- Bachmann Software and Services, 1998
- */
-
- // Prevent multiple includes
- #ifndef PMS_H
- #define PMS_H
-
- #define PMS_FILE_CREATOR ('BPS1')
- #define PMS_FILE_VERSION (0x01)
- #define PMS_PREF_ID (0x02)
- #define PMS_PREF_VERSION (0x01)
-
- #define PALMOS_VERSION_20 (0x02000000)
-
- #define PALMOS_VERSION (PALMOS_VERSION_20)
-
- /*
- MainFormEventHandler (EventPtr)
- Parms: pEvent - event to be handled.
- Return: true - handled (successfully or not)
- false - not handled
- */
- Boolean MainFormEventHandler (EventPtr pEvent);
-
- #endif
-
-