home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 073.lha / FileIO / pointers.c < prev    next >
C/C++ Source or Header  |  1987-06-02  |  1KB  |  38 lines

  1.  
  2. /* *** pointers.c ***********************************************************
  3.  *
  4.  * Intuition Pointers Routines
  5.  *     from Book 1 of the Amiga Programmers' Suite by RJ Mical
  6.  *
  7.  * Copyright (C) 1986, 1987, Robert J. Mical
  8.  * All Rights Reserved.
  9.  *
  10.  * Created for Amiga developers.
  11.  * Any or all of this code can be used in any program as long as this
  12.  * entire copyright notice is retained, ok?  Thanks.
  13.  *
  14.  * HISTORY      NAME            DESCRIPTION
  15.  * -----------  --------------  --------------------------------------------
  16.  * 12 Aug 86    RJ >:-{)*       Prepare (clean house) for release
  17.  * 3 May 86     =RJ Mical=      Fix prop gadget for both 1.1 and 1.2
  18.  * 1 Feb 86     =RJ Mical=      Created this file.
  19.  *
  20.  * *********************************************************************** */
  21.  
  22.  
  23. #define FILEIO_SOURCEFILE
  24. #include "fileio.h"
  25.  
  26.  
  27. extern USHORT ElecArtsWaitPointer[];
  28.  
  29.  
  30. SetWaitPointer(window)
  31. struct Window *window;
  32. {
  33.     /* This one is the default because it's my favorite */
  34.     SetPointer(window, &ElecArtsWaitPointer[0], ELECARTSPOINT_HEIGHT,
  35.         16, ELECARTSPOINT_XOFF, ELECARTSPOINT_YOFF);
  36. }
  37.  
  38.