home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- *
- * Module Name : Set My Pointer Module
- *
- * Filename : Pointer.c
- *
- * By : Matthew P. Tway
- *
- * For : TMH Software
- *
- * Date : 01/27/89
- *
- * Description : GrabPointer Version 1.0
- *
- *************************************************************************/
-
-
- #define NEWPOINTER_H 16
- #define NEWPOINTER_W 16
- #define NEWPOINTER_XOFF -6
- #define NEWPOINTER_YOFF -6
-
- unsigned short NewPointer[] = {
- 0x0000,0x0000, /* Position & Control */
-
- 0x0000,0x0000,
- 0xc060,0x8020,
- 0x60c0,0xc060,
- 0x3180,0x60c0,
- 0x1b00,0x3180,
- 0x0e00,0x1f00,
- 0x0a00,0x0a00,
- 0x1f00,0x0e00,
- 0x3180,0x1b00,
- 0x60c0,0x3180,
- 0xc060,0x60c0,
- 0x0000,0x0000,
- 0x0000,0x0000,
- 0x0000,0x0000,
- 0x0000,0x0000,
-
- 0x0000,0x0000,
- } ;
-
- mypointer(window)
- char *window ;
- {
- SetPointer(window,&NewPointer,
- (long)NEWPOINTER_H, (long)NEWPOINTER_W,
- (long)NEWPOINTER_XOFF,(long)NEWPOINTER_YOFF) ;
- }
-