home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!decwrl!netcomsv!terapin!paulk
- From: paulk@terapin.com (Paul Kienitz)
- Newsgroups: comp.sys.amiga.programmer
- Subject: Re: Busy Pointer
- References: <1992Sep10.025427.20375@cs.aukuni.ac.nz>
- Message-ID: <paulk.1gg2@terapin.com>
- Date: 10 Sep 92 20:23:38 PST
- Organization: BBS
- Lines: 27
-
- > Can someone tell me how to get the address of the default busy
- > pointer so I can use SetPointer() to set it.
-
- I think that's hidden away so if you do find the address of it, it
- won't work when they revise the OS. But here is a copy of what it
- currently looks like:
-
- static ushort WaitPointerImage[] = {
- 0x0000, 0x0000, /* vert. and horiz. start posn. */
- 0x0400, 0x07C0,
- 0x0000, 0x07C0,
- 0x0100, 0x0380,
- 0x0000, 0x07E0,
- 0x07C0, 0x1FF8,
- 0x1FF0, 0x3FEC,
- 0x3FF8, 0x7FDE,
- 0x3FF8, 0x7FBE,
- 0x7FFC, 0xFF7F,
- 0x7EFC, 0xFFFF,
- 0x7FFC, 0xFFFF,
- 0x3FF8, 0x7FFE,
- 0x3FF8, 0x7FFE,
- 0x1FF0, 0x3FFC,
- 0x07C0, 0x1FF8,
- 0x0000, 0x07E0,
- 0x0000, 0x0000, /* reserved, must be NULL */
- };
-