mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-19 21:30:04 +00:00
0ba83392d4
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.
43 lines
914 B
Plaintext
43 lines
914 B
Plaintext
;
|
|
; File: popup.a
|
|
;
|
|
; Contains: xxx put contents here xxx
|
|
;
|
|
; Written by: xxx put writers here xxx
|
|
;
|
|
; Copyright: © 1990 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <1> 3/14/90 BBH first checked in (for pre-70)
|
|
;
|
|
; To Do:
|
|
;
|
|
|
|
; ~@~Projector~@~ Copyright © 1987, 1988, 1989 Apple Computer, Inc. All rights reserved.
|
|
; ~@~Projector~@~ File: popup.a,1+ (3/27/89 9:13:32 AM)
|
|
;
|
|
; Popup.a - assembler header for popup menu CDEF
|
|
; Copyright © 1989 Apple Computer Inc. All rights reserved
|
|
;
|
|
; Written by Byron Han
|
|
; Revision History
|
|
; 3/22/89 BBH started
|
|
; 6/20/89 BBH Changed procID from 10 to 2
|
|
; 7/27/89 BBH Changed procID from 2 to 63
|
|
;
|
|
|
|
INCLUDE 'CommToolboxPriv.a'
|
|
|
|
POPUP PROC EXPORT
|
|
IMPORT PPOPUP
|
|
BRA.S @0
|
|
DC.W 0 ; flags
|
|
DC.B 'CDEF'
|
|
DC.W 0 ; version
|
|
DC.W CTB_PopupCDEFID ; procID
|
|
|
|
@0 JMP PPOPUP
|
|
ENDPROC
|
|
|
|
END |