
#ifndef POINTERS_H
#define POINTERS_H

/* **************************************************************************
 *
 * Intuition Pointers Definition File
 *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
 *
 * Copyright (C) 1986, =Robert J. Mical=
 * All Rights Reserved.
 *
 * Created for Amiga developers.
 * Any or all of this code can be used in any program as long as this
 * entire notice is retained, ok?  Thanks.
 *
 * HISTORY      NAME            DESCRIPTION
 * -----------  --------------  --------------------------------------------
 * 12 Aug 86    RJ >:-{)*       Prepare (clean house) for release
 * 3 May 86     =RJ Mical=      Fix prop gadget for both 1.1 and 1.2
 * 1 Feb 86     =RJ Mical=      Created this file.
 *
 * *********************************************************************** */



#define WBENCH_POINTER      1
#define ELECARTS_POINTER    2
#define GCRAFT_POINTER      3


#define GCRAFTPOINT_HEIGHT          36
#define GCRAFTPOINT_XOFF            0
#define GCRAFTPOINT_YOFF            0

#define WBENCHPOINT_HEIGHT          22
#define WBENCHPOINT_XOFF            -8
#define WBENCHPOINT_YOFF            -7

#define ELECARTSPOINT_HEIGHT        22
#define ELECARTSPOINT_XOFF          -9
#define ELECARTSPOINT_YOFF          -13



#endif  /* of POINTERS_H */


