mirror of
https://github.com/elliotnunn/mac-rom.git
synced 2025-01-01 11:29:27 +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.
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
;
|
|
; File: AliasMgrPatch.a
|
|
;
|
|
; Contains: Alias Manager linked patch.
|
|
;
|
|
; Written by: Prashant Patel and Jeff Miller
|
|
;
|
|
; Copyright: © 1990, 1992 by Apple Computer, Inc., all rights reserved.
|
|
;
|
|
; Change History (most recent first):
|
|
;
|
|
; <4> 6/2/92 JSM Move AliasMgrInstall to AliasMgr.a since it's used by both the
|
|
; ROM and System builds, and patch files shouldnÕt be used in the
|
|
; ROM build. This file now just does a MakePatch and is needed
|
|
; only by the System build.
|
|
; <3> 8/30/90 PP gestaltFolderMgrAttr is gestaltFindFolderAttr.
|
|
; gestaltFolderMgrPresent is gestaltFindFolderPresent.
|
|
; <2> 6/11/90 JSM Add missing END.
|
|
; <1> 5/10/90 JSM First checked in.
|
|
;
|
|
|
|
LOAD 'StandardEqu.d'
|
|
INCLUDE 'LinkedPatchMacros.a'
|
|
|
|
CASE OBJ
|
|
STRING ASIS
|
|
|
|
;
|
|
; The Alias Manager is installed on all ROM families
|
|
;
|
|
ROMs Plus,SE,II,Portable,IIci
|
|
|
|
;===============================================================================
|
|
;
|
|
; Install ALIAS as the Alias Manager trap. Link this in after AliasMgr.a so
|
|
; this will happen after the Alias ManagerÕs InstallProc is executed, although
|
|
; this isnÕt strictly necessary.
|
|
;
|
|
;===============================================================================
|
|
|
|
IMPORT ALIAS
|
|
MakePatch ALIAS,$A823
|
|
|
|
END
|