home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / sys / amiga / programm / 13255 < prev    next >
Encoding:
Internet Message Format  |  1992-09-10  |  1.1 KB

  1. Path: sparky!uunet!decwrl!netcomsv!terapin!paulk
  2. From: paulk@terapin.com (Paul Kienitz)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: Busy Pointer
  5. References: <1992Sep10.025427.20375@cs.aukuni.ac.nz>
  6. Message-ID: <paulk.1gg2@terapin.com>
  7. Date: 10 Sep 92 20:23:38 PST
  8. Organization: BBS
  9. Lines: 27
  10.  
  11. > Can someone tell me how to get the address of the default busy
  12. > pointer so I can use SetPointer() to set it.
  13.  
  14. I think that's hidden away so if you do find the address of it, it
  15. won't work when they revise the OS.  But here is a copy of what it
  16. currently looks like:
  17.  
  18. static ushort WaitPointerImage[] = {
  19.     0x0000, 0x0000,     /* vert. and horiz. start posn. */
  20.         0x0400, 0x07C0,
  21.         0x0000, 0x07C0,
  22.         0x0100, 0x0380,
  23.         0x0000, 0x07E0,
  24.         0x07C0, 0x1FF8,
  25.         0x1FF0, 0x3FEC,
  26.         0x3FF8, 0x7FDE,
  27.         0x3FF8, 0x7FBE,
  28.         0x7FFC, 0xFF7F,
  29.         0x7EFC, 0xFFFF,
  30.         0x7FFC, 0xFFFF,
  31.         0x3FF8, 0x7FFE,
  32.         0x3FF8, 0x7FFE,
  33.         0x1FF0, 0x3FFC,
  34.         0x07C0, 0x1FF8,
  35.         0x0000, 0x07E0,
  36.     0x0000, 0x0000,     /* reserved, must be NULL */
  37. };
  38.