mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-27 10:29:32 +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.
42 lines
678 B
Plaintext
42 lines
678 B
Plaintext
;
|
|
; File: BalloonWDEF.a
|
|
;
|
|
; Contains: Header for the Balloon Help Window WDEF
|
|
;
|
|
; Written by: Randy Carr
|
|
;
|
|
; Copyright: © 1989-1990 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <2> 8/31/90 RLC Update constant in version and ID.
|
|
; <1.1> 8/29/89 RLC Call new WDEF.
|
|
; <1.0> 6/29/89 RLC Created Today.
|
|
;
|
|
; To Do:
|
|
;
|
|
|
|
|
|
TITLE 'BalloonWDEF.a - Help Manager'
|
|
|
|
INCLUDE 'Balloons.a'
|
|
|
|
BalloonWDEF MAIN EXPORT
|
|
|
|
IMPORT HMWindowDefProc
|
|
|
|
WDEFHeader
|
|
BRA.S @0
|
|
|
|
DC.W 0 ; flags
|
|
DC.B 'WDEF' ; type
|
|
DC.W kHMBalloonWDEFID ; ID
|
|
DC.W hmBalloonHelpVersion ; version
|
|
|
|
@0 JMP HMWindowDefProc
|
|
|
|
END
|
|
|
|
END
|
|
|