supermario/bin/MPW-3.2.3/Interfaces/AIncludes/Folders.a
2019-06-29 22:17:03 +08:00

39 lines
1.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

; Version: 1.00
; Created: Friday, October 20, 1989 at 9:11:52 PM
; File: Folders.a
;
; Assembler Interface to the Macintosh Libraries
; Copyright Apple Computer, Inc. 1989-90
; All Rights Reserved
;
;--------------------------------------------------------------------
IF &TYPE('__IncludingFolders__') = 'UNDEFINED' THEN
__IncludingFolders__ SET 1
kOnSystemDisk equ $8000
kCreateFolder equ 1 ; true- create a folder or not
kDontCreateFolder equ 0 ; false
kSystemFolderType equ 'macs' ; the system folder
kDesktopFolderType equ 'desk' ; the desktop folder; objects in this folder show on the desktop
kTrashFolderType equ 'trsh' ; the trash folder; objects in this folder show up in the trash
kWhereToEmptyTrashFolderType equ 'empt' ; the “empty trash” folder; Finder starts emptying from here down
kPrintMonitorDocsFolderType equ 'prnt' ; Print Monitor documents
kStartupFolderType equ 'strt' ; Finder objects (applications, documents, DAs, aliases to …) to open at startup go here
kAppleMenuFolderType equ 'amnu' ; Finder objects to put into the Apple menu go here
kControlPanelFolderType equ 'ctrl' ; Control Panels go here (may contain INITs)
kExtensionFolderType equ 'extn' ; Finder extensions go here
kPreferencesFolderType equ 'pref' ; preferences for applications go here
kTemporaryFolderType equ 'temp' ; temporary files go here (deleted periodically, but dont rely on it)
macro
_FindFolder
moveq #0,d0
dc.w $A823
endm
ENDIF ; ...already included