//------------------------------------------------------------------------
//
//  WINPTR.H -- Include file for WINPTR.C
//
//  (c) Douglas Boling, 1991
//
//------------------------------------------------------------------------

//
//Structures
//
typedef struct {
	WORD	wMoveTrig;
	WORD	wTimeTrig;
	WORD	wCursorID;
	BOOL	bEnabled;
	BOOL	bArrowOnly;
} HOOKSTAT;
typedef HOOKSTAT far *PHOOKSTAT;

//
// Dialog Box IDs
//

#define IDD_ARROWONLY            100
#define IDD_MOVETRIG             101
#define IDD_TIMETRIG             102
#define IDD_MOVETEXT             103
#define IDD_TIMETEXT             104

#define IDD_ENABLE               110
#define IDD_SETCUR               111
#define IDD_SETTRIG              112
#define IDD_ABOUT                113
#define IDD_EXIT                 114


