home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
mac
/
developm
/
scnote
/
scrnfkey.022
/
ScreenFkey.make
< prev
next >
Wrap
Text File
|
1989-10-04
|
2KB
|
47 lines
##############################################################################################
#
# Apple Macintosh Developer Technical Support
#
# FKEY6 : Saves the contents of the main Macintosh screen to a PICT file.
# Macintosh Developer Technical Support
#
# ScreenFKEY.make
#
# Copyright ⌐ 1989 Apple Computer, Inc.
# All rights reserved.
#
# Versions:
# 1.00 10/89
#
# Components:
# ScreenFKEY.p October 1, 1989
# ScreenFKEY.a October 1, 1989
# ScreenFKEY.make October 1, 1989
#
# ScreenFKEY is a basic example on how to spool a PICT file to disk by replacing the
# bottleneck PutPICProc, it saves the contents of the screen to a file. The FKEY creates
# ten files Screen 0 through Screen 9; it is necessary to erase or rename old files when
# the limit is reached.
#
# This FKEY works in any Macintosh computer and saves the screen regardless of the
# setting of the screen; to use, it has to be added to the System file using ResEdit.
#
##############################################################################################
ScreenFKEY.a.o ─ ScreenFkey.make ScreenFKEY.a
Asm ScreenFKEY.a
ScreenFKEY.p.o ─ ScreenFkey.make ScreenFKEY.p
Pascal ScreenFKEY.p
SOURCES = ScreenFKEY.a ScreenFKEY.p
OBJECTS = ScreenFKEY.a.o ScreenFKEY.p.o
ScreenFkey ─ ScreenFkey.make {OBJECTS}
Link -w -t 'FKEY' -c '????' -rt FKEY=6 -m FKEY6 -sg ScreenFKEY ╢
{OBJECTS} ╢
"{Libraries}"Runtime.o ╢
"{Libraries}"Interface.o ╢
"{PLibraries}"PasLib.o ╢
"{PLibraries}"SANELib.o ╢
-o ScreenFkey