mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-29 20:49:19 +00:00
28 lines
583 B
Plaintext
28 lines
583 B
Plaintext
; Version: 3.03
|
|
; Created: Friday, October 20, 1989 at 9:32:35 PM
|
|
;
|
|
; File: Notification.a
|
|
;
|
|
; Assembler Interface to the Macintosh Libraries
|
|
; Copyright Apple Computer, Inc. 1989-90
|
|
; All Rights Reserved
|
|
|
|
IF &TYPE('__IncludingNotification__') = 'UNDEFINED' THEN
|
|
__IncludingNotification__ SET 1
|
|
|
|
NMRec RECORD 0
|
|
qLink DS.L 1
|
|
qType DS.W 1
|
|
nmFlags DS.W 1
|
|
nmPrivate DS.L 1
|
|
nmReserved DS.W 1
|
|
nmMark DS.W 1
|
|
nmIcon DS.L 1
|
|
nmSound DS.L 1
|
|
nmStr DS.L 1
|
|
nmResp DS.L 1
|
|
nmRefCon DS.L 1
|
|
NMRecSize EQU *
|
|
ENDR
|
|
|
|
ENDIF ; ...already included |