mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-28 16:31:01 +00:00
4325cdcc78
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included. The Tools directory, containing mostly junk, is also excluded.
35 lines
743 B
Plaintext
35 lines
743 B
Plaintext
;
|
|
; File: alDlogUtil.a
|
|
;
|
|
; Contains: alias manager dialog box utility routines in Assembly
|
|
;
|
|
; Written by: Prashant Patel
|
|
;
|
|
; Copyright: © 1989-1992 by Apple Computer, Inc. All rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <SM2> 10/28/92 SWC Changed the INCLUDEs to a LOAD of StandardEqu.d.
|
|
; <1.0> 9/18/89 prp Initial release.
|
|
;
|
|
|
|
BLANKS ON
|
|
STRING ASIS
|
|
CASE OFF
|
|
|
|
LOAD 'StandardEqu.d'
|
|
|
|
; SetArrowCursor();
|
|
; Does a SetCursor with the arrow cursor
|
|
PROC
|
|
EXPORT SetArrowCursor
|
|
SetArrowCursor:
|
|
MOVE.L GrafGlobals(a5), a0 ; Point at QuickDraw globals
|
|
PEA arrow(a0) ; Push address of arrow cursor
|
|
_SetCursor ; Set it as current
|
|
RTS ; Return to C
|
|
ENDPROC
|
|
|
|
END
|
|
|