mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2024-12-28 01:29:20 +00:00
5b0f0cc134
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.
66 lines
1.6 KiB
Plaintext
66 lines
1.6 KiB
Plaintext
;
|
|
; File: ConnectionsExtensions.a
|
|
;
|
|
; Contains: Private routines for Conn Mgr
|
|
;
|
|
; Written by: Byron Han
|
|
;
|
|
; Copyright: © 1988-1991 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <7> 8/21/91 JSM Clean up header.
|
|
; <6> 8/20/91 BH move CMSetupCleanup here from public interfaces
|
|
; <5> 6/18/91 BH move out 1.1
|
|
; <4> 1/30/91 gbm sab, #38: Change the Ôalready including this fileÕ variable to
|
|
; all uppercase (for security reasons)
|
|
; <3> 1/14/91 CP ;Removed CMConnectPrep and added CMListenPrep and CMOpenPrep.
|
|
; ;Renamed CMFreeIORec to CMDisposeIOPB.
|
|
; ;Renamed CMAllocateIORec to CMNewIOPB.
|
|
; ;Changed reserved2 (long) in CMIORec to reserved2 (short) and
|
|
; version (short).
|
|
; ;Renamed CMIORec to CMIOPB <BBH>
|
|
; <2> 11/27/90 kaz Moving CMExtensions tool messages here; Changed CMHCalls to
|
|
; CMPBCalls; added new calls for CMPBOpen, etc. <jng>
|
|
; <2> 4/12/90 BBH added cmUserCancel
|
|
; <1> 3/14/90 BBH first checked in
|
|
;
|
|
|
|
IF (&TYPE('CONNECTIONSEXTENSIONS') = 'UNDEFINED') THEN
|
|
CONNECTIONSEXTENSIONS EQU 1
|
|
|
|
IF (&TYPE('CTBUTILITIES') = 'UNDEFINED') THEN
|
|
INCLUDE 'CTBUtilities.a'
|
|
ENDIF
|
|
|
|
cmChooseNoChangeHandle EQU 1
|
|
cmChooseNoDialog EQU 2
|
|
cmChooseNoChangeTool EQU 4
|
|
|
|
CMChooseRec RECORD 0
|
|
reserved ds.l 1
|
|
msg ds.l 1
|
|
idleProc ds.l 1
|
|
filterProc ds.l 1
|
|
newTool ds.b 64
|
|
newConfig ds.l 1
|
|
eventProc ds.l 1
|
|
CMChooseRecSize EQU *
|
|
Endr
|
|
|
|
|
|
CMPChoose EQU $12D
|
|
CMSetupCleanup EQU $11B
|
|
|
|
; Tool messages for the above calls
|
|
MACRO
|
|
_CMPChoose
|
|
_CTBCall #CMPChoose
|
|
ENDM
|
|
|
|
MACRO
|
|
_CMSetupCleanup
|
|
_CTBCall #CMSetupCleanup
|
|
ENDM
|
|
|
|
ENDIF |