
/*	address_book.h
 *
 *	All DEFINES for the address book application
 */

#define RECORD_LENGTH 582
#define TOTAL_FIELDS 9
#define VERSION_STRING "Address Book 1.05 (16-Dec-93)"

/* Control button ID's */
#define BTN_PREV 			9
#define BTN_NEXT			10
#define BTN_SAVE			11
#define BTN_GOTO			12
#define BTN_SEARCH		13
#define BTN_NEW				14

#define CREATE_NEW		-1
#define CREATE_SEARCH -2

/* Search types */
#define SEARCH_FORWARDS 	0				/* Search records forwards */
#define SEARCH_BACKWARDS 	1				/* .. or search them backwards */
