├── .gitignore ├── .resource-forks ├── OpenTransportSupport ├── PPCCL ├── examples │ └── contextual-menu-cursor.rsrc ├── library │ ├── AppleEvents │ │ └── aete-for-mcl.rsrc │ ├── MCL Background.rsrc │ └── cursors.rsrc ├── pmcl-kernel └── pmcl │ └── siow_resources ├── @Release Notes.txt ├── Interface tools ├── About Interface Tools ├── Dialog-Editor.lisp ├── ift-init.Lisp ├── ift-macros.Lisp ├── ift-menus.Lisp ├── ift-utils.lisp ├── interface-tools.lisp ├── item-defs.Lisp ├── make-ift.lisp └── menu-editor.Lisp ├── LGPL ├── LICENSE ├── Level-0 ├── .gitignore ├── l0-aprims.lisp ├── l0-array.lisp ├── l0-cfm-support.lisp ├── l0-def.lisp ├── l0-hash.lisp ├── l0-init.lisp ├── l0-misc.lisp ├── l0-pred.lisp ├── l0-symbol.lisp ├── l0-utils.lisp ├── nfasload.lisp └── ppc │ ├── .gitignore │ ├── ppc-array.lisp │ ├── ppc-bignum.lisp │ ├── ppc-clos.lisp │ ├── ppc-complex.lisp │ ├── ppc-debug.lisp │ ├── ppc-def.lisp │ ├── ppc-float.lisp │ ├── ppc-hash.lisp │ ├── ppc-int.lisp │ ├── ppc-io.lisp │ ├── ppc-misc.lisp │ ├── ppc-numbers.lisp │ ├── ppc-pfsl-library.lisp │ ├── ppc-pred.lisp │ ├── ppc-symbol.lisp │ └── ppc-utils.lisp ├── MCL Help ├── Macintosh Common Lisp Ref.pdf ├── Mods ├── bug-report-patch.lisp ├── editor-zoom.lisp ├── font-panel.lisp ├── listener-greeting.lisp ├── mcl6.lisp ├── menubar-upgrade.lisp ├── modern-mcl.lisp ├── modern-pane-splitter.lisp ├── no-quit-confirm.lisp ├── save-all-files.lisp ├── set-command-key-patch.lisp ├── shift-return-eval.lisp ├── tiling-listener.lisp └── use-databrowser.lisp ├── OpenTransportSupport ├── OpenTransportSupport ƒ ├── OpenTransportSupport.proj.exp ├── makefile └── notifier.c ├── PPCCL ├── Patches ├── 0001-save-application-internal.lisp ├── 20090420.lisp ├── 20091116.lisp ├── 20100120.lisp ├── 20100128.lisp ├── 20100201.lisp ├── backtrace-fatality-patch.lisp ├── c14n-mac-file-type.lisp ├── choose-file-dialog-patch.lisp ├── get-string-patch.lisp ├── pathname-version-patch.lisp ├── stack-inspector-click-patch.lisp ├── stream-clear-output-patch.lisp └── ~define-patches.lisp ├── README.md ├── XDump ├── .gitignore ├── faslenv.lisp ├── fasload.lisp ├── hashenv.lisp ├── level-1.lisp ├── make-ccl-pfsl-libraries.lisp ├── no-record-source-file.lisp ├── pef-file.lisp ├── pfsl-library-env.lisp ├── pfsl-library.lisp ├── xdump.lisp ├── xfasload.lisp ├── xppcfasload.lisp └── xsym.lisp ├── compiler ├── PPC │ ├── dll-node.lisp │ ├── number-case-macro.lisp │ ├── number-macros.lisp │ ├── ppc-arch.lisp │ ├── ppc-asm.lisp │ ├── ppc-disassemble.lisp │ ├── ppc-lap.lisp │ ├── ppc-lapmacros.lisp │ ├── ppc-optimizers.lisp │ ├── ppc-reg.lisp │ ├── ppc-subprims.lisp │ ├── ppc-vinsns.lisp │ ├── ppc2.lisp │ ├── ppcenv.lisp │ ├── vfunc.lisp │ ├── vinsn.lisp │ └── vreg.lisp ├── lambda-list.lisp ├── nx-base-app.lisp ├── nx-basic.lisp ├── nx.lisp ├── nx0.lisp ├── nx1.lisp ├── nxenv.lisp └── optimizers.lisp ├── examples ├── Databrowser │ ├── autosize.lisp │ ├── databrowser.asd │ ├── databrowser.lisp │ ├── examples │ │ ├── employee-browser.lisp │ │ ├── file-browser-icons.lisp │ │ ├── file-browser.lisp │ │ └── moons-browser.lisp │ ├── modern-processes-inspector.lisp │ └── search-files-browser.lisp ├── FF examples │ ├── ff-example.c │ ├── ff-example.lisp │ └── ff-example.test ├── animated-cursor.lisp ├── anticipat-symbol-complete.lisp ├── appearance-globals.lisp ├── appearance-manager-Folder │ ├── appearance-activity-mixin.lisp │ ├── appearance-editable-text.lisp │ ├── appearance-examples.lisp │ ├── appearance-manager-docs.txt │ ├── appearance-manager.lisp │ ├── appearance-utils.lisp │ ├── bevel-button-dialog-item.lisp │ ├── chasing-arrows-dialog-item.lisp │ ├── clock-dialog-items.lisp │ ├── disclosure-control.lisp │ ├── little-arrows-dialog-item.lisp │ ├── multi-pane-view.lisp │ ├── new-control-dialog-item.lisp │ ├── placard-dialog-item.lisp │ ├── progress-bar-dialog-item.lisp │ ├── separator-dialog-item.lisp │ ├── slider-dialog-item.lisp │ └── tab-bar-view.lisp ├── appleevent-toolkit.lisp ├── applescript-tools.lisp ├── array-dialog-item.lisp ├── assorted-fred-commands.lisp ├── auto-fill.lisp ├── bevel-button-dialog-item.lisp ├── cfm-mover.lisp ├── check-and-change.lisp ├── class-browser.lisp ├── console-log.lisp ├── contextual-menu-cursor.rsrc ├── contextual-menu-mixin.lisp ├── define-interrupt-handler.lisp ├── defsystem.lisp ├── drag-and-drop-examples │ ├── Docs for drag-and-drop.lisp │ ├── drag-aware-list.lisp │ ├── dynamic-views.lisp │ ├── fred-drag.lisp │ └── netscape-info.lisp ├── drag-and-drop-test.lisp ├── drag-and-drop.lisp ├── driver.lisp ├── escape-key.lisp ├── eval-server.lisp ├── fasl-concatenate.lisp ├── ff-example.lisp ├── font-sampler.lisp ├── font-search.lisp ├── fred-word-completion.lisp ├── grapher.lisp ├── iconref.lisp ├── kqueue.lisp ├── library-info.lisp ├── load-all-patches.lisp ├── mark-menu.lisp ├── modern-progress-indicator.lisp ├── mouse-copy.lisp ├── old-file-search.lisp ├── pict-scrap.lisp ├── picture-files.lisp ├── platinum-pop-up-menus.lisp ├── popen.lisp ├── print-class-tree.lisp ├── processes.lisp ├── progress-indicator.lisp ├── query-replace.lisp ├── scrolling-windows.lisp ├── serial-streams.lisp ├── series │ ├── README-MCL-series │ ├── s.lisp │ ├── sdoc.txt │ └── stest.lisp ├── shapes-code.lisp ├── standard-sheet-dialog.lisp ├── text-edit-dialog-item.lisp ├── thermometer.lisp ├── timers.lisp ├── toolserver.lisp ├── turtles.lisp ├── twist-down.lisp ├── uk-keyboard.lisp ├── view-example.lisp ├── webster.lisp └── windoid-key-events.lisp ├── gather-distribution.lisp ├── init.lisp ├── level-1 ├── l1-aprims.lisp ├── l1-boot-1.lisp ├── l1-boot-2.lisp ├── l1-boot-3.lisp ├── l1-boot-lds.lisp ├── l1-cl-package.lisp ├── l1-ed-lds.lisp ├── l1-edbuf.lisp ├── l1-edcmd.lisp ├── l1-edfrec.lisp ├── l1-edwin.lisp ├── l1-events.lisp ├── l1-files.lisp ├── l1-highlevel-events.lisp ├── l1-init.lisp ├── l1-initmenus-lds.lisp ├── l1-initmenus.lisp ├── l1-listener.lisp ├── l1-menus.lisp ├── l1-pathnames.lisp ├── l1-processes.lisp ├── l1-readloop-lds.lisp ├── l1-streams.lisp ├── l1-sysio.lisp ├── l1-tec.lisp ├── l1-traps.lisp ├── l1-unicode-to-mac.lisp ├── l1-utils.lisp ├── l1-windows.lisp ├── new-fred-window.lisp ├── ppc │ ├── l1-clos-boot.lisp │ ├── l1-clos.lisp │ ├── l1-dcode.lisp │ ├── l1-error-signal.lisp │ ├── l1-error-system.lisp │ ├── l1-format.lisp │ ├── l1-io.lisp │ ├── l1-numbers.lisp │ ├── l1-reader.lisp │ ├── l1-readloop.lisp │ ├── l1-sort.lisp │ ├── l1-stack-groups.lisp │ ├── l1-symhash.lisp │ ├── l1-typesys.lisp │ ├── l1-utils-ppc.lisp │ ├── level-1.lisp │ ├── ppc-callback-support.lisp │ ├── ppc-stack-groups.lisp │ ├── ppc-test-arith.lisp │ ├── ppc-trap-support.lisp │ └── sysutils.lisp ├── script-manager.lisp └── sysutils.lisp ├── lib ├── %source-files%.lisp ├── EdHardcopy.lisp ├── LapMacros.lisp ├── Step.lisp ├── ToolEqu.lisp ├── apropos-dialog.lisp ├── apropos.lisp ├── arglist.lisp ├── arrays-fry.lisp ├── backquote.lisp ├── boyer-moore.lisp ├── case-error.lisp ├── ccl-export-syms.lisp ├── ccl-menus-lds.lisp ├── ccl-menus.lisp ├── chars.lisp ├── color.lisp ├── defrecord.lisp ├── defstruct-lds.lisp ├── defstruct-macros.lisp ├── defstruct.lisp ├── deftrap.lisp ├── dialogs.lisp ├── disasm.lisp ├── disassemble.lisp ├── distrib-inits.lisp ├── doc-window.lisp ├── dumplisp.lisp ├── edit-callers.lisp ├── edit-definition.lisp ├── encapsulate.lisp ├── eval.lisp ├── ff-source.lisp ├── format.lisp ├── fred-additions.lisp ├── fred-help.lisp ├── fred-misc.lisp ├── fredenv.lisp ├── hash.lisp ├── init-ccl.lisp ├── inspector-objects.lisp ├── inspector.lisp ├── lap.lisp ├── level-2.lisp ├── list-definitions.lisp ├── lists.lisp ├── mactypes.lisp ├── mcl-extensions.lisp ├── method-combination.lisp ├── misc.lisp ├── new-traps.lisp ├── pathnames.lisp ├── ppc │ ├── backtrace-lds.lisp │ ├── backtrace.lisp │ ├── compile-ccl.lisp │ ├── meter-consing.lisp │ ├── nfcomp.lisp │ ├── numbers.lisp │ ├── ppc-init-ccl-carbon.lisp │ ├── ppc-init-ccl.lisp │ ├── ppc-metering.lisp │ ├── sort.lisp │ └── systems.lisp ├── pprint.lisp ├── prepare-mcl-environment.lisp ├── print-db.lisp ├── read.lisp ├── resident-interfaces.lisp ├── search-files.lisp ├── sequences.lisp ├── setf-runtime.lisp ├── setf.lisp ├── ship-files.lisp ├── simple-db.lisp ├── step-window.lisp ├── streams.lisp ├── sysequ.lisp ├── time.lisp ├── trap-support.lisp ├── views.lisp └── windoids.lisp ├── library ├── -README- ├── .gitignore ├── AppleEvents │ ├── README │ ├── Scripts │ │ ├── Core 1 │ │ ├── Delete Paragraphs │ │ ├── First Middle Last Character │ │ ├── Insertion Points │ │ ├── Make Simple Document │ │ ├── Mark Up │ │ ├── Selections │ │ └── Words │ ├── ae-core-suite.lisp │ ├── ae-misc-suite.lisp │ ├── ae-recordable.lisp │ ├── ae-resolve-objects.lisp │ ├── ae-suites-sysdecl.lisp │ ├── ae-suites.asd │ ├── ae-text-suite.lisp │ ├── aete-for-mcl.rsrc │ └── defappleevents.lisp ├── Inspector Folder │ ├── Inspector Help │ ├── inspector-class.lisp │ ├── inspector-objects.lisp │ ├── inspector-package.lisp │ ├── inspector-window.lisp │ └── ppc │ │ └── new-backtrace.lisp ├── Interfaces │ ├── ABActions.lisp │ ├── ABActionsC.lisp │ ├── ABAddressBook.lisp │ ├── ABAddressBookC.lisp │ ├── ABGlobals.lisp │ ├── ABGlobalsC.lisp │ ├── ABGroup.lisp │ ├── ABImageLoading.lisp │ ├── ABMultiValue.lisp │ ├── ABPeoplePickerC.lisp │ ├── ABPeoplePickerView.lisp │ ├── ABPerson.lisp │ ├── ABRecord.lisp │ ├── ABSearchElement.lisp │ ├── ABTypedefs.lisp │ ├── AE.lisp │ ├── AEDataModel.lisp │ ├── AEHelpers.lisp │ ├── AEInteraction.lisp │ ├── AEMach.lisp │ ├── AEObjects.lisp │ ├── AEPackObject.lisp │ ├── AERegistry.lisp │ ├── AEUserTermTypes.lisp │ ├── AIFF.lisp │ ├── ASDebugging.lisp │ ├── ASKPluginObject.lisp │ ├── ASRegistry.lisp │ ├── ATADeviceNub.lisp │ ├── ATASMARTLib.lisp │ ├── ATATimerEventSource.lisp │ ├── ATS.lisp │ ├── ATSFont.lisp │ ├── ATSLayoutTypes.lisp │ ├── ATSTypes.lisp │ ├── ATSUnicode.lisp │ ├── ATSUnicodeDirectAccess.lisp │ ├── ATSUnicodeDrawing.lisp │ ├── ATSUnicodeFlattening.lisp │ ├── ATSUnicodeFonts.lisp │ ├── ATSUnicodeGlyphs.lisp │ ├── ATSUnicodeObjects.lisp │ ├── ATSUnicodeTypes.lisp │ ├── AUCocoaUIView.lisp │ ├── AUComponent.lisp │ ├── AUGraph.lisp │ ├── AUMIDIController.lisp │ ├── AUNTComponent.lisp │ ├── AVLTree.lisp │ ├── AXConstants.lisp │ ├── AXError.lisp │ ├── AXUIElement.lisp │ ├── AXValue.lisp │ ├── Accelerate.lisp │ ├── Accessibility.lisp │ ├── AddressBook.lisp │ ├── AddressBookUI.lisp │ ├── Aliases.lisp │ ├── Alpha.lisp │ ├── AppKit.lisp │ ├── AppKitDefines.lisp │ ├── AppKitScripting.lisp │ ├── Appearance.lisp │ ├── AppleDiskPartitions.lisp │ ├── AppleEvents.lisp │ ├── AppleFWAudioUserClientCommon.lisp │ ├── AppleFWAudioUserLib.lisp │ ├── AppleHelp.lisp │ ├── AppleMacIO.lisp │ ├── AppleMacIODevice.lisp │ ├── AppleNMI.lisp │ ├── ApplePlatformExpert.lisp │ ├── AppleScript.lisp │ ├── ApplicationServices.lisp │ ├── AudioCodec.lisp │ ├── AudioConverter.lisp │ ├── AudioDriverPlugIn.lisp │ ├── AudioFile.lisp │ ├── AudioFormat.lisp │ ├── AudioHardware.lisp │ ├── AudioHardwarePlugIn.lisp │ ├── AudioOutputUnit.lisp │ ├── AudioToolbox.lisp │ ├── AudioUnit.lisp │ ├── AudioUnitCarbonView.lisp │ ├── AudioUnitParameters.lisp │ ├── AudioUnitProperties.lisp │ ├── AudioUnitUtilities.lisp │ ├── AuthSession.lisp │ ├── Authorization.lisp │ ├── AuthorizationDB.lisp │ ├── AuthorizationTags.lisp │ ├── AvailabilityMacros.lisp │ ├── Bluetooth.lisp │ ├── BluetoothAssignedNumbers.lisp │ ├── CFArray.lisp │ ├── CFBag.lisp │ ├── CFBase.lisp │ ├── CFBinaryHeap.lisp │ ├── CFBitVector.lisp │ ├── CFBundle.lisp │ ├── CFByteOrder.lisp │ ├── CFCharacterSet.lisp │ ├── CFData.lisp │ ├── CFDate.lisp │ ├── CFDateFormatter.lisp │ ├── CFDictionary.lisp │ ├── CFFTPStream.lisp │ ├── CFHTTPMessage.lisp │ ├── CFHTTPStream.lisp │ ├── CFHost.lisp │ ├── CFLocale.lisp │ ├── CFMachPort.lisp │ ├── CFMessagePort.lisp │ ├── CFNetServices.lisp │ ├── CFNetwork.lisp │ ├── CFNotificationCenter.lisp │ ├── CFNumber.lisp │ ├── CFNumberFormatter.lisp │ ├── CFPlugIn.lisp │ ├── CFPlugInCOM.lisp │ ├── CFPreferences.lisp │ ├── CFPropertyList.lisp │ ├── CFRunLoop.lisp │ ├── CFSet.lisp │ ├── CFSocket.lisp │ ├── CFSocketStream.lisp │ ├── CFStream.lisp │ ├── CFString.lisp │ ├── CFStringEncodingExt.lisp │ ├── CFTimeZone.lisp │ ├── CFTree.lisp │ ├── CFURL.lisp │ ├── CFURLAccess.lisp │ ├── CFUUID.lisp │ ├── CFUserNotification.lisp │ ├── CFXMLNode.lisp │ ├── CFXMLParser.lisp │ ├── CGAffineTransform.lisp │ ├── CGBase.lisp │ ├── CGBitmapContext.lisp │ ├── CGColor.lisp │ ├── CGColorSpace.lisp │ ├── CGContext.lisp │ ├── CGDataConsumer.lisp │ ├── CGDataProvider.lisp │ ├── CGDirectDisplay.lisp │ ├── CGDirectPalette.lisp │ ├── CGDisplayConfiguration.lisp │ ├── CGDisplayFade.lisp │ ├── CGError.lisp │ ├── CGFont.lisp │ ├── CGFunction.lisp │ ├── CGGLContext.lisp │ ├── CGGeometry.lisp │ ├── CGImage.lisp │ ├── CGLContext.lisp │ ├── CGLCurrent.lisp │ ├── CGLMacro.lisp │ ├── CGLProfiler.lisp │ ├── CGLRenderers.lisp │ ├── CGLTypes.lisp │ ├── CGPDFArray.lisp │ ├── CGPDFContext.lisp │ ├── CGPDFDictionary.lisp │ ├── CGPDFDocument.lisp │ ├── CGPDFObject.lisp │ ├── CGPDFPage.lisp │ ├── CGPDFStream.lisp │ ├── CGPDFString.lisp │ ├── CGPSConverter.lisp │ ├── CGPath.lisp │ ├── CGPattern.lisp │ ├── CGRemoteOperation.lisp │ ├── CGSession.lisp │ ├── CGShading.lisp │ ├── CGWindowLevel.lisp │ ├── CMApplication.lisp │ ├── CMCalibrator.lisp │ ├── CMDeviceIntegration.lisp │ ├── CMICCProfile.lisp │ ├── CMMComponent.lisp │ ├── CMScriptingPlugin.lisp │ ├── CMTypes.lisp │ ├── Carbon.lisp │ ├── CarbonCore.lisp │ ├── CarbonEvents.lisp │ ├── CarbonEventsCore.lisp │ ├── CarbonSound.lisp │ ├── CarbonUtils.lisp │ ├── CipherSuite.lisp │ ├── Cocoa.lisp │ ├── CodeFragments.lisp │ ├── Collections.lisp │ ├── ColorPicker.lisp │ ├── ColorSync.lisp │ ├── CommonPanels.lisp │ ├── Components.k.lisp │ ├── Components.lisp │ ├── ConditionalMacros.lisp │ ├── ControlDefinitions.lisp │ ├── Controls.lisp │ ├── Conversion.lisp │ ├── Convolution.lisp │ ├── CoreAudio.lisp │ ├── CoreAudioTypes.lisp │ ├── CoreFoundation.lisp │ ├── CoreGraphics.lisp │ ├── CoreMIDI.lisp │ ├── CoreMIDIServer.lisp │ ├── CoreServices.lisp │ ├── DHCPClientPreferences.lisp │ ├── DRBurn.lisp │ ├── DRBurnProgressPanel.lisp │ ├── DRBurnSession.lisp │ ├── DRBurnSetupPanel.lisp │ ├── DRContentFile.lisp │ ├── DRContentFolder.lisp │ ├── DRContentObject.lisp │ ├── DRContentProperties.lisp │ ├── DRContentTrack.lisp │ ├── DRCoreBurn.lisp │ ├── DRCoreDevice.lisp │ ├── DRCoreErase.lisp │ ├── DRCoreErrors.lisp │ ├── DRCoreNotifications.lisp │ ├── DRCoreObject.lisp │ ├── DRCoreStatus.lisp │ ├── DRCoreTrack.lisp │ ├── DRDevice.lisp │ ├── DRErase.lisp │ ├── DREraseProgressPanel.lisp │ ├── DREraseSession.lisp │ ├── DREraseSetupPanel.lisp │ ├── DRFSObject.lisp │ ├── DRFile.lisp │ ├── DRFolder.lisp │ ├── DRMSF.lisp │ ├── DRMSFFormatter.lisp │ ├── DRNotificationCenter.lisp │ ├── DRSetupPanel.lisp │ ├── DRStatus.lisp │ ├── DRTrack.lisp │ ├── DRTrack_ContentSupport.lisp │ ├── DVDPlayback.lisp │ ├── DVFamily.lisp │ ├── DateTimeUtils.lisp │ ├── Debugging.lisp │ ├── DefaultAudioOutput.lisp │ ├── DeviceControl.lisp │ ├── Devices.lisp │ ├── Diagnostics.lisp │ ├── Dialogs.lisp │ ├── Dictionary.lisp │ ├── DigitalHubRegistry.lisp │ ├── DirServices.lisp │ ├── DirServicesConst.lisp │ ├── DirServicesCustom.lisp │ ├── DirServicesTypes.lisp │ ├── DirServicesUtils.lisp │ ├── DirectoryService.lisp │ ├── DiscRecording.lisp │ ├── DiscRecordingContent.lisp │ ├── DiscRecordingEngine.lisp │ ├── DiscRecordingUI.lisp │ ├── DiscRecordingUIResources.lisp │ ├── Displays.lisp │ ├── Drag.lisp │ ├── DrawSprocket.lisp │ ├── DriverServices.lisp │ ├── DriverSynchronization.lisp │ ├── Endian.lisp │ ├── Events.lisp │ ├── ExceptionHandlingDefines.lisp │ ├── Files.lisp │ ├── FindByContent.lisp │ ├── Finder.lisp │ ├── FinderRegistry.lisp │ ├── FixMath.lisp │ ├── Folders.lisp │ ├── FontPanel.lisp │ ├── FontSync.lisp │ ├── Fonts.lisp │ ├── ForceFeedback.lisp │ ├── ForceFeedbackConstants.lisp │ ├── Foundation.lisp │ ├── Geometry.lisp │ ├── Gestalt.lisp │ ├── HFSVolumes.lisp │ ├── HIObject.lisp │ ├── HIServices.lisp │ ├── HIShape.lisp │ ├── HITextUtils.lisp │ ├── HITheme.lisp │ ├── HIToolbar.lisp │ ├── HIToolbox.lisp │ ├── HIView.lisp │ ├── HIWebView.lisp │ ├── HTMLRendering.lisp │ ├── Help.lisp │ ├── Histogram.lisp │ ├── HostTime.lisp │ ├── IBCarbonRuntime.lisp │ ├── ICAApplication.lisp │ ├── ICACamera.lisp │ ├── ICADevice.lisp │ ├── ICD_CameraCalls.lisp │ ├── ICD_ScannerCalls.lisp │ ├── IOACPIPlatformDevice.lisp │ ├── IOACPIPlatformExpert.lisp │ ├── IOACPITypes.lisp │ ├── IOADBBus.lisp │ ├── IOADBController.lisp │ ├── IOADBDevice.lisp │ ├── IOADBLib.lisp │ ├── IOAGPDevice.lisp │ ├── IOATABlockStorageDevice.lisp │ ├── IOATABlockStorageDriver.lisp │ ├── IOATABusCommand.lisp │ ├── IOATABusInfo.lisp │ ├── IOATACommand.lisp │ ├── IOATAController.lisp │ ├── IOATADevConfig.lisp │ ├── IOATADevice.lisp │ ├── IOATAPIProtocolTransport.lisp │ ├── IOATARegI386.lisp │ ├── IOATAStorageDefines.lisp │ ├── IOATATypes.lisp │ ├── IOAccelClientConnect.lisp │ ├── IOAccelSurfaceConnect.lisp │ ├── IOAccelTypes.lisp │ ├── IOAccelerator.lisp │ ├── IOApplePartitionScheme.lisp │ ├── IOAudioControl.lisp │ ├── IOAudioControlUserClient.lisp │ ├── IOAudioDebug.lisp │ ├── IOAudioDefines.lisp │ ├── IOAudioDevice.lisp │ ├── IOAudioEngine.lisp │ ├── IOAudioEngineUserClient.lisp │ ├── IOAudioLevelControl.lisp │ ├── IOAudioLib.lisp │ ├── IOAudioPort.lisp │ ├── IOAudioSelectorControl.lisp │ ├── IOAudioStream.lisp │ ├── IOAudioToggleControl.lisp │ ├── IOAudioTypes.lisp │ ├── IOBSD.lisp │ ├── IOBasicOutputQueue.lisp │ ├── IOBlockStorageDevice.lisp │ ├── IOBlockStorageDriver.lisp │ ├── IOBlockStorageServices.lisp │ ├── IOBluetoothDevice.lisp │ ├── IOBluetoothDeviceSelectorController.lisp │ ├── IOBluetoothHCIController.lisp │ ├── IOBluetoothHCIRequest.lisp │ ├── IOBluetoothInternal.lisp │ ├── IOBluetoothL2CAPChannel.lisp │ ├── IOBluetoothOBEXSession.lisp │ ├── IOBluetoothObject.lisp │ ├── IOBluetoothPairingController.lisp │ ├── IOBluetoothRFCOMMChannel.lisp │ ├── IOBluetoothSDPDataElement.lisp │ ├── IOBluetoothSDPServiceAttribute.lisp │ ├── IOBluetoothSDPServiceRecord.lisp │ ├── IOBluetoothSDPUUID.lisp │ ├── IOBluetoothServiceBrowserController.lisp │ ├── IOBluetoothTransferProgressUI.lisp │ ├── IOBluetoothTypes.lisp │ ├── IOBluetoothUIUserLib.lisp │ ├── IOBluetoothUserLib.lisp │ ├── IOBluetoothUserNotification.lisp │ ├── IOBluetoothUtilities.lisp │ ├── IOBufferMemoryDescriptor.lisp │ ├── IOCDAudioControl.lisp │ ├── IOCDAudioControlUserClient.lisp │ ├── IOCDBlockStorageDevice.lisp │ ├── IOCDBlockStorageDriver.lisp │ ├── IOCDMedia.lisp │ ├── IOCDMediaBSDClient.lisp │ ├── IOCDPartitionScheme.lisp │ ├── IOCDTypes.lisp │ ├── IOCFBundle.lisp │ ├── IOCFPlugIn.lisp │ ├── IOCFSerialize.lisp │ ├── IOCFURLAccess.lisp │ ├── IOCFUnserialize.lisp │ ├── IOCPU.lisp │ ├── IOCardBusDevice.lisp │ ├── IOCatalogue.lisp │ ├── IOCommand.lisp │ ├── IOCommandGate.lisp │ ├── IOCommandPool.lisp │ ├── IOCommandQueue.lisp │ ├── IOCompactDiscServices.lisp │ ├── IOConditionLock.lisp │ ├── IOConfigDirectory.lisp │ ├── IODVDBlockStorageDevice.lisp │ ├── IODVDBlockStorageDriver.lisp │ ├── IODVDMedia.lisp │ ├── IODVDMediaBSDClient.lisp │ ├── IODVDServices.lisp │ ├── IODVDTypes.lisp │ ├── IODataQueue.lisp │ ├── IODataQueueClient.lisp │ ├── IODataQueueShared.lisp │ ├── IODeviceMemory.lisp │ ├── IODeviceTreeSupport.lisp │ ├── IODisplay.lisp │ ├── IOEthernetController.lisp │ ├── IOEthernetInterface.lisp │ ├── IOEthernetStats.lisp │ ├── IOEventSource.lisp │ ├── IOFDiskPartitionScheme.lisp │ ├── IOFWAddressSpace.lisp │ ├── IOFWCommand.lisp │ ├── IOFWDCL.lisp │ ├── IOFWDCLPool.lisp │ ├── IOFWDCLProgram.lisp │ ├── IOFWDCLTranslator.lisp │ ├── IOFWIsoch.lisp │ ├── IOFWIsochChannel.lisp │ ├── IOFWIsochPort.lisp │ ├── IOFWLocalIsochPort.lisp │ ├── IOFWPhysicalAddressSpace.lisp │ ├── IOFWPseudoAddressSpace.lisp │ ├── IOFWRegs.lisp │ ├── IOFWUtils.lisp │ ├── IOFilterInterruptEventSource.lisp │ ├── IOFireLog.lisp │ ├── IOFireWireAVCCommand.lisp │ ├── IOFireWireAVCConsts.lisp │ ├── IOFireWireAVCLib.lisp │ ├── IOFireWireAVCLocalNode.lisp │ ├── IOFireWireAVCRequestSpace.lisp │ ├── IOFireWireAVCTargetSpace.lisp │ ├── IOFireWireAVCUnit.lisp │ ├── IOFireWireAVCUserClientCommon.lisp │ ├── IOFireWireBus.lisp │ ├── IOFireWireController.lisp │ ├── IOFireWireDevice.lisp │ ├── IOFireWireFamilyCommon.lisp │ ├── IOFireWireLibIsoch.lisp │ ├── IOFireWireNub.lisp │ ├── IOFireWirePCRSpace.lisp │ ├── IOFireWirePowerManager.lisp │ ├── IOFireWireSBP2LSIWorkaroundDescriptor.lisp │ ├── IOFireWireSBP2LUN.lisp │ ├── IOFireWireSBP2Lib.lisp │ ├── IOFireWireSBP2Login.lisp │ ├── IOFireWireSBP2ManagementORB.lisp │ ├── IOFireWireSBP2ORB.lisp │ ├── IOFireWireSBP2Target.lisp │ ├── IOFireWireSBP2UserClient.lisp │ ├── IOFireWireSBP2UserClientCommon.lisp │ ├── IOFireWireSerialBusProtocolTransport.lisp │ ├── IOFireWireUnit.lisp │ ├── IOForceFeedbackLib.lisp │ ├── IOFramebuffer.lisp │ ├── IOFramebufferShared.lisp │ ├── IOGatedOutputQueue.lisp │ ├── IOGraphicsDevice.lisp │ ├── IOGraphicsEngine.lisp │ ├── IOGraphicsInterface.lisp │ ├── IOGraphicsInterfaceTypes.lisp │ ├── IOGraphicsLib.lisp │ ├── IOGraphicsTypes.lisp │ ├── IOHIDDescriptorParser.lisp │ ├── IOHIDDevice.lisp │ ├── IOHIDKeys.lisp │ ├── IOHIDLib.lisp │ ├── IOHIDParameter.lisp │ ├── IOHIDShared.lisp │ ├── IOHIDSystem.lisp │ ├── IOHIDTypes.lisp │ ├── IOHIDUsageTables.lisp │ ├── IOHIDevice.lisp │ ├── IOHIKeyboard.lisp │ ├── IOHIKeyboardMapper.lisp │ ├── IOHIPointing.lisp │ ├── IOHITablet.lisp │ ├── IOHITabletPointer.lisp │ ├── IOI2CInterface.lisp │ ├── IOInterruptController.lisp │ ├── IOInterruptEventSource.lisp │ ├── IOInterrupts.lisp │ ├── IOKernelDebugger.lisp │ ├── IOKitDebug.lisp │ ├── IOKitKeys.lisp │ ├── IOKitLib.lisp │ ├── IOKitServer.lisp │ ├── IOLocalConfigDirectory.lisp │ ├── IOLocks.lisp │ ├── IOMacOSTypes.lisp │ ├── IOMacOSVideo.lisp │ ├── IOMapper.lisp │ ├── IOMbufMemoryCursor.lisp │ ├── IOMedia.lisp │ ├── IOMediaBSDClient.lisp │ ├── IOMemoryCursor.lisp │ ├── IOMemoryDescriptor.lisp │ ├── IOMessage.lisp │ ├── IOModemSerialStreamSync.lisp │ ├── IOMultiMemoryDescriptor.lisp │ ├── IONDRVFramebuffer.lisp │ ├── IONDRVSupport.lisp │ ├── IONVRAM.lisp │ ├── IONVRAMController.lisp │ ├── IONeXTPartitionScheme.lisp │ ├── IONetworkController.lisp │ ├── IONetworkData.lisp │ ├── IONetworkInterface.lisp │ ├── IONetworkLib.lisp │ ├── IONetworkMedium.lisp │ ├── IONetworkStats.lisp │ ├── IONetworkUserClient.lisp │ ├── IONotifier.lisp │ ├── IOOutputQueue.lisp │ ├── IOPCCard.lisp │ ├── IOPCCard16Device.lisp │ ├── IOPCCard16Enabler.lisp │ ├── IOPCCardBridge.lisp │ ├── IOPCCardEjectController.lisp │ ├── IOPCIATA.lisp │ ├── IOPCIBridge.lisp │ ├── IOPCIDevice.lisp │ ├── IOPM.lisp │ ├── IOPMEventSource.lisp │ ├── IOPMKeys.lisp │ ├── IOPMLib.lisp │ ├── IOPMLibDefs.lisp │ ├── IOPMPagingPlexus.lisp │ ├── IOPMPowerSource.lisp │ ├── IOPMPowerSourceList.lisp │ ├── IOPMpowerState.lisp │ ├── IOPSKeys.lisp │ ├── IOPacketQueue.lisp │ ├── IOPartitionScheme.lisp │ ├── IOPowerConnection.lisp │ ├── IOPowerSources.lisp │ ├── IOPwrController.lisp │ ├── IORS232SerialStreamSync.lisp │ ├── IORTCController.lisp │ ├── IORangeAllocator.lisp │ ├── IOReducedBlockServices.lisp │ ├── IORegistryEntry.lisp │ ├── IORemoteConfigDirectory.lisp │ ├── IOReturn.lisp │ ├── IOSCSIBlockCommandsDevice.lisp │ ├── IOSCSIMultimediaCommandsDevice.lisp │ ├── IOSCSIParallelInterfaceController.lisp │ ├── IOSCSIPeripheralDeviceNub.lisp │ ├── IOSCSIPeripheralDeviceType00.lisp │ ├── IOSCSIPeripheralDeviceType05.lisp │ ├── IOSCSIPeripheralDeviceType07.lisp │ ├── IOSCSIPeripheralDeviceType0E.lisp │ ├── IOSCSIPrimaryCommandsDevice.lisp │ ├── IOSCSIProtocolInterface.lisp │ ├── IOSCSIProtocolServices.lisp │ ├── IOSCSIReducedBlockCommandsDevice.lisp │ ├── IOSCSITargetDevice.lisp │ ├── IOSerialDriverSync.lisp │ ├── IOSerialKeys.lisp │ ├── IOSerialStreamSync.lisp │ ├── IOService.lisp │ ├── IOServicePM.lisp │ ├── IOSharedLock.lisp │ ├── IOStorage.lisp │ ├── IOStorageDeviceCharacteristics.lisp │ ├── IOStorageProtocolCharacteristics.lisp │ ├── IOSyncer.lisp │ ├── IOTimeStamp.lisp │ ├── IOTimerEventSource.lisp │ ├── IOTypes.lisp │ ├── IOUFIStorageServices.lisp │ ├── IOUSBBus.lisp │ ├── IOUSBCommand.lisp │ ├── IOUSBController.lisp │ ├── IOUSBControllerV2.lisp │ ├── IOUSBDevice.lisp │ ├── IOUSBHIDDriver.lisp │ ├── IOUSBInterface.lisp │ ├── IOUSBLib.lisp │ ├── IOUSBLog.lisp │ ├── IOUSBMassStorageClass.lisp │ ├── IOUSBMassStorageUFISubclass.lisp │ ├── IOUSBNub.lisp │ ├── IOUSBPipe.lisp │ ├── IOUSBRootHubDevice.lisp │ ├── IOUSBUserClient.lisp │ ├── IOUSBWorkLoop.lisp │ ├── IOUserClient.lisp │ ├── IOWatchDogTimer.lisp │ ├── IOWorkLoop.lisp │ ├── IconStorage.lisp │ ├── Icons.lisp │ ├── ImageCapture.lisp │ ├── ImageCodec.k.lisp │ ├── ImageCodec.lisp │ ├── ImageCompression.k.lisp │ ├── ImageCompression.lisp │ ├── Ink.lisp │ ├── InternetConfig.lisp │ ├── IntlResources.lisp │ ├── IsochronousDataHandler.lisp │ ├── KUNCUserNotifications.lisp │ ├── KextManager.lisp │ ├── Keyboards.lisp │ ├── KeychainCore.lisp │ ├── KeychainHI.lisp │ ├── LSInfo.lisp │ ├── LSOpen.lisp │ ├── LangAnalysis.lisp │ ├── LanguageAnalysis.lisp │ ├── LaunchServices.lisp │ ├── Lists.lisp │ ├── LowMem.lisp │ ├── MIDIDriver.lisp │ ├── MIDIServices.lisp │ ├── MIDISetup.lisp │ ├── MIDIThruConnection.lisp │ ├── MacApplication.lisp │ ├── MacErrors.lisp │ ├── MacHelp.lisp │ ├── MacIOATA.lisp │ ├── MacLocales.lisp │ ├── MacMemory.lisp │ ├── MacTextEditor.lisp │ ├── MacTypes.lisp │ ├── MacWindows.lisp │ ├── MachineExceptions.lisp │ ├── Math64.lisp │ ├── MediaHandlers.k.lisp │ ├── MediaHandlers.lisp │ ├── Menus.lisp │ ├── MessageExport.lisp │ ├── MixedMode.lisp │ ├── Morphology.lisp │ ├── Movies.k.lisp │ ├── Movies.lisp │ ├── MoviesFormat.lisp │ ├── Multiprocessing.lisp │ ├── MultiprocessingInfo.lisp │ ├── MusicDevice.lisp │ ├── MusicPlayer.lisp │ ├── NSATSTypesetter.lisp │ ├── NSAccessibility.lisp │ ├── NSActionCell.lisp │ ├── NSAffineTransform.lisp │ ├── NSAlert.lisp │ ├── NSAppleEventDescriptor.lisp │ ├── NSAppleEventManager.lisp │ ├── NSAppleScript.lisp │ ├── NSAppleScriptExtensions.lisp │ ├── NSApplication.lisp │ ├── NSApplicationScripting.lisp │ ├── NSApplication_Scripting.lisp │ ├── NSArchiver.lisp │ ├── NSArray.lisp │ ├── NSArrayController.lisp │ ├── NSAttributedString.lisp │ ├── NSAutoreleasePool.lisp │ ├── NSBezierPath.lisp │ ├── NSBitmapImageRep.lisp │ ├── NSBox.lisp │ ├── NSBrowser.lisp │ ├── NSBrowserCell.lisp │ ├── NSBundle.lisp │ ├── NSButton.lisp │ ├── NSButtonCell.lisp │ ├── NSByteOrder.lisp │ ├── NSCachedImageRep.lisp │ ├── NSCalendarDate.lisp │ ├── NSCell.lisp │ ├── NSCharacterSet.lisp │ ├── NSClassDescription.lisp │ ├── NSClipView.lisp │ ├── NSCloneCommand.lisp │ ├── NSCloseCommand.lisp │ ├── NSCoder.lisp │ ├── NSCoercionHandler.lisp │ ├── NSColor.lisp │ ├── NSColorList.lisp │ ├── NSColorPanel.lisp │ ├── NSColorPicker.lisp │ ├── NSColorPicking.lisp │ ├── NSColorWell.lisp │ ├── NSComboBox.lisp │ ├── NSComboBoxCell.lisp │ ├── NSCompatibility.lisp │ ├── NSConnection.lisp │ ├── NSControl.lisp │ ├── NSController.lisp │ ├── NSCountCommand.lisp │ ├── NSCreateCommand.lisp │ ├── NSCursor.lisp │ ├── NSCustomImageRep.lisp │ ├── NSData.lisp │ ├── NSDate.lisp │ ├── NSDateFormatter.lisp │ ├── NSDebug.lisp │ ├── NSDecimal.lisp │ ├── NSDecimalNumber.lisp │ ├── NSDeleteCommand.lisp │ ├── NSDictionary.lisp │ ├── NSDictionaryOBEXExtensions.lisp │ ├── NSDistantObject.lisp │ ├── NSDistributedLock.lisp │ ├── NSDistributedNotificationCenter.lisp │ ├── NSDocument.lisp │ ├── NSDocumentController.lisp │ ├── NSDocumentScripting.lisp │ ├── NSDocument_Scripting.lisp │ ├── NSDragging.lisp │ ├── NSDrawer.lisp │ ├── NSEPSImageRep.lisp │ ├── NSEnumerator.lisp │ ├── NSError.lisp │ ├── NSErrors.lisp │ ├── NSEvent.lisp │ ├── NSException.lisp │ ├── NSExceptionHandler.lisp │ ├── NSExistsCommand.lisp │ ├── NSFileHandle.lisp │ ├── NSFileManager.lisp │ ├── NSFileWrapper.lisp │ ├── NSFont.lisp │ ├── NSFontDescriptor.lisp │ ├── NSFontManager.lisp │ ├── NSFontPanel.lisp │ ├── NSForm.lisp │ ├── NSFormCell.lisp │ ├── NSFormatter.lisp │ ├── NSGeometry.lisp │ ├── NSGetCommand.lisp │ ├── NSGlyphGenerator.lisp │ ├── NSGlyphInfo.lisp │ ├── NSGraphics.lisp │ ├── NSGraphicsContext.lisp │ ├── NSHFSFileTypes.lisp │ ├── NSHTTPCookie.lisp │ ├── NSHTTPCookieStorage.lisp │ ├── NSHashTable.lisp │ ├── NSHelpManager.lisp │ ├── NSHost.lisp │ ├── NSImage.lisp │ ├── NSImageCell.lisp │ ├── NSImageRep.lisp │ ├── NSImageView.lisp │ ├── NSIndexSet.lisp │ ├── NSIndexSpecifier.lisp │ ├── NSInputManager.lisp │ ├── NSInputServer.lisp │ ├── NSInterfaceStyle.lisp │ ├── NSInvocation.lisp │ ├── NSJavaSetup.lisp │ ├── NSKeyValueAdditions.lisp │ ├── NSKeyValueBinding.lisp │ ├── NSKeyValueCoding.lisp │ ├── NSKeyValueObserving.lisp │ ├── NSKeyedArchiver.lisp │ ├── NSL.lisp │ ├── NSLCore.lisp │ ├── NSLayoutManager.lisp │ ├── NSLock.lisp │ ├── NSLogicalTest.lisp │ ├── NSMailDelivery.lisp │ ├── NSMapTable.lisp │ ├── NSMatrix.lisp │ ├── NSMenu.lisp │ ├── NSMenuItem.lisp │ ├── NSMenuItemCell.lisp │ ├── NSMenuView.lisp │ ├── NSMethodSignature.lisp │ ├── NSMiddleSpecifier.lisp │ ├── NSMoveCommand.lisp │ ├── NSMovie.lisp │ ├── NSMovieView.lisp │ ├── NSNetServices.lisp │ ├── NSNib.lisp │ ├── NSNibConnector.lisp │ ├── NSNibControlConnector.lisp │ ├── NSNibDeclarations.lisp │ ├── NSNibLoading.lisp │ ├── NSNibOutletConnector.lisp │ ├── NSNotification.lisp │ ├── NSNotificationQueue.lisp │ ├── NSNull.lisp │ ├── NSNumberFormatter.lisp │ ├── NSObjCRuntime.lisp │ ├── NSObjectController.lisp │ ├── NSObjectScripting.lisp │ ├── NSObjectSpecifier.lisp │ ├── NSObject_Scripting.lisp │ ├── NSOpenGL.lisp │ ├── NSOpenGLView.lisp │ ├── NSOpenPanel.lisp │ ├── NSOutlineView.lisp │ ├── NSPDFImageRep.lisp │ ├── NSPICTImageRep.lisp │ ├── NSPageLayout.lisp │ ├── NSPanel.lisp │ ├── NSParagraphStyle.lisp │ ├── NSPasteboard.lisp │ ├── NSPathUtilities.lisp │ ├── NSPopUpButton.lisp │ ├── NSPopUpButtonCell.lisp │ ├── NSPort.lisp │ ├── NSPortCoder.lisp │ ├── NSPortMessage.lisp │ ├── NSPortNameServer.lisp │ ├── NSPositionalSpecifier.lisp │ ├── NSPreferencePane.lisp │ ├── NSPrintInfo.lisp │ ├── NSPrintOperation.lisp │ ├── NSPrintPanel.lisp │ ├── NSPrinter.lisp │ ├── NSProcessInfo.lisp │ ├── NSProgressIndicator.lisp │ ├── NSPropertyList.lisp │ ├── NSPropertySpecifier.lisp │ ├── NSProtocolChecker.lisp │ ├── NSProxy.lisp │ ├── NSQuickDrawView.lisp │ ├── NSQuitCommand.lisp │ ├── NSRandomSpecifier.lisp │ ├── NSRange.lisp │ ├── NSRangeSpecifier.lisp │ ├── NSRelativeSpecifier.lisp │ ├── NSResponder.lisp │ ├── NSRulerMarker.lisp │ ├── NSRulerView.lisp │ ├── NSRunLoop.lisp │ ├── NSSavePanel.lisp │ ├── NSScanner.lisp │ ├── NSScreen.lisp │ ├── NSScriptClassDescription.lisp │ ├── NSScriptCoercionHandler.lisp │ ├── NSScriptCommand.lisp │ ├── NSScriptCommandDescription.lisp │ ├── NSScriptExecutionContext.lisp │ ├── NSScriptKeyValueCoding.lisp │ ├── NSScriptObjectSpecifiers.lisp │ ├── NSScriptStandardSuiteCommands.lisp │ ├── NSScriptSuiteRegistry.lisp │ ├── NSScriptWhoseTests.lisp │ ├── NSScrollView.lisp │ ├── NSScroller.lisp │ ├── NSSearchField.lisp │ ├── NSSearchFieldCell.lisp │ ├── NSSecureTextField.lisp │ ├── NSSegmentedCell.lisp │ ├── NSSegmentedControl.lisp │ ├── NSSerialization.lisp │ ├── NSSet.lisp │ ├── NSSetCommand.lisp │ ├── NSShadow.lisp │ ├── NSSlider.lisp │ ├── NSSliderCell.lisp │ ├── NSSortDescriptor.lisp │ ├── NSSound.lisp │ ├── NSSpecifierTest.lisp │ ├── NSSpeechRecognizer.lisp │ ├── NSSpeechSynthesizer.lisp │ ├── NSSpellChecker.lisp │ ├── NSSpellProtocol.lisp │ ├── NSSpellServer.lisp │ ├── NSSplitView.lisp │ ├── NSStatusBar.lisp │ ├── NSStatusItem.lisp │ ├── NSStepper.lisp │ ├── NSStepperCell.lisp │ ├── NSStream.lisp │ ├── NSString.lisp │ ├── NSStringDrawing.lisp │ ├── NSTabView.lisp │ ├── NSTabViewItem.lisp │ ├── NSTableColumn.lisp │ ├── NSTableHeaderCell.lisp │ ├── NSTableHeaderView.lisp │ ├── NSTableView.lisp │ ├── NSTask.lisp │ ├── NSText.lisp │ ├── NSTextAttachment.lisp │ ├── NSTextContainer.lisp │ ├── NSTextField.lisp │ ├── NSTextFieldCell.lisp │ ├── NSTextStorage.lisp │ ├── NSTextStorageScripting.lisp │ ├── NSTextStorage_TextSuite.lisp │ ├── NSTextView.lisp │ ├── NSThread.lisp │ ├── NSTimeZone.lisp │ ├── NSTimer.lisp │ ├── NSToolbar.lisp │ ├── NSToolbarItem.lisp │ ├── NSTypesetter.lisp │ ├── NSURL.lisp │ ├── NSURLAuthenticationChallenge.lisp │ ├── NSURLCache.lisp │ ├── NSURLConnection.lisp │ ├── NSURLCredential.lisp │ ├── NSURLCredentialStorage.lisp │ ├── NSURLDownload.lisp │ ├── NSURLError.lisp │ ├── NSURLHandle.lisp │ ├── NSURLProtectionSpace.lisp │ ├── NSURLProtocol.lisp │ ├── NSURLRequest.lisp │ ├── NSURLResponse.lisp │ ├── NSUndoManager.lisp │ ├── NSUserDefaults.lisp │ ├── NSUserDefaultsController.lisp │ ├── NSUserInterfaceValidation.lisp │ ├── NSUtilities.lisp │ ├── NSValue.lisp │ ├── NSValueTransformer.lisp │ ├── NSView.lisp │ ├── NSWhoseSpecifier.lisp │ ├── NSWhoseTest.lisp │ ├── NSWindow.lisp │ ├── NSWindowController.lisp │ ├── NSWindowScripting.lisp │ ├── NSWindow_Scripting.lisp │ ├── NSWorkspace.lisp │ ├── NSXMLParser.lisp │ ├── NSZone.lisp │ ├── NameRegistry.lisp │ ├── Navigation.lisp │ ├── NavigationServices.lisp │ ├── Notification.lisp │ ├── NumberFormatting.lisp │ ├── OBEX.lisp │ ├── OBEXBluetooth.lisp │ ├── OBEXSession.lisp │ ├── OSA.lisp │ ├── OSAComp.lisp │ ├── OSAGeneric.lisp │ ├── OSAtomic.lisp │ ├── OSBase.lisp │ ├── OSByteOrder.lisp │ ├── OSCollectionIterator.lisp │ ├── OSMessageNotification.lisp │ ├── OSReturn.lisp │ ├── OSServices.lisp │ ├── OSTypes.lisp │ ├── OSUtils.lisp │ ├── OT.lisp │ ├── OpenGL.lisp │ ├── OpenScripting.lisp │ ├── OpenTransport.lisp │ ├── OpenTransportProtocol.lisp │ ├── OpenTransportProviders.lisp │ ├── PEFBinaryFormat.lisp │ ├── PLStringFuncs.lisp │ ├── PMApplication.lisp │ ├── PMCore.lisp │ ├── PMDefinitions.lisp │ ├── PMErrors.lisp │ ├── PMIOModule.lisp │ ├── PMPluginHeader.lisp │ ├── PMPrintAETypes.lisp │ ├── PMPrinterBrowsers.lisp │ ├── PMPrinterModule.lisp │ ├── PMPrintingDialogExtensions.lisp │ ├── PMRaster.lisp │ ├── PMTemplate.lisp │ ├── PMTicket.lisp │ ├── PPCI2CInterface.lisp │ ├── PPDLib.lisp │ ├── Palettes.lisp │ ├── Pasteboard.lisp │ ├── Patches.lisp │ ├── PictUtils.lisp │ ├── Power.lisp │ ├── PreferencePanes.lisp │ ├── Print.lisp │ ├── PrintCore.lisp │ ├── Processes.lisp │ ├── QD.lisp │ ├── QDOffscreen.lisp │ ├── QDPictToCGContext.lisp │ ├── QTML.lisp │ ├── QTSMovie.k.lisp │ ├── QTSMovie.lisp │ ├── QTStreamingComponents.k.lisp │ ├── QTStreamingComponents.lisp │ ├── QuickTime.lisp │ ├── QuickTimeComponents.k.lisp │ ├── QuickTimeComponents.lisp │ ├── QuickTimeMusic.k.lisp │ ├── QuickTimeMusic.lisp │ ├── QuickTimeStreaming.lisp │ ├── QuickTimeVR.lisp │ ├── QuickTimeVRFormat.lisp │ ├── Quickdraw.lisp │ ├── QuickdrawText.lisp │ ├── Resources.lisp │ ├── RootDomain.lisp │ ├── SCDynamicStore.lisp │ ├── SCDynamicStoreCopyDHCPInfo.lisp │ ├── SCDynamicStoreCopySpecific.lisp │ ├── SCDynamicStoreKey.lisp │ ├── SCNetwork.lisp │ ├── SCNetworkConnection.lisp │ ├── SCNetworkReachability.lisp │ ├── SCPreferences.lisp │ ├── SCPreferencesPath.lisp │ ├── SCPreferencesSetSpecific.lisp │ ├── SCSI.lisp │ ├── SCSICmds_INQUIRY_Definitions.lisp │ ├── SCSICmds_REQUEST_SENSE_Defs.lisp │ ├── SCSICommandDefinitions.lisp │ ├── SCSICommandOperationCodes.lisp │ ├── SCSITask.lisp │ ├── SCSITaskLib.lisp │ ├── SCSchemaDefinitions.lisp │ ├── SCSchemaDefinitions_10_1.lisp │ ├── SFAuthorization.lisp │ ├── SFAuthorizationView.lisp │ ├── SFCertificatePanel.lisp │ ├── SFCertificateTrustPanel.lisp │ ├── SFCertificateView.lisp │ ├── SFChooseIdentityPanel.lisp │ ├── SFKeychainSavePanel.lisp │ ├── SFKeychainSettingsPanel.lisp │ ├── SFNTLayoutTypes.lisp │ ├── SFNTTypes.lisp │ ├── SKAnalysis.lisp │ ├── SKDocument.lisp │ ├── SKIndex.lisp │ ├── SKSearch.lisp │ ├── ScalerStreamTypes.lisp │ ├── Scrap.lisp │ ├── ScreenSaver.lisp │ ├── ScreenSaverDefaults.lisp │ ├── ScreenSaverView.lisp │ ├── Script.lisp │ ├── Scripting.lisp │ ├── SearchKit.lisp │ ├── SecACL.lisp │ ├── SecAccess.lisp │ ├── SecBase.lisp │ ├── SecCertificate.lisp │ ├── SecCertificateSupport.lisp │ ├── SecIdentity.lisp │ ├── SecIdentitySearch.lisp │ ├── SecKey.lisp │ ├── SecKeychain.lisp │ ├── SecKeychainItem.lisp │ ├── SecKeychainSearch.lisp │ ├── SecPolicy.lisp │ ├── SecPolicySearch.lisp │ ├── SecTrust.lisp │ ├── SecTrustedApplication.lisp │ ├── SecureTransport.lisp │ ├── Security.lisp │ ├── SecurityCore.lisp │ ├── SecurityHI.lisp │ ├── Sound.k.lisp │ ├── Sound.lisp │ ├── SpeechRecognition.lisp │ ├── SpeechSynthesis.lisp │ ├── StringCompare.lisp │ ├── SystemConfiguration.lisp │ ├── SystemSound.lisp │ ├── TSMTE.lisp │ ├── TextCommon.lisp │ ├── TextEdit.lisp │ ├── TextEncodingConverter.lisp │ ├── TextEncodingPlugin.lisp │ ├── TextServices.lisp │ ├── TextUtils.lisp │ ├── Threads.lisp │ ├── Timer.lisp │ ├── ToolUtils.lisp │ ├── Translation.lisp │ ├── TranslationExtensions.lisp │ ├── TranslationServices.lisp │ ├── TypeSelect.lisp │ ├── UNDTypes.lisp │ ├── URLAccess.lisp │ ├── USBSpec.lisp │ ├── UTCUtils.lisp │ ├── UTType.lisp │ ├── UnicodeConverter.lisp │ ├── UnicodeUtilities.lisp │ ├── Video.lisp │ ├── WSMethodInvocation.lisp │ ├── WSProtocolHandler.lisp │ ├── WSTypes.lisp │ ├── WebBackForwardList.lisp │ ├── WebDataSource.lisp │ ├── WebDocument.lisp │ ├── WebDownload.lisp │ ├── WebFrame.lisp │ ├── WebFrameLoadDelegate.lisp │ ├── WebFrameView.lisp │ ├── WebHistory.lisp │ ├── WebHistoryItem.lisp │ ├── WebKit.lisp │ ├── WebKitErrors.lisp │ ├── WebPolicyDelegate.lisp │ ├── WebPreferences.lisp │ ├── WebResourceLoadDelegate.lisp │ ├── WebServicesCore.lisp │ ├── WebUIDelegate.lisp │ ├── WebView.lisp │ ├── acct.lisp │ ├── adb.lisp │ ├── adsp.lisp │ ├── afpClient.lisp │ ├── afpURL.lisp │ ├── agl.lisp │ ├── aglContext.lisp │ ├── aglMacro.lisp │ ├── aglRenderers.lisp │ ├── ah.lisp │ ├── aio.lisp │ ├── ansi.lisp │ ├── apic.lisp │ ├── appleapiopts.lisp │ ├── appletalk.lisp │ ├── ar.lisp │ ├── asm.lisp │ ├── asm_help.lisp │ ├── asp.lisp │ ├── assert.lisp │ ├── at_aarp.lisp │ ├── at_ddp_brt.lisp │ ├── at_pat.lisp │ ├── at_pcb.lisp │ ├── at_snmp.lisp │ ├── atp.lisp │ ├── attr.lisp │ ├── audit.lisp │ ├── aurp.lisp │ ├── basic_regs.lisp │ ├── boolean.lisp │ ├── boot.lisp │ ├── boot_info.lisp │ ├── bootp.lisp │ ├── bootstrap.lisp │ ├── bpf.lisp │ ├── bsm_kevents.lisp │ ├── bsm_token.lisp │ ├── bsm_uevents.lisp │ ├── buf.lisp │ ├── bulkmem.lisp │ ├── bus_ops.lisp │ ├── byte_order.lisp │ ├── callout.lisp │ ├── cblas.lisp │ ├── cdefs.lisp │ ├── cframe.lisp │ ├── cisreg.lisp │ ├── cistpl.lisp │ ├── clapack.lisp │ ├── clist.lisp │ ├── clock.lisp │ ├── clock_priv.lisp │ ├── clock_reply_server.lisp │ ├── clock_types.lisp │ ├── commpage.lisp │ ├── conf.lisp │ ├── config.lisp │ ├── cons.lisp │ ├── copy.lisp │ ├── cpu.lisp │ ├── cpu_capabilities.lisp │ ├── cpu_data.lisp │ ├── cpu_number.lisp │ ├── cpuid.lisp │ ├── cs.lisp │ ├── cs_types.lisp │ ├── cssm.lisp │ ├── cssmconfig.lisp │ ├── cssmerr.lisp │ ├── cssmtype.lisp │ ├── ddp.lisp │ ├── debug.lisp │ ├── default_pager_types.lisp │ ├── desc.lisp │ ├── devfs.lisp │ ├── device_port.lisp │ ├── device_tree.lisp │ ├── device_types.lisp │ ├── dir.lisp │ ├── dirent.lisp │ ├── disk.lisp │ ├── disk_label.lisp │ ├── disklabel.lisp │ ├── disktab.lisp │ ├── dkstat.lisp │ ├── dlil.lisp │ ├── dmap.lisp │ ├── domain.lisp │ ├── ep.lisp │ ├── errno.lisp │ ├── error.lisp │ ├── esp.lisp │ ├── etap.lisp │ ├── etap_events.lisp │ ├── ethernet.lisp │ ├── ev.lisp │ ├── ev_keymap.lisp │ ├── ev_private.lisp │ ├── event.lisp │ ├── event_status_driver.lisp │ ├── exc_server.lisp │ ├── exception.lisp │ ├── exception_types.lisp │ ├── extrude.lisp │ ├── fb_entries.lisp │ ├── fcntl.lisp │ ├── file.lisp │ ├── filedesc.lisp │ ├── filio.lisp │ ├── fp.lisp │ ├── fp_reg.lisp │ ├── fpu.lisp │ ├── frame.lisp │ ├── gl.lisp │ ├── glext.lisp │ ├── gliContext.lisp │ ├── gliDispatch.lisp │ ├── glm.lisp │ ├── glsmap.lisp │ ├── glsmapint.lisp │ ├── glu.lisp │ ├── gluContext.lisp │ ├── gluMacro.lisp │ ├── glutbitmap.lisp │ ├── glutstroke.lisp │ ├── gutil.lisp │ ├── hash_info.lisp │ ├── host.lisp │ ├── host_info.lisp │ ├── host_notify.lisp │ ├── host_priv.lisp │ ├── host_reboot.lisp │ ├── host_security.lisp │ ├── host_special_ports.lisp │ ├── hw_lock_types.lisp │ ├── icmp6.lisp │ ├── if_arp.lisp │ ├── if_dl.lisp │ ├── if_ether.lisp │ ├── if_llc.lisp │ ├── if_media.lisp │ ├── if_mib.lisp │ ├── if_types.lisp │ ├── if_var.lisp │ ├── igmp.lisp │ ├── in.lisp │ ├── in_pcb.lisp │ ├── in_systm.lisp │ ├── index │ │ ├── constants.idx │ │ ├── mactypes.idx │ │ ├── records.idx │ │ └── traps.idx │ ├── intersect.lisp │ ├── io.lisp │ ├── io_map_entries.lisp │ ├── ioccom.lisp │ ├── ioctl.lisp │ ├── ioctl_compat.lisp │ ├── iokitmig.lisp │ ├── iokitmig_c.lisp │ ├── ioss.lisp │ ├── ip.lisp │ ├── ip6_mroute.lisp │ ├── ip6protosw.lisp │ ├── ip_icmp.lisp │ ├── ip_mroute.lisp │ ├── ipc.lisp │ ├── ipc_info.lisp │ ├── ipc_mig.lisp │ ├── ipc_types.lisp │ ├── ipcomp.lisp │ ├── ipsec.lisp │ ├── k_compat.lisp │ ├── kalloc.lisp │ ├── kdebug.lisp │ ├── kern_control.lisp │ ├── kern_event.lisp │ ├── kern_return.lisp │ ├── kern_types.lisp │ ├── kernel.lisp │ ├── kext_net.lisp │ ├── keydb.lisp │ ├── keysock.lisp │ ├── kmod.lisp │ ├── ktrace.lisp │ ├── label_t.lisp │ ├── lap.lisp │ ├── ledger.lisp │ ├── libkern.lisp │ ├── limits.lisp │ ├── loadable_fs.lisp │ ├── loader.lisp │ ├── lock.lisp │ ├── lock_set.lisp │ ├── lockf.lisp │ ├── mach.lisp │ ├── mach_debug.lisp │ ├── mach_debug_types.lisp │ ├── mach_host.lisp │ ├── mach_i386_server.lisp │ ├── mach_i386_types.lisp │ ├── mach_interface.lisp │ ├── mach_param.lisp │ ├── mach_port.lisp │ ├── mach_syscalls.lisp │ ├── mach_time.lisp │ ├── mach_traps.lisp │ ├── mach_types.lisp │ ├── machine.lisp │ ├── machine_cpu.lisp │ ├── machine_routines.lisp │ ├── macro_help.lisp │ ├── malloc.lisp │ ├── mbuf.lisp │ ├── mcl-records.lisp │ ├── md5.lisp │ ├── mds_schema.lisp │ ├── memory_object_control.lisp │ ├── memory_object_default_server.lisp │ ├── memory_object_server.lisp │ ├── memory_object_types.lisp │ ├── message.lisp │ ├── mig_errors.lisp │ ├── mkext.lisp │ ├── mman.lisp │ ├── mount.lisp │ ├── mp.lisp │ ├── mp_events.lisp │ ├── mscdefines.lisp │ ├── msgbuf.lisp │ ├── mtio.lisp │ ├── musclecard.lisp │ ├── namei.lisp │ ├── nbp.lisp │ ├── nd6.lisp │ ├── ndr.lisp │ ├── ndrv.lisp │ ├── netport.lisp │ ├── nlist.lisp │ ├── notify.lisp │ ├── notify_server.lisp │ ├── oidsalg.lisp │ ├── oidsattr.lisp │ ├── oidsbase.lisp │ ├── oidscert.lisp │ ├── oidscrl.lisp │ ├── page_info.lisp │ ├── pap.lisp │ ├── param.lisp │ ├── paths.lisp │ ├── pfkeyv2.lisp │ ├── pim6.lisp │ ├── pmap.lisp │ ├── policy.lisp │ ├── port.lisp │ ├── powermac.lisp │ ├── proc.lisp │ ├── proc_reg.lisp │ ├── processor.lisp │ ├── processor_info.lisp │ ├── processor_set.lisp │ ├── protos.lisp │ ├── protosw.lisp │ ├── psl.lisp │ ├── ptrace.lisp │ ├── queue.lisp │ ├── quota.lisp │ ├── random.lisp │ ├── raw_ip6.lisp │ ├── reg.lisp │ ├── reg_help.lisp │ ├── resource.lisp │ ├── resourcevar.lisp │ ├── rot.lisp │ ├── route.lisp │ ├── routing_tables.lisp │ ├── rpc.lisp │ ├── rtmp.lisp │ ├── savearea.lisp │ ├── sched_prim.lisp │ ├── segment.lisp │ ├── sel.lisp │ ├── select.lisp │ ├── sem.lisp │ ├── semaphore.lisp │ ├── setjmp.lisp │ ├── shared_memory_server.lisp │ ├── shm.lisp │ ├── signal.lisp │ ├── simple_lock.lisp │ ├── socket.lisp │ ├── sockio.lisp │ ├── spl.lisp │ ├── ss.lisp │ ├── stab.lisp │ ├── stat.lisp │ ├── std_types.lisp │ ├── stdarg.lisp │ ├── stdint.lisp │ ├── stdlib.lisp │ ├── string.lisp │ ├── sync_lock.lisp │ ├── sync_policy.lisp │ ├── sys_domain.lisp │ ├── syscall_sw.lisp │ ├── sysctl.lisp │ ├── sysglue.lisp │ ├── syslimits.lisp │ ├── syslog.lisp │ ├── system.lisp │ ├── systm.lisp │ ├── table.lisp │ ├── task.lisp │ ├── task_info.lisp │ ├── task_ledger.lisp │ ├── task_policy.lisp │ ├── task_special_ports.lisp │ ├── tclPlatDecls.lisp │ ├── tcp.lisp │ ├── tcp_debug.lisp │ ├── tcp_fsm.lisp │ ├── tcp_seq.lisp │ ├── tcp_timer.lisp │ ├── tcpip.lisp │ ├── termios.lisp │ ├── thread.lisp │ ├── thread_act.lisp │ ├── thread_call.lisp │ ├── thread_info.lisp │ ├── thread_policy.lisp │ ├── thread_special_ports.lisp │ ├── thread_state.lisp │ ├── thread_status.lisp │ ├── thread_switch.lisp │ ├── time.lisp │ ├── time_out.lisp │ ├── time_value.lisp │ ├── timeb.lisp │ ├── times.lisp │ ├── tprintf.lisp │ ├── trace.lisp │ ├── tss.lisp │ ├── tty.lisp │ ├── ttychars.lisp │ ├── ttycom.lisp │ ├── ttydefaults.lisp │ ├── ttydev.lisp │ ├── tube.lisp │ ├── tube_gc.lisp │ ├── types.lisp │ ├── ucred.lisp │ ├── udp.lisp │ ├── udp6_var.lisp │ ├── uio.lisp │ ├── un.lisp │ ├── unistd.lisp │ ├── unix_traps.lisp │ ├── unpcb.lisp │ ├── upl.lisp │ ├── user.lisp │ ├── utfconv.lisp │ ├── utsname.lisp │ ├── vBLAS.lisp │ ├── vBasicOps.lisp │ ├── vBigNum.lisp │ ├── vDSP.lisp │ ├── vImage.lisp │ ├── vImage_Types.lisp │ ├── vadvise.lisp │ ├── vcmd.lisp │ ├── vecLib.lisp │ ├── vecLibTypes.lisp │ ├── vectorOps.lisp │ ├── version.lisp │ ├── vfp.lisp │ ├── vfs_journal.lisp │ ├── vfs_support.lisp │ ├── vm.lisp │ ├── vm_attributes.lisp │ ├── vm_behavior.lisp │ ├── vm_info.lisp │ ├── vm_inherit.lisp │ ├── vm_kern.lisp │ ├── vm_map.lisp │ ├── vm_pageout.lisp │ ├── vm_param.lisp │ ├── vm_prot.lisp │ ├── vm_region.lisp │ ├── vm_shared_memory_server.lisp │ ├── vm_statistics.lisp │ ├── vm_sync.lisp │ ├── vm_types.lisp │ ├── vmmeter.lisp │ ├── vmparam.lisp │ ├── vnioctl.lisp │ ├── vnode.lisp │ ├── vnode_if.lisp │ ├── vnode_pager.lisp │ ├── vstat.lisp │ ├── vvector.lisp │ ├── wait.lisp │ ├── wait_queue.lisp │ ├── winscard.lisp │ ├── wintypes.lisp │ ├── x509defs.lisp │ ├── zalloc.lisp │ ├── zip.lisp │ └── zone_info.lisp ├── Lap-ppc.doc ├── MCL Background.rsrc ├── MCL help map.lisp ├── OpenTransport.lisp ├── QuickDraw.lisp ├── ansi-make-load-form.lisp ├── asdf.lisp ├── color-dialog-items-OS8-5.lisp ├── cursors.rsrc ├── dialog-macros.lisp ├── extended-loop.lisp ├── font-color-palette.lisp ├── font-menus.lisp ├── fred-compatibility.lisp ├── fred-package-indicator.lisp ├── graphic-items.lisp ├── hide-listener-support.lisp ├── icon-dialog-item.lisp ├── io-buffer.lisp ├── lisp-package.lisp ├── lispequ.lisp ├── loop.lisp ├── mac-file-io.lisp ├── macptr-termination.lisp ├── make-help-map.lisp ├── mit-loop.lisp ├── nav-services.lisp ├── new-scheduler.lisp ├── pop-up-menu.lisp ├── resources.lisp ├── save-application-dialog.lisp ├── scroll-bar-dialog-items.lisp ├── scrollers.lisp └── scrolling-fred-view.lisp ├── pmcl-OSX-kernel ├── pmcl-kernel ├── pmcl ├── OSX │ ├── Makefile │ ├── area.h │ ├── asmutils.s │ ├── bits.c │ ├── bits.h │ ├── console.c │ ├── console.h │ ├── constants.h │ ├── constants.s │ ├── debugf.c │ ├── debugf.h │ ├── errors.h │ ├── errors.s │ ├── gc.c │ ├── gc.h │ ├── imports.s │ ├── lisp-debug.c │ ├── lisp-debug.h │ ├── lisp-errors.h │ ├── lisp-exceptions.c │ ├── lisp-exceptions.h │ ├── lisp.h │ ├── lisp.s │ ├── lisp_globals.h │ ├── lispdcmd.c │ ├── loader.c │ ├── loader.h │ ├── m4macros.m4 │ ├── macros.h │ ├── macros.s │ ├── mathtrap.c │ ├── memprotect.h │ ├── pef.c │ ├── pef.h │ ├── plbt.c │ ├── plprint.c │ ├── plsym.c │ ├── pmcl-kernel.c │ ├── ppcprint.c │ ├── qt.c │ ├── qt.h │ ├── qtppc.s │ ├── sp_call.s │ ├── spjump.s │ ├── subprims.s │ └── uuo.s ├── kernel-init.c ├── pmcl-kernel.make ├── pmcl-kernel.proj.exp ├── pmcl.plist ├── pmcl.r ├── runtime.s ├── siow_resources └── siow_resources.r ├── post-checkout.sh ├── pre-checkin.sh ├── rmcl-notes.pdf ├── sourceserver ├── @Read Me@ ├── SourceServer-subset.lisp ├── compare-buffers.lisp ├── compare.lisp ├── find-folder.lisp ├── initialize-projects.lisp ├── initialize-user.lisp ├── load-SourceServer.lisp ├── local-update.lisp ├── merge.lisp ├── mpw-command.lisp ├── mpw-project.lisp ├── plot-icon.lisp ├── projector-menus.lisp ├── projector-ui.lisp ├── projector-utilities.lisp ├── projector.lisp ├── read-only.lisp ├── source-server.lisp ├── sourceserver-command.lisp ├── sublaunch.lisp └── ui-utilities.lisp └── wood ├── @Release Notes 0.6 ├── @Release Notes 0.8 ├── @Release Notes 0.9 ├── @Release Notes 0.93 ├── @Release Notes 0.94 ├── @Release Notes 0.96 ├── @Release Notes 0.961 ├── @release notes 0.91 ├── block-io-mcl.lisp ├── btrees.lisp ├── disk-cache-accessors.lisp ├── disk-cache-inspector.lisp ├── disk-cache.lisp ├── disk-page-hash.lisp ├── example.lisp ├── load-wood.lisp ├── persistent-clos.lisp ├── persistent-heap.lisp ├── q.lisp ├── recovery.lisp ├── split-lfun.lisp ├── version-control.lisp ├── wood-gc.lisp ├── wood.doc ├── wood.lisp └── woodequ.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | /l1-cfsls/ 2 | /bincarbon/ 3 | *.cfsl 4 | /ppc-boot 5 | /ppc-boot.xSYM 6 | *.DS_Store 7 | -------------------------------------------------------------------------------- /.resource-forks/OpenTransportSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/OpenTransportSupport -------------------------------------------------------------------------------- /.resource-forks/PPCCL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/PPCCL -------------------------------------------------------------------------------- /.resource-forks/examples/contextual-menu-cursor.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/examples/contextual-menu-cursor.rsrc -------------------------------------------------------------------------------- /.resource-forks/library/AppleEvents/aete-for-mcl.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/library/AppleEvents/aete-for-mcl.rsrc -------------------------------------------------------------------------------- /.resource-forks/library/MCL Background.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/library/MCL Background.rsrc -------------------------------------------------------------------------------- /.resource-forks/library/cursors.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/library/cursors.rsrc -------------------------------------------------------------------------------- /.resource-forks/pmcl-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/pmcl-kernel -------------------------------------------------------------------------------- /.resource-forks/pmcl/siow_resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/.resource-forks/pmcl/siow_resources -------------------------------------------------------------------------------- /@Release Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/@Release Notes.txt -------------------------------------------------------------------------------- /Interface tools/ift-menus.Lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Interface tools/ift-menus.Lisp -------------------------------------------------------------------------------- /Interface tools/interface-tools.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*-Mode: LISP; Package: CCL -*- 2 | 3 | ;; Change History (most recent first): 4 | ;; 1 2/16/95 slh new file, for REQUIRE 5 | ;; (do not edit before this line!!) 6 | 7 | 8 | ;; interface-tools.lisp 9 | ;; Copyright 1995 Digitool, Inc. The 'tool rules! 10 | 11 | ;; 12 | ;; Load this file to load the Interface Toolkit. 13 | ;; Alternatively, execute (require "INTERFACE-TOOLS") 14 | ;; 15 | 16 | ;; Modification History 17 | ;; 18 | ;; 05/21/97 bill (provide "INTERFACE-TOOLS") 19 | ;; Change text above. 20 | ;; ----------- 4.1 21 | ;; 2/16/95 slh new file 22 | 23 | (in-package :ccl) 24 | 25 | (require 'make-ift) 26 | (funcall (find-symbol "LOAD-IFT" "INTERFACE-TOOLS")) 27 | 28 | (provide "INTERFACE-TOOLS") 29 | 30 | ; End of interface-tools.lisp 31 | -------------------------------------------------------------------------------- /Interface tools/item-defs.Lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Interface tools/item-defs.Lisp -------------------------------------------------------------------------------- /Level-0/.gitignore: -------------------------------------------------------------------------------- 1 | *.cfsl 2 | -------------------------------------------------------------------------------- /Level-0/ppc/.gitignore: -------------------------------------------------------------------------------- 1 | *.cfsl 2 | -------------------------------------------------------------------------------- /Level-0/ppc/ppc-io.lisp: -------------------------------------------------------------------------------- 1 | ; -*- Mode: Lisp; Package: CCL; -*- 2 | 3 | ; level-0:ppc:ppc-io.lisp - bogus-thing-p 4 | 5 | ;;;;;;;;;;;;;;;;;;;;;;; 6 | ;; 7 | ;; Modification History 8 | ;; 9 | ;; 01/29/96 bill bogus-thing-p moved to ppc-stack-groups 10 | ;; 11 | 12 | 13 | #+allow-in-package 14 | (in-package "CCL") 15 | 16 | ; not very smart yet 17 | #| 18 | ; Moved to "ccl:l1;ppc-stack-groups.lisp" 19 | (defun bogus-thing-p (x) 20 | (declare (ignore x)) 21 | nil) 22 | |# 23 | 24 | ; end 25 | -------------------------------------------------------------------------------- /MCL Help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/MCL Help -------------------------------------------------------------------------------- /Macintosh Common Lisp Ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Macintosh Common Lisp Ref.pdf -------------------------------------------------------------------------------- /Mods/mcl6.lisp: -------------------------------------------------------------------------------- 1 | ;; Build MCL 6 (in-package :ccl) (load "ccl:Patches;backtrace-fatality-patch.lisp") (dolist (file (directory (merge-pathnames "*.lisp" (loading-file-source-file)))) (unless (equal (full-pathname file) (full-pathname (loading-file-source-file))) (load file))) (require :fred-package-indicator "ccl:Library;fred-package-indicator") ; #p"home:Level-0;l0-init.lisp" (add-feature :mcl-6.0) ; #p"home:Level-1;l1-boot-1.lisp" (let ((*warn-if-redefine* nil) 2 | (*warn-if-redefine-kernel* NIL)) 3 | (defun lisp-implementation-version () 4 | "Version 6.0") ) ; end redefine (provide :mcl6) 5 | -------------------------------------------------------------------------------- /Mods/menubar-upgrade.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Mods/menubar-upgrade.lisp -------------------------------------------------------------------------------- /Mods/modern-mcl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Mods/modern-mcl.lisp -------------------------------------------------------------------------------- /Mods/no-quit-confirm.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*- Mode: Lisp; Package: COMMON-LISP-USER -*- ;;; A patch to ignore confirm dialog on quit (in-package :cl-user) #+MCL (let ((*warn-if-redefine* nil) (*warn-if-redefine-kernel* nil)) (defun ccl::do-quit-dialog () T) ) -------------------------------------------------------------------------------- /Mods/save-all-files.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*- Mode: Lisp; Package: COMMON-LISP-USER -*- ;;; A fallback util in case of emergencies (in-package :cl-user) #+MCL (defun save-all-files () (map-windows #'(lambda (win) (and (not (typep win 'ccl::listener)) (window-needs-saving-p win) (y-or-n-p "Save ~A" (window-title win)) (window-save win))))) -------------------------------------------------------------------------------- /Mods/use-databrowser.lisp: -------------------------------------------------------------------------------- 1 | ;; Updates the processes inspector and search-files dialog. 2 | ;; Consider loading on demand. 3 | 4 | (in-package :ccl) 5 | 6 | (load "ccl:examples;Databrowser;databrowser") 7 | (load "ccl:examples;Databrowser;autosize") 8 | (load "ccl:examples;Databrowser;modern-processes-inspector") 9 | (load "ccl:examples;Databrowser;search-files-browser") 10 | -------------------------------------------------------------------------------- /OpenTransportSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/OpenTransportSupport -------------------------------------------------------------------------------- /OpenTransportSupport ƒ/OpenTransportSupport.proj.exp: -------------------------------------------------------------------------------- 1 | # 12/07/96 gb don't export ot_proxy_notifier; do export OpenTransportSupportVersion # 11/16/96 gb export ot_proxy_notifier # Things that are typically linked into an OpenTransport client application: # InitOpenTransport # InitOpenTransportUtilities # CloseOpenTransport # OTRegisterAsClient # OTUnregisterAsClient # OTCreateSystemTask # OTCloseProvider # OTTransferProviderOwnership # OTWhoAmI # OTOpenEndpoint # OTAsyncOpenEndpoint # OTAsyncOpenMapper # OTOpenMapper # OTAllocMem OTFreeMem # OTAsyncOpenAppleTalkServices # OTOpenAppleTalkServices # OTOpenInternetServices # OTAsyncOpenInternetServices # OTAlloc # The async notifier function we use ot_stream_notifier # (pointer to) version # global. OpenTransportSupportVersion -------------------------------------------------------------------------------- /OpenTransportSupport ƒ/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/OpenTransportSupport ƒ/makefile -------------------------------------------------------------------------------- /PPCCL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/PPCCL -------------------------------------------------------------------------------- /Patches/20090420.lisp: -------------------------------------------------------------------------------- 1 | ;;; -*- Package: ccl; -*- 2 | 3 | (in-package :ccl) 4 | 5 | (let ((*warn-if-redefine* nil) 6 | (*warn-if-redefine-kernel* nil)) 7 | (defun directory-pathname-p (path) 8 | (let ((name (pathname-name path))(type (pathname-type path))) 9 | (and (or (null name) (eq name :unspecific) (%izerop (length name))) 10 | (or (null type) (eq type :unspecific))))) 11 | 12 | ) 13 | -------------------------------------------------------------------------------- /Patches/get-string-patch.lisp: -------------------------------------------------------------------------------- 1 | ;; ;; Terje Norderhaug ;; string-resource-patch.lisp for RMCL 5.2.1 (and back to MCL 5.1). ;; ;; Resolves issue #30: ;; http://code.google.com/p/mcl/issues/detail?id=30 (in-package :ccl) (let ((*warn-if-redefine* nil) (*warn-if-redefine-kernel* nil)) (defun get-string (name-or-number &optional used-file-only? dont-release) (let ((str (get-resource "STR " name-or-number used-file-only?))) (when str (unwind-protect (%get-string-from-handle str) (unless dont-release (#_ReleaseResource str)))))) ) ; end redefine -------------------------------------------------------------------------------- /Patches/stack-inspector-click-patch.lisp: -------------------------------------------------------------------------------- 1 | ;; Terje Nordehaug ;; July 2009 ;; No copyright, warranties nor rights reseved. ;; duplicate install-selection in RMCL and likely also MCL 5.2 (in-package :inspector) (let ((*WARN-IF-REDEFINE-KERNEL* nil) (*warn-if-redefine* nil)) (defmethod view-click-event-handler ((view stack-inspector-view) where) (declare (ignore where)) (call-next-method) (unless (double-click-p) (install-selection view))) ) -------------------------------------------------------------------------------- /Patches/stream-clear-output-patch.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*-Mode: LISP; Package: CCL -*- ;;; ;;; Fixes an MCL flaw that may cause endless loops after calling stream-clear-output on buffered streams. ;;; ;;; Terje Norderhaug ;;; ;;; This software is made available AS IS, and no warranty is made about the software or its performance. (in-package :ccl) (defer-patch T :module "IO-BUFFER") (defmethod stream-clear-output ((stream buffered-output-stream-mixin)) ;; was buffered-character-... (using-stream-io-buffer (io-buffer stream :speedy t) (let ((outsize (io-buffer-outsize io-buffer))) (decf (io-buffer-bytes-written io-buffer) (io-buffer-outpos io-buffer)) (setf (io-buffer-outcount io-buffer) (or outsize (io-buffer-outbuf-size io-buffer) #+ignore 0))) (%setf-macptr (io-buffer-outptr io-buffer) (io-buffer-outbuf io-buffer)))) -------------------------------------------------------------------------------- /Patches/~define-patches.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/Patches/~define-patches.lisp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rosetta-ized Macintosh Common Lisp 2 | 3 | (imported from 4 | https://code.google.com/archive/p/mcl/source/default/source) 5 | 6 | ## Supporting platforms 7 | 8 | - Intel-based Mac OS X 10.5 and 10.6 9 | 10 | ## Installation 11 | 12 | see https://github.com/binghe/mcl/wiki (Updated November 22, 2018) 13 | 14 | ## For MCL Developers 15 | 16 | 0. A PowerPC/Mac seems required for full rebuild of MCL source code 17 | 1. It's recommended that all new changes were done in form of patches; 18 | 2. All patches should be put in the "rmcl/Patches" directory with 19 | meaningful filenames. 20 | 3. Before sending PRs, execute `pre-checkin.sh`. 21 | 22 | ## Other useful resources 23 | - mcl-ui-lib: https://github.com/aalpern/mcl-ui-lib 24 | - mcl-project-manager: https://github.com/aalpern/mcl-project-manager 25 | -------------------------------------------------------------------------------- /XDump/.gitignore: -------------------------------------------------------------------------------- 1 | *.cfsl 2 | -------------------------------------------------------------------------------- /XDump/level-1.lisp: -------------------------------------------------------------------------------- 1 | ; level-1.lisp 2 | ; 3 | ; This version of level-1.lisp loads the pfsl libraries 4 | 5 | (%fasload ":level-1.lib") 6 | 7 | (let ((*warn-if-redefine* nil)) 8 | (load "ccl:ccl;compiler.lib") 9 | (load "ccl:ccl;lib.lib")) 10 | -------------------------------------------------------------------------------- /XDump/no-record-source-file.lisp: -------------------------------------------------------------------------------- 1 | ; no-record-source-file.lisp 2 | ; 3 | ; Turn off *record-source-file* 4 | 5 | (setq *record-source-file* nil) 6 | -------------------------------------------------------------------------------- /XDump/pef-file.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/XDump/pef-file.lisp -------------------------------------------------------------------------------- /compiler/nx-base-app.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*-Mode: LISP; Package: CCL -*- 2 | 3 | ;; $Log: nx-base-app.lisp,v $ 4 | ;; Revision 1.2 2002/11/18 05:12:33 gtbyers 5 | ;; CVS mod history marker 6 | ;; 7 | ;; Change History (most recent first): 8 | ;; 2 7/18/96 akh require nx-basic 9 | ;; (do not edit before this line!!) 10 | 11 | 12 | ; l1-base-app.lisp 13 | ; Copyright 1995 Digitool, Inc. The 'tool rules! 14 | 15 | ; Loaded instead of compiler for standalone applications. 16 | 17 | (in-package :ccl) 18 | 19 | ;(require 'numbers) 20 | (require 'sort) 21 | (require 'hash) 22 | 23 | ; this file is now equiv to nx-basic 24 | (%include "ccl:compiler;nx-basic.lisp") ; get cons-var, augment-environment 25 | ; nx-basic includes lambda-list 26 | 27 | ; End of nx-base-app.lisp 28 | -------------------------------------------------------------------------------- /examples/Databrowser/search-files-browser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/Databrowser/search-files-browser.lisp -------------------------------------------------------------------------------- /examples/appearance-globals.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-globals.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/appearance-activity-mixin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/appearance-activity-mixin.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/appearance-editable-text.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/appearance-editable-text.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/appearance-examples.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/appearance-examples.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/appearance-manager.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/appearance-manager.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/appearance-utils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/appearance-utils.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/bevel-button-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/bevel-button-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/chasing-arrows-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/chasing-arrows-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/clock-dialog-items.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/clock-dialog-items.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/little-arrows-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/little-arrows-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/multi-pane-view.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/multi-pane-view.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/new-control-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/new-control-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/placard-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/placard-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/progress-bar-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/progress-bar-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/separator-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/separator-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/slider-dialog-item.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/slider-dialog-item.lisp -------------------------------------------------------------------------------- /examples/appearance-manager-Folder/tab-bar-view.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/appearance-manager-Folder/tab-bar-view.lisp -------------------------------------------------------------------------------- /examples/applescript-tools.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/applescript-tools.lisp -------------------------------------------------------------------------------- /examples/assorted-fred-commands.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/assorted-fred-commands.lisp -------------------------------------------------------------------------------- /examples/class-browser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/class-browser.lisp -------------------------------------------------------------------------------- /examples/contextual-menu-cursor.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/contextual-menu-cursor.rsrc -------------------------------------------------------------------------------- /examples/contextual-menu-mixin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/contextual-menu-mixin.lisp -------------------------------------------------------------------------------- /examples/drag-and-drop-examples/netscape-info.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/drag-and-drop-examples/netscape-info.lisp -------------------------------------------------------------------------------- /examples/drag-and-drop-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/drag-and-drop-test.lisp -------------------------------------------------------------------------------- /examples/drag-and-drop.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/drag-and-drop.lisp -------------------------------------------------------------------------------- /examples/font-search.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/font-search.lisp -------------------------------------------------------------------------------- /examples/iconref.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/iconref.lisp -------------------------------------------------------------------------------- /examples/mark-menu.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/mark-menu.lisp -------------------------------------------------------------------------------- /examples/platinum-pop-up-menus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/platinum-pop-up-menus.lisp -------------------------------------------------------------------------------- /examples/processes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/processes.lisp -------------------------------------------------------------------------------- /examples/progress-indicator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/progress-indicator.lisp -------------------------------------------------------------------------------- /examples/standard-sheet-dialog.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/standard-sheet-dialog.lisp -------------------------------------------------------------------------------- /examples/twist-down.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/twist-down.lisp -------------------------------------------------------------------------------- /examples/view-example.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/examples/view-example.lisp -------------------------------------------------------------------------------- /gather-distribution.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/gather-distribution.lisp -------------------------------------------------------------------------------- /init.lisp: -------------------------------------------------------------------------------- 1 | (in-package :cl-user) ;; better editor font in Mac OS X 10.6 (setq ccl:*fred-default-font-spec* '("Menlo Regular" 12 :plain)) (setq ccl:*mini-buffer-font-spec* '("Menlo Regular" 10)) (defun recompile-asdf () (compile-file #4P"CCL:library;asdf.lisp")) #+ignore ; enable once ASDF is compiled (require :asdf) #+ignore ; sample registry (dolist (i '(#P"Macintosh HD:Users:binghe:Lisp:usocket:" #P"Macintosh HD:Users:binghe:Lisp:OSCAR-Lisp:")) (pushnew i asdf:*central-registry* :test #'equal)) -------------------------------------------------------------------------------- /level-1/l1-aprims.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-aprims.lisp -------------------------------------------------------------------------------- /level-1/l1-ed-lds.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-ed-lds.lisp -------------------------------------------------------------------------------- /level-1/l1-edcmd.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-edcmd.lisp -------------------------------------------------------------------------------- /level-1/l1-edfrec.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-edfrec.lisp -------------------------------------------------------------------------------- /level-1/l1-edwin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-edwin.lisp -------------------------------------------------------------------------------- /level-1/l1-files.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-files.lisp -------------------------------------------------------------------------------- /level-1/l1-initmenus-lds.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-initmenus-lds.lisp -------------------------------------------------------------------------------- /level-1/l1-initmenus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-initmenus.lisp -------------------------------------------------------------------------------- /level-1/l1-menus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-menus.lisp -------------------------------------------------------------------------------- /level-1/l1-processes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-processes.lisp -------------------------------------------------------------------------------- /level-1/l1-readloop-lds.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-readloop-lds.lisp -------------------------------------------------------------------------------- /level-1/l1-streams.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-streams.lisp -------------------------------------------------------------------------------- /level-1/l1-unicode-to-mac.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-unicode-to-mac.lisp -------------------------------------------------------------------------------- /level-1/l1-windows.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/l1-windows.lisp -------------------------------------------------------------------------------- /level-1/new-fred-window.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/new-fred-window.lisp -------------------------------------------------------------------------------- /level-1/ppc/l1-io.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/level-1/ppc/l1-io.lisp -------------------------------------------------------------------------------- /lib/ccl-menus-lds.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/ccl-menus-lds.lisp -------------------------------------------------------------------------------- /lib/chars.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/chars.lisp -------------------------------------------------------------------------------- /lib/color.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/color.lisp -------------------------------------------------------------------------------- /lib/deftrap.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/deftrap.lisp -------------------------------------------------------------------------------- /lib/dialogs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/dialogs.lisp -------------------------------------------------------------------------------- /lib/distrib-inits.lisp: -------------------------------------------------------------------------------- 1 | ; -*- Mode:Lisp; Package:CCL; -*- 2 | 3 | ;; distrib-inits.lisp 4 | ;; Copyright 1990-1994, Apple Computer, Inc. 5 | ;; Copyright 1995 Digitool, Inc. 6 | 7 | 8 | ; Things that are in the development environment that need to be 9 | ; added to the distribution environment. 10 | 11 | ; This needs to be compiled after everything is loaded. 12 | 13 | (in-package :ccl) 14 | 15 | ; *def-accessor-types* is used by the inspector to name slots in uvectors 16 | (dolist (cell '#.*def-accessor-types*) 17 | (add-accessor-types (list (car cell)) (cdr cell))) 18 | -------------------------------------------------------------------------------- /lib/edit-callers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/edit-callers.lisp -------------------------------------------------------------------------------- /lib/fred-misc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/fred-misc.lisp -------------------------------------------------------------------------------- /lib/init-ccl.lisp: -------------------------------------------------------------------------------- 1 | ; init-ccl.lisp 2 | ; Copyright 1989-1994 Apple Computer, Inc. 3 | ; Copyright 1995 Digitool, Inc. 4 | 5 | ;(setq *save-local-symbols* t) 6 | 7 | #-ppc-target 8 | (progn 9 | (format t "~&Initializing Macintosh Common Lisp ...") 10 | (setq *load-verbose* t) 11 | (setq *warn-if-redefine* nil) 12 | 13 | (require 'compile-ccl) 14 | (load-ccl) 15 | 16 | (setq *warn-if-redefine* t) 17 | (setq *load-verbose* nil) 18 | (format t "~&Macintosh Common Lisp Loaded") 19 | 20 | ;(save-application "ccl;CCL") 21 | ) ; end of #-ppc-target progn 22 | 23 | #+ppc-target 24 | (require'ppc-init-ccl) 25 | 26 | ; End of init-ccl.lisp 27 | -------------------------------------------------------------------------------- /lib/inspector-objects.lisp: -------------------------------------------------------------------------------- 1 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 2 | ;; inspector-objects.lisp 3 | ;; 4 | ;; 5 | ;; Copyright 1990-1994 Apple Computer, Inc. 6 | ;; Copyright 1995 Digitool, Inc. 7 | 8 | ;; 9 | ;; Load the more changeable part of the inspector 10 | ;; 11 | 12 | #+PPC-target 13 | (include "ccl:inspector;ppc;new-backtrace.lisp") 14 | #-ppc-target 15 | (include "ccl:inspector;68K;new-backtrace.lisp") 16 | 17 | (include "ccl:inspector;inspector-objects.lisp") 18 | -------------------------------------------------------------------------------- /lib/inspector.lisp: -------------------------------------------------------------------------------- 1 | ; -*- Mode:Lisp; Package:CCL; -*- 2 | 3 | ;; Change History (most recent first): 4 | ;; 2 5/4/95 akh put it back 5 | ;; (do not edit before this line!!) 6 | 7 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 8 | ;; inspector.lisp 9 | ;; 10 | ;; 11 | ;; Copyright 1989-1994 Apple Computer, Inc. 12 | ;; Copyright 1995 Digitool, Inc. 13 | ;; 14 | ;; Load the relatively stable part of the inspector 15 | ;; 16 | 17 | (in-package :ccl) 18 | 19 | ;(def-logical-directory "inspector" "library;Inspector Folder:") 20 | ;(include "ccl:library;scroll-bar-dialog-items.lisp") 21 | ;(include "ccl:library;pop-up-menu.lisp") 22 | (include "ccl:inspector;inspector-package.lisp") 23 | (include "ccl:inspector;inspector-class.lisp") 24 | (include "ccl:inspector;inspector-window.lisp") 25 | -------------------------------------------------------------------------------- /lib/mcl-extensions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/mcl-extensions.lisp -------------------------------------------------------------------------------- /lib/misc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/misc.lisp -------------------------------------------------------------------------------- /lib/pathnames.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/pathnames.lisp -------------------------------------------------------------------------------- /lib/search-files.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/search-files.lisp -------------------------------------------------------------------------------- /lib/step-window.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/lib/step-window.lisp -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | *.cfsl 2 | -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Core 1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Core 1 -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Delete Paragraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Delete Paragraphs -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/First Middle Last Character: -------------------------------------------------------------------------------- 1 | -- Get the first, middle and last character. -- All of these should have "159" as result. property document_content : "123456789" tell application "MCL 4.2" make new document paste document_content tell line 1 get first character & middle character & last character end tell tell first paragraph get first character & middle character & last character end tell tell (characters 1 thru 9) get first character & middle character & last character end tell tell (characters 1 thru -1) get first character & middle character & last character end tell tell first word get first character & middle character & last character end tell end tell -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Insertion Points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Insertion Points -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Make Simple Document: -------------------------------------------------------------------------------- 1 | tell application "MCL 4.2" make new document set contents of window 1 to "Hello Script!!" delete the last character of word 2 contents of window 1 end tell -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Mark Up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Mark Up -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Selections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Selections -------------------------------------------------------------------------------- /library/AppleEvents/Scripts/Words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/Scripts/Words -------------------------------------------------------------------------------- /library/AppleEvents/ae-core-suite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/ae-core-suite.lisp -------------------------------------------------------------------------------- /library/AppleEvents/ae-misc-suite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/ae-misc-suite.lisp -------------------------------------------------------------------------------- /library/AppleEvents/ae-recordable.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/ae-recordable.lisp -------------------------------------------------------------------------------- /library/AppleEvents/ae-resolve-objects.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/ae-resolve-objects.lisp -------------------------------------------------------------------------------- /library/AppleEvents/ae-suites-sysdecl.lisp: -------------------------------------------------------------------------------- 1 | (in-package :ccl) (pushnew (make-pathname :directory (pathname-directory (loading-file-source-file))) *module-search-path* :test #'equalp) (require :ae-resolve-objects) (require :ae-core-suite) (require :ae-misc-suite) (require :defappleevents) (require :ae-recordable) (require :ae-text-suite) (defmethod application-resource-file ((app application)) (merge-pathnames "aete-for-mcl.rsrc" (loading-file-source-file))) -------------------------------------------------------------------------------- /library/AppleEvents/ae-suites.asd: -------------------------------------------------------------------------------- 1 | (in-package :ccl) (asdf:defsystem defappleevents :author ("Ray Pelletier") :description "Define Appleevents" :long-description "High level access to appleevent records" :components ((:file "defappleevents"))) (asdf:defsystem ae-suites :author ("Terje Norderhaug") :description "AppleEvent Suites" :long-description "Makes MCL and its applications scriptable and recordable" :license "LLGPL" :serial t :components ((:file "ae-resolve-objects") (:file "ae-core-suite") (:file "ae-misc-suite") (:file "ae-recordable") (:file "ae-text-suite") (:file "ae-suites-sysdecl")) :depends-on (defappleevents)) -------------------------------------------------------------------------------- /library/AppleEvents/ae-text-suite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/ae-text-suite.lisp -------------------------------------------------------------------------------- /library/AppleEvents/aete-for-mcl.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/AppleEvents/aete-for-mcl.rsrc -------------------------------------------------------------------------------- /library/Inspector Folder/inspector-objects.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Inspector Folder/inspector-objects.lisp -------------------------------------------------------------------------------- /library/Inspector Folder/inspector-window.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Inspector Folder/inspector-window.lisp -------------------------------------------------------------------------------- /library/Inspector Folder/ppc/new-backtrace.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Inspector Folder/ppc/new-backtrace.lisp -------------------------------------------------------------------------------- /library/Interfaces/ABImageLoading.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:ABImageLoading.h" 3 | ; at Sunday July 2,2006 7:23:06 pm. 4 | ; 5 | ; ABImageLoading.h 6 | ; AddressBook 7 | ; 8 | ; Copyright (c) 2002-2003 Apple Computer. All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @PROTOCOL 13 | ABImageClient 14 | - (void)consumeImageData:(NSData *)data forTag:(int)tag; 15 | 16 | |# 17 | #| @INTERFACE 18 | ABPerson (ABPersonImageAdditions) 19 | 20 | - (BOOL)setImageData:(NSData *)data; 21 | 22 | - (NSData *)imageData; 23 | 24 | - (int)beginLoadingImageDataForClient:(id)client; 25 | 26 | + (void)cancelLoadingImageDataForTag:(int)tag; 27 | 28 | |# 29 | 30 | (provide-interface "ABImageLoading") -------------------------------------------------------------------------------- /library/Interfaces/AE.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AE.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEDataModel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEDataModel.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEHelpers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEHelpers.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEInteraction.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEInteraction.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEMach.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEMach.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEObjects.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEObjects.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEPackObject.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEPackObject.lisp -------------------------------------------------------------------------------- /library/Interfaces/AERegistry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AERegistry.lisp -------------------------------------------------------------------------------- /library/Interfaces/AEUserTermTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AEUserTermTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/AIFF.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AIFF.lisp -------------------------------------------------------------------------------- /library/Interfaces/ASDebugging.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ASDebugging.lisp -------------------------------------------------------------------------------- /library/Interfaces/ASKPluginObject.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:ASKPluginObject.h" 3 | ; at Sunday July 2,2006 7:26:39 pm. 4 | ; ASKPluginObject.h 5 | ; Copyright 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | ASKPluginObject : NSObject 11 | 12 | + (void)pluginDidLoad:(NSBundle *)bundle; 13 | 14 | |# 15 | 16 | (provide-interface "ASKPluginObject") -------------------------------------------------------------------------------- /library/Interfaces/ASRegistry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ASRegistry.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATS.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATS.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSFont.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSFont.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSLayoutTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSLayoutTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicode.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicode.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeDirectAccess.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeDirectAccess.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeDrawing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeDrawing.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeFlattening.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeFlattening.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeFonts.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeFonts.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeGlyphs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeGlyphs.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeObjects.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeObjects.lisp -------------------------------------------------------------------------------- /library/Interfaces/ATSUnicodeTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ATSUnicodeTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/AUComponent.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AUComponent.lisp -------------------------------------------------------------------------------- /library/Interfaces/AUNTComponent.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AUNTComponent.lisp -------------------------------------------------------------------------------- /library/Interfaces/AVLTree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AVLTree.lisp -------------------------------------------------------------------------------- /library/Interfaces/Accessibility.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:Accessibility.h" 3 | ; at Sunday July 2,2006 7:24:40 pm. 4 | ; 5 | ; * Accessibility.h 6 | ; * 7 | ; * Copyright (c) 2002 Apple Computer, Inc. All rights reserved. 8 | ; * 9 | ; 10 | ; #ifndef __ACCESSIBILITY__ 11 | ; #define __ACCESSIBILITY__ 12 | 13 | (require-interface "HIServices/AXError") 14 | 15 | (require-interface "HIServices/AXConstants") 16 | 17 | (require-interface "HIServices/AXUIElement") 18 | 19 | (require-interface "HIServices/AXValue") 20 | 21 | ; #endif // __ACCESSIBILITY__ 22 | 23 | 24 | (provide-interface "Accessibility") -------------------------------------------------------------------------------- /library/Interfaces/AddressBookUI.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:AddressBookUI.h" 3 | ; at Sunday July 2,2006 7:25:30 pm. 4 | ; 5 | ; AddressBookUI.h 6 | ; AddressBook Framework 7 | ; 8 | ; Copyright (c) 2002-2003 Apple Computer. All rights reserved. 9 | ; 10 | 11 | ; #if __OBJC__ 12 | #| 13 | ; #if defined(__cplusplus) 14 | #| 15 | extern "C" { 16 | #endif 17 | |# 18 | 19 | ; #import 20 | 21 | ; #import 22 | 23 | ; #if defined(__cplusplus) 24 | #| 25 | } 26 | #endif 27 | |# 28 | |# 29 | 30 | ; #else 31 | 32 | (require-interface "AddressBook/ABPeoplePickerC") 33 | 34 | (require-interface "AddressBook/ABActionsC") 35 | 36 | ; #endif 37 | 38 | 39 | (provide-interface "AddressBookUI") -------------------------------------------------------------------------------- /library/Interfaces/Aliases.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Aliases.lisp -------------------------------------------------------------------------------- /library/Interfaces/AppKitScripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:AppKitScripting.h" 3 | ; at Sunday July 2,2006 7:25:39 pm. 4 | ; 5 | ; AppKitScripting.h 6 | ; AppKitScripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the AppKitScripting framework has been moved to the AppKit framework. 11 | 12 | ; #import 13 | ; There are some compatibility headers in the vestigial Scripting framework though. 14 | 15 | ; #import 16 | 17 | (provide-interface "AppKitScripting") -------------------------------------------------------------------------------- /library/Interfaces/Appearance.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Appearance.lisp -------------------------------------------------------------------------------- /library/Interfaces/AppleDiskPartitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AppleDiskPartitions.lisp -------------------------------------------------------------------------------- /library/Interfaces/AppleEvents.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AppleEvents.lisp -------------------------------------------------------------------------------- /library/Interfaces/AppleHelp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AppleHelp.lisp -------------------------------------------------------------------------------- /library/Interfaces/AppleScript.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AppleScript.lisp -------------------------------------------------------------------------------- /library/Interfaces/ApplicationServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ApplicationServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/AudioOutputUnit.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AudioOutputUnit.lisp -------------------------------------------------------------------------------- /library/Interfaces/AudioUnitCarbonView.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/AudioUnitCarbonView.lisp -------------------------------------------------------------------------------- /library/Interfaces/AvailabilityMacros.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:AvailabilityMacros.h" 3 | ; at Sunday July 2,2006 7:22:44 pm. 4 | ; dummy file 5 | 6 | (provide-interface "AvailabilityMacros") -------------------------------------------------------------------------------- /library/Interfaces/Bluetooth.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Bluetooth.lisp -------------------------------------------------------------------------------- /library/Interfaces/BluetoothAssignedNumbers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/BluetoothAssignedNumbers.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFFTPStream.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFFTPStream.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFHTTPMessage.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFHTTPMessage.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFHTTPStream.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFHTTPStream.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFHost.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFHost.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFNetServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFNetServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFNetwork.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFNetwork.lisp -------------------------------------------------------------------------------- /library/Interfaces/CFSocketStream.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CFSocketStream.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMApplication.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMApplication.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMCalibrator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMCalibrator.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMDeviceIntegration.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMDeviceIntegration.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMICCProfile.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMICCProfile.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMMComponent.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMMComponent.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMScriptingPlugin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMScriptingPlugin.lisp -------------------------------------------------------------------------------- /library/Interfaces/CMTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CMTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/Carbon.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Carbon.lisp -------------------------------------------------------------------------------- /library/Interfaces/CarbonCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CarbonCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/CarbonEvents.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CarbonEvents.lisp -------------------------------------------------------------------------------- /library/Interfaces/CarbonEventsCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CarbonEventsCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/CarbonSound.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CarbonSound.lisp -------------------------------------------------------------------------------- /library/Interfaces/Cocoa.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:Cocoa.h" 3 | ; at Sunday July 2,2006 7:27:23 pm. 4 | ; 5 | ; Cocoa.h 6 | ; Cocoa Framework 7 | ; Copyright (c) 2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; This file should be included by all Cocoa application source files for easy building. Using this file is preferred over importing individual files because it will use a precompiled version. 11 | ; 12 | ; Tools with no UI and no AppKit dependencies may prefer to include just . 13 | ; 14 | 15 | ; #import 16 | 17 | ; #import 18 | 19 | (provide-interface "Cocoa") -------------------------------------------------------------------------------- /library/Interfaces/CodeFragments.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CodeFragments.lisp -------------------------------------------------------------------------------- /library/Interfaces/Collections.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Collections.lisp -------------------------------------------------------------------------------- /library/Interfaces/ColorPicker.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ColorPicker.lisp -------------------------------------------------------------------------------- /library/Interfaces/ColorSync.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ColorSync.lisp -------------------------------------------------------------------------------- /library/Interfaces/CommonPanels.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CommonPanels.lisp -------------------------------------------------------------------------------- /library/Interfaces/Components.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Components.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/Components.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Components.lisp -------------------------------------------------------------------------------- /library/Interfaces/ConditionalMacros.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ConditionalMacros.lisp -------------------------------------------------------------------------------- /library/Interfaces/ControlDefinitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ControlDefinitions.lisp -------------------------------------------------------------------------------- /library/Interfaces/Controls.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Controls.lisp -------------------------------------------------------------------------------- /library/Interfaces/CoreAudioTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CoreAudioTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/CoreMIDIServer.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:CoreMIDIServer.h" 3 | ; at Sunday July 2,2006 7:27:24 pm. 4 | ; 5 | ; File: CoreMIDIServer/CoreMIDIServer.h 6 | ; 7 | ; Contains: Umbrella header for the CoreMIDIServer framework. 8 | ; 9 | ; Version: Technology: Mac OS X 10 | ; Release: Mac OS X 11 | ; 12 | ; Copyright: (c) 2000-2001 by Apple Computer, Inc., all rights reserved. 13 | ; 14 | ; Bugs?: For bug reports, consult the following page on 15 | ; the World Wide Web: 16 | ; 17 | ; http://developer.apple.com/bugreporter/ 18 | ; 19 | ; 20 | ; #ifndef __CoreMIDIServer_h__ 21 | ; #define __CoreMIDIServer_h__ 22 | 23 | (require-interface "CoreMIDIServer/MIDIDriver") 24 | 25 | ; #endif 26 | 27 | 28 | (provide-interface "CoreMIDIServer") -------------------------------------------------------------------------------- /library/Interfaces/CoreServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/CoreServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/DRBurnSession.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DRBurnSession.lisp -------------------------------------------------------------------------------- /library/Interfaces/DREraseSession.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DREraseSession.lisp -------------------------------------------------------------------------------- /library/Interfaces/DVFamily.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DVFamily.lisp -------------------------------------------------------------------------------- /library/Interfaces/DateTimeUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DateTimeUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/Debugging.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Debugging.lisp -------------------------------------------------------------------------------- /library/Interfaces/DeviceControl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DeviceControl.lisp -------------------------------------------------------------------------------- /library/Interfaces/Devices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Devices.lisp -------------------------------------------------------------------------------- /library/Interfaces/Dialogs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Dialogs.lisp -------------------------------------------------------------------------------- /library/Interfaces/Dictionary.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Dictionary.lisp -------------------------------------------------------------------------------- /library/Interfaces/DigitalHubRegistry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DigitalHubRegistry.lisp -------------------------------------------------------------------------------- /library/Interfaces/DirServicesTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DirServicesTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/Displays.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Displays.lisp -------------------------------------------------------------------------------- /library/Interfaces/Drag.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Drag.lisp -------------------------------------------------------------------------------- /library/Interfaces/DrawSprocket.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DrawSprocket.lisp -------------------------------------------------------------------------------- /library/Interfaces/DriverServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DriverServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/DriverSynchronization.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/DriverSynchronization.lisp -------------------------------------------------------------------------------- /library/Interfaces/Endian.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Endian.lisp -------------------------------------------------------------------------------- /library/Interfaces/Events.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Events.lisp -------------------------------------------------------------------------------- /library/Interfaces/Files.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Files.lisp -------------------------------------------------------------------------------- /library/Interfaces/FindByContent.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/FindByContent.lisp -------------------------------------------------------------------------------- /library/Interfaces/Finder.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Finder.lisp -------------------------------------------------------------------------------- /library/Interfaces/FinderRegistry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/FinderRegistry.lisp -------------------------------------------------------------------------------- /library/Interfaces/FixMath.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/FixMath.lisp -------------------------------------------------------------------------------- /library/Interfaces/Folders.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Folders.lisp -------------------------------------------------------------------------------- /library/Interfaces/FontPanel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/FontPanel.lisp -------------------------------------------------------------------------------- /library/Interfaces/FontSync.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/FontSync.lisp -------------------------------------------------------------------------------- /library/Interfaces/Fonts.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Fonts.lisp -------------------------------------------------------------------------------- /library/Interfaces/ForceFeedback.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ForceFeedback.lisp -------------------------------------------------------------------------------- /library/Interfaces/ForceFeedbackConstants.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ForceFeedbackConstants.lisp -------------------------------------------------------------------------------- /library/Interfaces/Gestalt.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Gestalt.lisp -------------------------------------------------------------------------------- /library/Interfaces/HFSVolumes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HFSVolumes.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIObject.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIObject.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIShape.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIShape.lisp -------------------------------------------------------------------------------- /library/Interfaces/HITextUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HITextUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/HITheme.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HITheme.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIToolbar.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIToolbar.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIToolbox.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIToolbox.lisp -------------------------------------------------------------------------------- /library/Interfaces/HIView.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HIView.lisp -------------------------------------------------------------------------------- /library/Interfaces/HTMLRendering.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/HTMLRendering.lisp -------------------------------------------------------------------------------- /library/Interfaces/Help.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Help.lisp -------------------------------------------------------------------------------- /library/Interfaces/IBCarbonRuntime.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IBCarbonRuntime.lisp -------------------------------------------------------------------------------- /library/Interfaces/ICAApplication.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ICAApplication.lisp -------------------------------------------------------------------------------- /library/Interfaces/ICACamera.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ICACamera.lisp -------------------------------------------------------------------------------- /library/Interfaces/ICADevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ICADevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/ICD_CameraCalls.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ICD_CameraCalls.lisp -------------------------------------------------------------------------------- /library/Interfaces/ICD_ScannerCalls.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ICD_ScannerCalls.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOATATypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOATATypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBlockStorageServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBlockStorageServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothDeviceSelectorController.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothDeviceSelectorController.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothHCIController.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothHCIController.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothHCIRequest.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothHCIRequest.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothL2CAPChannel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothL2CAPChannel.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothOBEXSession.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothOBEXSession.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothObject.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:IOBluetoothObject.h" 3 | ; at Sunday July 2,2006 7:28:33 pm. 4 | ; 5 | ; IOBluetoothObject.h 6 | ; IOBluetoothFamily 7 | ; 8 | ; Created by Eric Brown on Tue Jun 11 2002. 9 | ; Copyright (c) 2002 __MyCompanyName__. All rights reserved. 10 | ; 11 | 12 | ; #import 13 | 14 | ; #import 15 | #| @INTERFACE 16 | IOBluetoothObject : NSObject 17 | { 18 | io_service_t mIOService; 19 | io_connect_t mIOConnection; 20 | 21 | io_iterator_t mIONotification; 22 | } 23 | 24 | |# 25 | ; #define kBluetoothTargetDoesNotRespondToCallbackExceptionName @"BluetoothTargetDoesNotRespondToCallbackException" 26 | 27 | (provide-interface "IOBluetoothObject") -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothPairingController.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothPairingController.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothRFCOMMChannel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothRFCOMMChannel.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothSDPDataElement.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothSDPDataElement.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothSDPServiceAttribute.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothSDPServiceAttribute.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothSDPServiceRecord.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothSDPServiceRecord.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothSDPUUID.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothSDPUUID.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothServiceBrowserController.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothServiceBrowserController.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothUIUserLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothUIUserLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothUserLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothUserLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothUserNotification.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:IOBluetoothUserNotification.h" 3 | ; at Sunday July 2,2006 7:28:35 pm. 4 | 5 | ; #import 6 | ; ! 7 | ; @class IOBluetoothUserNotification 8 | ; @abstract Represents a registered notification. 9 | ; @discussion When registering for various notifications in the system, an IOBluetoothUserNotification 10 | ; object is returned. To unregister from the notification, call -unregister on the 11 | ; IOBluetoothUserNotification object. Once -unregister is called, the object will no 12 | ; longer be valid. 13 | ; 14 | #| @INTERFACE 15 | IOBluetoothUserNotification : NSObject 16 | { 17 | } 18 | 19 | 20 | 21 | - (void)unregister; 22 | 23 | |# 24 | 25 | (provide-interface "IOBluetoothUserNotification") -------------------------------------------------------------------------------- /library/Interfaces/IOBluetoothUtilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOBluetoothUtilities.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOCFBundle.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:IOCFBundle.h" 3 | ; at Sunday July 2,2006 7:28:41 pm. 4 | ; #ifndef __IOKIT_IOCFBUNDLE_H 5 | ; #define __IOKIT_IOCFBUNDLE_H 6 | 7 | (require-interface "CoreFoundation/CoreFoundation") 8 | ; #define kIOBundleInfoDictionaryVersionKey CFSTR("CFBundleInfoDictionaryVersion") 9 | ; #define kIOBundleExecutableKey CFSTR("CFBundleExecutable") 10 | ; #define kIOBundleIdentifierKey CFSTR("CFBundleIdentifier") 11 | ; #define kIOBundleVersionKey CFSTR("CFBundleVersion") 12 | ; #define kIOBundleDevelopmentRegionKey CFSTR("CFBundleDevelopmentRegion") 13 | ; #define kIOBundleNameKey CFSTR("CFBundleName") 14 | 15 | ; #endif /* __IOKIT_IOCFBUNDLE_H */ 16 | 17 | 18 | (provide-interface "IOCFBundle") -------------------------------------------------------------------------------- /library/Interfaces/IOCompactDiscServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOCompactDiscServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/IODVDServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IODVDServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOFWIsoch.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOFWIsoch.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOFWRegs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOFWRegs.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOFireWireFamilyCommon.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOFireWireFamilyCommon.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOForceFeedbackLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOForceFeedbackLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOHIDUsageTables.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOHIDUsageTables.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOMacOSTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOMacOSTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOReducedBlockServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOReducedBlockServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIBlockCommandsDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIBlockCommandsDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIMultimediaCommandsDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIMultimediaCommandsDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIParallelInterfaceController.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIParallelInterfaceController.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPeripheralDeviceNub.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPeripheralDeviceNub.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPeripheralDeviceType00.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPeripheralDeviceType00.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPeripheralDeviceType05.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPeripheralDeviceType05.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPeripheralDeviceType07.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPeripheralDeviceType07.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPeripheralDeviceType0E.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPeripheralDeviceType0E.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIPrimaryCommandsDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIPrimaryCommandsDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIProtocolInterface.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIProtocolInterface.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIProtocolServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIProtocolServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSIReducedBlockCommandsDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSIReducedBlockCommandsDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IOSCSITargetDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IOSCSITargetDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/IconStorage.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IconStorage.lisp -------------------------------------------------------------------------------- /library/Interfaces/Icons.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Icons.lisp -------------------------------------------------------------------------------- /library/Interfaces/ImageCapture.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ImageCapture.lisp -------------------------------------------------------------------------------- /library/Interfaces/ImageCodec.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ImageCodec.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/ImageCodec.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ImageCodec.lisp -------------------------------------------------------------------------------- /library/Interfaces/ImageCompression.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ImageCompression.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/ImageCompression.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ImageCompression.lisp -------------------------------------------------------------------------------- /library/Interfaces/Ink.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Ink.lisp -------------------------------------------------------------------------------- /library/Interfaces/InternetConfig.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/InternetConfig.lisp -------------------------------------------------------------------------------- /library/Interfaces/IntlResources.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IntlResources.lisp -------------------------------------------------------------------------------- /library/Interfaces/IsochronousDataHandler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/IsochronousDataHandler.lisp -------------------------------------------------------------------------------- /library/Interfaces/KextManager.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:KextManager.h" 3 | ; at Sunday July 2,2006 7:30:16 pm. 4 | ; #ifndef __KEXTMANAGER_H__ 5 | ; #define __KEXTMANAGER_H__ 6 | 7 | (require-interface "CoreFoundation/CoreFoundation") 8 | ; #ifdef __cplusplus 9 | #| #| 10 | extern "C" { 11 | #endif 12 | |# 13 | |# 14 | 15 | (deftrap-inline "_KextManagerCreateURLForBundleIdentifier" 16 | ((allocator (:pointer :__CFAllocator)) 17 | (bundleIdentifier (:pointer :__CFString)) 18 | ) 19 | (:pointer :__CFURL) 20 | () ) 21 | ; #ifdef __cplusplus 22 | #| #| 23 | } 24 | #endif 25 | |# 26 | |# 27 | 28 | ; #endif __KEXTMANAGER_H__ 29 | 30 | 31 | (provide-interface "KextManager") -------------------------------------------------------------------------------- /library/Interfaces/Keyboards.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Keyboards.lisp -------------------------------------------------------------------------------- /library/Interfaces/KeychainCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/KeychainCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/KeychainHI.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/KeychainHI.lisp -------------------------------------------------------------------------------- /library/Interfaces/LSInfo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LSInfo.lisp -------------------------------------------------------------------------------- /library/Interfaces/LSOpen.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LSOpen.lisp -------------------------------------------------------------------------------- /library/Interfaces/LangAnalysis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LangAnalysis.lisp -------------------------------------------------------------------------------- /library/Interfaces/LanguageAnalysis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LanguageAnalysis.lisp -------------------------------------------------------------------------------- /library/Interfaces/LaunchServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LaunchServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/Lists.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Lists.lisp -------------------------------------------------------------------------------- /library/Interfaces/LowMem.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/LowMem.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacApplication.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacApplication.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacErrors.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacErrors.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacHelp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacHelp.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacLocales.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacLocales.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacMemory.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacMemory.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacTextEditor.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacTextEditor.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/MacWindows.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MacWindows.lisp -------------------------------------------------------------------------------- /library/Interfaces/MachineExceptions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MachineExceptions.lisp -------------------------------------------------------------------------------- /library/Interfaces/Math64.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Math64.lisp -------------------------------------------------------------------------------- /library/Interfaces/MediaHandlers.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MediaHandlers.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/MediaHandlers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MediaHandlers.lisp -------------------------------------------------------------------------------- /library/Interfaces/Menus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Menus.lisp -------------------------------------------------------------------------------- /library/Interfaces/MixedMode.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MixedMode.lisp -------------------------------------------------------------------------------- /library/Interfaces/Movies.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Movies.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/Movies.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Movies.lisp -------------------------------------------------------------------------------- /library/Interfaces/MoviesFormat.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MoviesFormat.lisp -------------------------------------------------------------------------------- /library/Interfaces/Multiprocessing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Multiprocessing.lisp -------------------------------------------------------------------------------- /library/Interfaces/MultiprocessingInfo.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MultiprocessingInfo.lisp -------------------------------------------------------------------------------- /library/Interfaces/MusicDevice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/MusicDevice.lisp -------------------------------------------------------------------------------- /library/Interfaces/NSAppleScriptExtensions.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSAppleScriptExtensions.h" 3 | ; at Sunday July 2,2006 7:30:35 pm. 4 | ; 5 | ; NSAppleScriptExtensions.h 6 | ; Application Kit 7 | ; Copyright (c) 2002-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | 13 | ; #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 14 | #| @INTERFACE 15 | NSAppleScript(NSExtensions) 16 | 17 | - (NSAttributedString *)richTextSource; 18 | 19 | |# 20 | 21 | ; #endif 22 | 23 | 24 | (provide-interface "NSAppleScriptExtensions") -------------------------------------------------------------------------------- /library/Interfaces/NSApplicationScripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSApplicationScripting.h" 3 | ; at Sunday July 2,2006 7:30:35 pm. 4 | ; 5 | ; NSApplicationScripting.h 6 | ; AppKit Framework 7 | ; Copyright (c) 1997-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSApplication(NSScripting) 14 | 15 | - (NSArray *)orderedDocuments; 16 | 17 | - (NSArray *)orderedWindows; 18 | 19 | |# 20 | #| @INTERFACE 21 | NSObject(NSApplicationScriptingDelegation) 22 | 23 | - (BOOL)application:(NSApplication *)sender delegateHandlesKey:(NSString *)key; 24 | 25 | |# 26 | 27 | (provide-interface "NSApplicationScripting") -------------------------------------------------------------------------------- /library/Interfaces/NSApplication_Scripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSApplication_Scripting.h" 3 | ; at Sunday July 2,2006 7:30:35 pm. 4 | ; 5 | ; NSApplication_Scripting.h 6 | ; AppKitScripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the AppKitScripting framework has been moved to the AppKit framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSApplication_Scripting") -------------------------------------------------------------------------------- /library/Interfaces/NSAutoreleasePool.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSAutoreleasePool.h" 3 | ; at Sunday July 2,2006 7:30:35 pm. 4 | ; NSAutoreleasePool.h 5 | ; Copyright (c) 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSAutoreleasePool : NSObject { 11 | private 12 | void *_token; 13 | void *_reserved3; 14 | void *_reserved2; 15 | void *_reserved; 16 | } 17 | 18 | + (void)addObject:(id)anObject; 19 | 20 | - (void)addObject:(id)anObject; 21 | 22 | |# 23 | 24 | (provide-interface "NSAutoreleasePool") -------------------------------------------------------------------------------- /library/Interfaces/NSCachedImageRep.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCachedImageRep.h" 3 | ; at Sunday July 2,2006 7:30:37 pm. 4 | ; 5 | ; NSCachedImageRep.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | 13 | ; #import 14 | #| @INTERFACE 15 | NSCachedImageRep : NSImageRep { 16 | 17 | NSPoint _origin; 18 | NSWindow *_window; 19 | void *_cache; 20 | } 21 | 22 | 23 | - (id)initWithWindow:(NSWindow *)win rect:(NSRect)rect; 24 | 25 | 26 | - (id)initWithSize:(NSSize)size depth:(NSWindowDepth)depth separate:(BOOL)flag alpha:(BOOL)alpha; 27 | 28 | - (NSWindow *)window; 29 | - (NSRect)rect; 30 | 31 | |# 32 | 33 | (provide-interface "NSCachedImageRep") -------------------------------------------------------------------------------- /library/Interfaces/NSCloneCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCloneCommand.h" 3 | ; at Sunday July 2,2006 7:30:38 pm. 4 | ; 5 | ; NSCloneCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSCloneCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSCloseCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCloseCommand.h" 3 | ; at Sunday July 2,2006 7:30:38 pm. 4 | ; 5 | ; NSCloseCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSCloseCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSCoercionHandler.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCoercionHandler.h" 3 | ; at Sunday July 2,2006 7:30:38 pm. 4 | ; 5 | ; NSCoercionHandler.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | ; A few classes were renamed in the process. 14 | #| @INTERFACE 15 | NSCoercionHandler : NSScriptCoercionHandler {} 16 | 17 | |# 18 | 19 | (provide-interface "NSCoercionHandler") -------------------------------------------------------------------------------- /library/Interfaces/NSCompatibility.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCompatibility.h" 3 | ; at Sunday July 2,2006 7:30:44 pm. 4 | 5 | ; #warning This header file is obsolete. 6 | 7 | ; #warning We do not know what you were trying to get from this header, but the declarations 8 | 9 | ; #warning are gone, and that was probably not the right way to go about things anyway. 10 | 11 | ; #warning This header will be removed completely December 1, 2002. 12 | 13 | (provide-interface "NSCompatibility") -------------------------------------------------------------------------------- /library/Interfaces/NSCountCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCountCommand.h" 3 | ; at Sunday July 2,2006 7:30:45 pm. 4 | ; 5 | ; NSCountCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSCountCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSCreateCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCreateCommand.h" 3 | ; at Sunday July 2,2006 7:30:45 pm. 4 | ; 5 | ; NSCreateCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSCreateCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSCustomImageRep.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSCustomImageRep.h" 3 | ; at Sunday July 2,2006 7:30:45 pm. 4 | ; 5 | ; NSCustomImageRep.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSCustomImageRep : NSImageRep { 14 | 15 | SEL _drawMethod; 16 | id _drawObject; 17 | unsigned int _reserved; 18 | } 19 | 20 | - (id)initWithDrawSelector:(SEL)aMethod delegate:(id)anObject; 21 | - (SEL)drawSelector; 22 | - (id)delegate; 23 | 24 | |# 25 | 26 | (provide-interface "NSCustomImageRep") -------------------------------------------------------------------------------- /library/Interfaces/NSDateFormatter.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSDateFormatter.h" 3 | ; at Sunday July 2,2006 7:30:45 pm. 4 | ; NSDateFormatter.h 5 | ; Copyright (c) 1995-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSDateFormatter : NSFormatter { 11 | private 12 | NSString *_format; 13 | BOOL _naturalLanguage; 14 | char _unused[3]; 15 | int _reserved; 16 | } 17 | 18 | - (id)initWithDateFormat:(NSString *)format allowNaturalLanguage:(BOOL)flag; 19 | - (NSString *)dateFormat; 20 | - (BOOL)allowsNaturalLanguage; 21 | 22 | |# 23 | 24 | (provide-interface "NSDateFormatter") -------------------------------------------------------------------------------- /library/Interfaces/NSDeleteCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSDeleteCommand.h" 3 | ; at Sunday July 2,2006 7:30:45 pm. 4 | ; 5 | ; NSDeleteCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSDeleteCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSDistributedLock.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSDistributedLock.h" 3 | ; at Sunday July 2,2006 7:30:46 pm. 4 | ; NSDistributedLock.h 5 | ; Copyright (c) 1995-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSDistributedLock : NSObject { 11 | private 12 | void *_priv; 13 | } 14 | 15 | + (NSDistributedLock *)lockWithPath:(NSString *)path; 16 | 17 | - (id)initWithPath:(NSString *)path; 18 | 19 | - (BOOL)tryLock; 20 | - (void)unlock; 21 | - (void)breakLock; 22 | - (NSDate *)lockDate; 23 | 24 | |# 25 | 26 | (provide-interface "NSDistributedLock") -------------------------------------------------------------------------------- /library/Interfaces/NSDocumentScripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSDocumentScripting.h" 3 | ; at Sunday July 2,2006 7:30:46 pm. 4 | ; 5 | ; NSDocumentScripting.h 6 | ; AppKit Framework 7 | ; Copyright (c) 1997-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSDocument (NSScripting) 14 | 15 | - (NSString *)lastComponentOfFileName; 16 | - (void)setLastComponentOfFileName:(NSString *)str; 17 | 18 | - (id)handleSaveScriptCommand:(NSScriptCommand *)command; 19 | - (id)handleCloseScriptCommand:(NSCloseCommand *)command; 20 | - (id)handlePrintScriptCommand:(NSScriptCommand *)command; 21 | 22 | - (NSScriptObjectSpecifier *)objectSpecifier; 23 | 24 | |# 25 | 26 | (provide-interface "NSDocumentScripting") -------------------------------------------------------------------------------- /library/Interfaces/NSDocument_Scripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSDocument_Scripting.h" 3 | ; at Sunday July 2,2006 7:30:46 pm. 4 | ; 5 | ; NSDocument_Scripting.h 6 | ; AppKitScripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the AppKitScripting framework has been moved to the AppKit framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSDocument_Scripting") -------------------------------------------------------------------------------- /library/Interfaces/NSEPSImageRep.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSEPSImageRep.h" 3 | ; at Sunday July 2,2006 7:30:46 pm. 4 | ; 5 | ; NSEPSImageRep.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSEPSImageRep : NSImageRep { 14 | 15 | NSPoint _bBoxOrigin; 16 | NSData *_epsData; 17 | NSPDFImageRep* _pdfImageRep; 18 | } 19 | 20 | + (id)imageRepWithData:(NSData *)epsData; 21 | - (id)initWithData:(NSData *)epsData; 22 | 23 | - (void)prepareGState; 24 | 25 | - (NSData *)EPSRepresentation; 26 | 27 | - (NSRect)boundingBox; 28 | 29 | |# 30 | 31 | (provide-interface "NSEPSImageRep") -------------------------------------------------------------------------------- /library/Interfaces/NSEnumerator.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSEnumerator.h" 3 | ; at Sunday July 2,2006 7:30:46 pm. 4 | ; NSEnumerator.h 5 | ; Copyright (c) 1995-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | ; *************** Abstract Enumerator *************** 10 | #| @INTERFACE 11 | NSEnumerator : NSObject 12 | 13 | - (id)nextObject; 14 | 15 | |# 16 | #| @INTERFACE 17 | NSEnumerator (NSExtendedEnumerator) 18 | 19 | - (NSArray *)allObjects; 20 | 21 | |# 22 | 23 | (provide-interface "NSEnumerator") -------------------------------------------------------------------------------- /library/Interfaces/NSExistsCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSExistsCommand.h" 3 | ; at Sunday July 2,2006 7:30:47 pm. 4 | ; 5 | ; NSExistsCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSExistsCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSGetCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSGetCommand.h" 3 | ; at Sunday July 2,2006 7:30:49 pm. 4 | ; 5 | ; NSGetCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSGetCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSHost.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSHost.h" 3 | ; at Sunday July 2,2006 7:30:49 pm. 4 | ; NSHost.h 5 | ; Copyright (c) 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSHost : NSObject { 11 | private 12 | NSArray *names; 13 | NSArray *addresses; 14 | void *reserved; 15 | } 16 | 17 | + (NSHost *)currentHost; 18 | + (NSHost *)hostWithName:(NSString *)name; 19 | + (NSHost *)hostWithAddress:(NSString *)address; 20 | 21 | + (void)setHostCacheEnabled:(BOOL)flag; 22 | + (BOOL)isHostCacheEnabled; 23 | + (void)flushHostCache; 24 | 25 | - (BOOL)isEqualToHost:(NSHost *)aHost; 26 | 27 | - (NSString *)name; - (NSArray *)names; 28 | - (NSString *)address; - (NSArray *)addresses; 29 | |# 30 | 31 | (provide-interface "NSHost") -------------------------------------------------------------------------------- /library/Interfaces/NSIndexSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSIndexSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:50 pm. 4 | ; 5 | ; NSIndexSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSIndexSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSKeyValueAdditions.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSKeyValueAdditions.h" 3 | ; at Sunday July 2,2006 7:30:51 pm. 4 | ; 5 | ; NSKeyValueAdditions.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSKeyValueAdditions") -------------------------------------------------------------------------------- /library/Interfaces/NSL.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/NSL.lisp -------------------------------------------------------------------------------- /library/Interfaces/NSLCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/NSLCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/NSLogicalTest.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSLogicalTest.h" 3 | ; at Sunday July 2,2006 7:30:51 pm. 4 | ; 5 | ; NSLogicalTest.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSLogicalTest") -------------------------------------------------------------------------------- /library/Interfaces/NSMiddleSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSMiddleSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSMiddleSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSMiddleSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSMoveCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSMoveCommand.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSMoveCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSMoveCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSNibConnector.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNibConnector.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSNibConnector.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSNibConnector : NSObject 14 | { 15 | private 16 | id _source; 17 | id _destination; 18 | NSString *_label; 19 | } 20 | - (id)source; 21 | - (void)setSource:(id)source; 22 | - (id)destination; 23 | - (void)setDestination:(id)destination; 24 | - (NSString *)label; 25 | - (void)setLabel:(NSString *)label; 26 | - (void)replaceObject:(id)oldObject withObject:(id)newObject; 27 | - (void)establishConnection; 28 | |# 29 | 30 | (provide-interface "NSNibConnector") -------------------------------------------------------------------------------- /library/Interfaces/NSNibControlConnector.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNibControlConnector.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSNibControlConnector.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSNibControlConnector : NSNibConnector 14 | - (void)establishConnection; 15 | |# 16 | 17 | (provide-interface "NSNibControlConnector") -------------------------------------------------------------------------------- /library/Interfaces/NSNibDeclarations.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNibDeclarations.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSNibDeclarations.h 6 | ; Application Kit 7 | ; Copyright (c) 1996-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; #ifndef IBOutlet 11 | ; #define IBOutlet 12 | 13 | ; #endif 14 | 15 | ; #ifndef IBAction 16 | ; #define IBAction void 17 | 18 | ; #endif 19 | 20 | 21 | (provide-interface "NSNibDeclarations") -------------------------------------------------------------------------------- /library/Interfaces/NSNibLoading.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNibLoading.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSNibLoading.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSBundle(NSNibLoading) 14 | 15 | + (BOOL)loadNibFile:(NSString *)fileName externalNameTable:(NSDictionary *)context withZone:(NSZone *)zone; 16 | 17 | 18 | + (BOOL)loadNibNamed:(NSString *)nibName owner:(id)owner; 19 | 20 | 21 | - (BOOL)loadNibFile:(NSString *)fileName externalNameTable:(NSDictionary *)context withZone:(NSZone *)zone; 22 | 23 | 24 | |# 25 | #| @INTERFACE 26 | NSObject (NSNibAwaking) 27 | - (void)awakeFromNib; 28 | |# 29 | 30 | (provide-interface "NSNibLoading") -------------------------------------------------------------------------------- /library/Interfaces/NSNibOutletConnector.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNibOutletConnector.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; 5 | ; NSNibOutletConnector.h 6 | ; Application Kit 7 | ; Copyright (c) 1994-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSNibOutletConnector : NSNibConnector 14 | - (void)establishConnection; 15 | |# 16 | 17 | (provide-interface "NSNibOutletConnector") -------------------------------------------------------------------------------- /library/Interfaces/NSNull.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSNull.h" 3 | ; at Sunday July 2,2006 7:30:53 pm. 4 | ; NSNull.h 5 | ; Copyright (c) 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSNull : NSObject 11 | 12 | + (NSNull *)null; 13 | 14 | |# 15 | 16 | (provide-interface "NSNull") -------------------------------------------------------------------------------- /library/Interfaces/NSObjectScripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSObjectScripting.h" 3 | ; at Sunday July 2,2006 7:30:54 pm. 4 | ; 5 | ; NSObjectScripting.h 6 | ; Copyright (c) 2002-2003, Apple Computer, Inc. 7 | ; All rights reserved. 8 | ; 9 | 10 | ; #if MAC_OS_X_VERSION_10_2 <= MAC_OS_X_VERSION_MAX_ALLOWED 11 | 12 | ; #import 13 | #| @INTERFACE 14 | NSObject(NSScripting) 15 | 16 | - (NSDictionary *)scriptingProperties; 17 | 18 | - (void)setScriptingProperties:(NSDictionary *)properties; 19 | 20 | |# 21 | 22 | ; #endif 23 | 24 | 25 | (provide-interface "NSObjectScripting") -------------------------------------------------------------------------------- /library/Interfaces/NSObjectSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSObjectSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:54 pm. 4 | ; 5 | ; NSObjectSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | ; A few classes were renamed in the process. 14 | #| @INTERFACE 15 | NSObjectSpecifier : NSScriptObjectSpecifier {} 16 | 17 | |# 18 | 19 | (provide-interface "NSObjectSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSObject_Scripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSObject_Scripting.h" 3 | ; at Sunday July 2,2006 7:30:54 pm. 4 | ; 5 | ; NSObject_Scripting.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework, and this header's contents were moved into another header during the process. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSObject_Scripting") -------------------------------------------------------------------------------- /library/Interfaces/NSPDFImageRep.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSPDFImageRep.h" 3 | ; at Sunday July 2,2006 7:30:56 pm. 4 | ; 5 | ; NSPDFImageRep.h 6 | ; Application Kit 7 | ; Copyright (c) 1999-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSPDFImageRep : NSImageRep 14 | { 15 | private 16 | NSData* _pdfData; 17 | int _reserved1; 18 | int _reserved2; 19 | 20 | id _private; 21 | } 22 | 23 | + (id)imageRepWithData:(NSData*)pdfData; 24 | - (id)initWithData:(NSData*)pdfData; 25 | 26 | - (NSData*)PDFRepresentation; 27 | - (NSRect)bounds; 28 | - (void) setCurrentPage:(int)page; - (int) currentPage; 29 | - (int) pageCount; 30 | 31 | |# 32 | 33 | (provide-interface "NSPDFImageRep") -------------------------------------------------------------------------------- /library/Interfaces/NSPICTImageRep.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSPICTImageRep.h" 3 | ; at Sunday July 2,2006 7:30:56 pm. 4 | ; 5 | ; NSPICTImageRep.h 6 | ; Application Kit 7 | ; Copyright (c) 1997-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSPICTImageRep : NSImageRep 14 | { 15 | 16 | NSPoint _pictOrigin; 17 | NSData* _pictData; 18 | unsigned int _reserved1; 19 | unsigned int _reserved2; 20 | } 21 | 22 | + (id)imageRepWithData:(NSData*)pictData; 23 | - (id)initWithData:(NSData*)pictData; 24 | 25 | - (NSData*) PICTRepresentation; 26 | - (NSRect) boundingBox; 27 | 28 | |# 29 | 30 | (provide-interface "NSPICTImageRep") -------------------------------------------------------------------------------- /library/Interfaces/NSPositionalSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSPositionalSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:56 pm. 4 | ; 5 | ; NSPositionalSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSPositionalSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSPropertySpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSPropertySpecifier.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSPropertySpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSPropertySpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSProtocolChecker.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSProtocolChecker.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; NSProtocolChecker.h 5 | ; Copyright (c) 1995-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | 10 | ; #import 11 | #| @INTERFACE 12 | NSProtocolChecker : NSProxy 13 | 14 | - (Protocol *)protocol; 15 | - (NSObject *)target; 16 | 17 | |# 18 | #| @INTERFACE 19 | NSProtocolChecker (NSProtocolCheckerCreation) 20 | 21 | + (id)protocolCheckerWithTarget:(NSObject *)anObject protocol:(Protocol *)aProtocol; 22 | - (id)initWithTarget:(NSObject *)anObject protocol:(Protocol *)aProtocol; 23 | 24 | |# 25 | 26 | (provide-interface "NSProtocolChecker") -------------------------------------------------------------------------------- /library/Interfaces/NSProxy.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSProxy.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; NSProxy.h 5 | ; Copyright (c) 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSProxy { 11 | Class isa; 12 | } 13 | 14 | + (id)alloc; 15 | + (id)allocWithZone:(NSZone *)zone; 16 | + (Class)class; 17 | 18 | - (void)forwardInvocation:(NSInvocation *)invocation; 19 | - (NSMethodSignature *)methodSignatureForSelector:(SEL)sel; 20 | - (void)dealloc; 21 | - (NSString *)description; 22 | + (BOOL)respondsToSelector:(SEL)aSelector; 23 | 24 | |# 25 | 26 | (provide-interface "NSProxy") -------------------------------------------------------------------------------- /library/Interfaces/NSQuickDrawView.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSQuickDrawView.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSQuickDrawView.h 6 | ; Application Kit 7 | ; Copyright (c) 1999-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSQuickDrawView : NSView 14 | { 15 | private 16 | void* _qdPort; 17 | void* _savePort; 18 | BOOL _synchToView; 19 | } 20 | 21 | - (void*) qdPort; 22 | 23 | |# 24 | 25 | (provide-interface "NSQuickDrawView") -------------------------------------------------------------------------------- /library/Interfaces/NSQuitCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSQuitCommand.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSQuitCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSQuitCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSRandomSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSRandomSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSRandomSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSRandomSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSRangeSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSRangeSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSRangeSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSRangeSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSRelativeSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSRelativeSpecifier.h" 3 | ; at Sunday July 2,2006 7:30:57 pm. 4 | ; 5 | ; NSRelativeSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSRelativeSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSScriptCoercionHandler.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSScriptCoercionHandler.h" 3 | ; at Sunday July 2,2006 7:30:58 pm. 4 | ; NSScriptCoercionHandler.h 5 | ; Copyright (c) 1997-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #import 9 | #| @INTERFACE 10 | NSScriptCoercionHandler : NSObject { 11 | private 12 | void *_coercers; 13 | } 14 | 15 | + (NSScriptCoercionHandler *)sharedCoercionHandler; 16 | 17 | - (id)coerceValue:(id)value toClass:(Class)toClass; 18 | 19 | - (void)registerCoercer:(id)coercer selector:(SEL)selector toConvertFromClass:(Class)fromClass toClass:(Class)toClass; 20 | 21 | |# 22 | 23 | (provide-interface "NSScriptCoercionHandler") -------------------------------------------------------------------------------- /library/Interfaces/NSSecureTextField.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSSecureTextField.h" 3 | ; at Sunday July 2,2006 7:30:59 pm. 4 | ; 5 | ; NSSecureTextField.h 6 | ; Application Kit 7 | ; Copyright (c) 1995-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | 13 | ; #import 14 | #| @INTERFACE 15 | NSSecureTextField : NSTextField { 16 | 17 | } 18 | |# 19 | #| @INTERFACE 20 | NSSecureTextFieldCell : NSTextFieldCell { 21 | 22 | private 23 | BOOL _echosBullets; 24 | } 25 | 26 | - (void)setEchosBullets:(BOOL)flag; 27 | - (BOOL)echosBullets; 28 | 29 | |# 30 | 31 | (provide-interface "NSSecureTextField") -------------------------------------------------------------------------------- /library/Interfaces/NSSetCommand.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSSetCommand.h" 3 | ; at Sunday July 2,2006 7:31:00 pm. 4 | ; 5 | ; NSSetCommand.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSSetCommand") -------------------------------------------------------------------------------- /library/Interfaces/NSSpecifierTest.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSSpecifierTest.h" 3 | ; at Sunday July 2,2006 7:31:00 pm. 4 | ; 5 | ; NSSpecifierTest.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSSpecifierTest") -------------------------------------------------------------------------------- /library/Interfaces/NSSpellServer.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSSpellServer.h" 3 | ; at Sunday July 2,2006 7:31:00 pm. 4 | ; 5 | ; NSSpellServer.h 6 | ; Application Kit 7 | ; Copyright (c) 1990-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #warning "NSSpellServer class has moved to the Foundation framework. Please adjust your header import." 12 | 13 | (provide-interface "NSSpellServer") -------------------------------------------------------------------------------- /library/Interfaces/NSTableHeaderCell.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSTableHeaderCell.h" 3 | ; at Sunday July 2,2006 7:31:01 pm. 4 | ; 5 | ; NSTableHeaderCell.h 6 | ; Application Kit 7 | ; Copyright (c) 1995-2003, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | NSTableHeaderCell : NSTextFieldCell { 14 | 15 | } 16 | 17 | #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 18 | 19 | - (void)drawSortIndicatorWithFrame:(NSRect)cellFrame inView:(NSView *)controlView ascending:(BOOL)ascending priority:(int)priority; 20 | 21 | - (NSRect)sortIndicatorRectForBounds:(NSRect)theRect; 22 | 23 | #endif 24 | 25 | |# 26 | 27 | (provide-interface "NSTableHeaderCell") -------------------------------------------------------------------------------- /library/Interfaces/NSTextStorage_TextSuite.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSTextStorage_TextSuite.h" 3 | ; at Sunday July 2,2006 7:31:02 pm. 4 | ; 5 | ; NSTextStorage_TextSuite.h 6 | ; AppKitScripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the AppKitScripting framework has been moved to the AppKit framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSTextStorage_TextSuite") -------------------------------------------------------------------------------- /library/Interfaces/NSUtilities.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSUtilities.h" 3 | ; at Sunday July 2,2006 7:31:05 pm. 4 | ; NSUtilities.h 5 | ; Copyright (c) 1994-2003, Apple, Inc. All rights reserved. 6 | ; 7 | 8 | ; #warning This header file is obsolete. 9 | 10 | ; #warning #import the individual headers (that you need) listed in this header instead. 11 | 12 | ; #warning This header may soon have different content which may be bad for your project, 13 | 14 | ; #warning or this header will be removed completely December 1, 2002. 15 | 16 | (require-interface "stdarg") 17 | 18 | ; #import 19 | 20 | ; #import 21 | 22 | ; #import 23 | 24 | (provide-interface "NSUtilities") -------------------------------------------------------------------------------- /library/Interfaces/NSWhoseSpecifier.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSWhoseSpecifier.h" 3 | ; at Sunday July 2,2006 7:31:06 pm. 4 | ; 5 | ; NSWhoseSpecifier.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSWhoseSpecifier") -------------------------------------------------------------------------------- /library/Interfaces/NSWhoseTest.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSWhoseTest.h" 3 | ; at Sunday July 2,2006 7:31:06 pm. 4 | ; 5 | ; NSWhoseTest.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | ; A few classes were renamed in the process. 14 | #| @INTERFACE 15 | NSWhoseTest : NSScriptWhoseTest {} 16 | 17 | |# 18 | 19 | (provide-interface "NSWhoseTest") -------------------------------------------------------------------------------- /library/Interfaces/NSWindow_Scripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:NSWindow_Scripting.h" 3 | ; at Sunday July 2,2006 7:31:06 pm. 4 | ; 5 | ; NSWindow_Scripting.h 6 | ; AppKitScripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the AppKitScripting framework has been moved to the AppKit framework. 11 | 12 | ; #import 13 | 14 | (provide-interface "NSWindow_Scripting") -------------------------------------------------------------------------------- /library/Interfaces/NameRegistry.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/NameRegistry.lisp -------------------------------------------------------------------------------- /library/Interfaces/Navigation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Navigation.lisp -------------------------------------------------------------------------------- /library/Interfaces/NavigationServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/NavigationServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/Notification.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Notification.lisp -------------------------------------------------------------------------------- /library/Interfaces/NumberFormatting.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/NumberFormatting.lisp -------------------------------------------------------------------------------- /library/Interfaces/OBEX.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OBEX.lisp -------------------------------------------------------------------------------- /library/Interfaces/OBEXBluetooth.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OBEXBluetooth.lisp -------------------------------------------------------------------------------- /library/Interfaces/OBEXSession.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OBEXSession.lisp -------------------------------------------------------------------------------- /library/Interfaces/OSA.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OSA.lisp -------------------------------------------------------------------------------- /library/Interfaces/OSAComp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OSAComp.lisp -------------------------------------------------------------------------------- /library/Interfaces/OSAGeneric.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OSAGeneric.lisp -------------------------------------------------------------------------------- /library/Interfaces/OSCollectionIterator.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:OSCollectionIterator.h" 3 | ; at Sunday July 2,2006 7:28:36 pm. 4 | ; fake summary of /c++/OSCollectionIterator.h 5 | (defrecord OSCollectionIterator 6 | (collection (:pointer :oscollection)) 7 | (collIterator :pointer) 8 | (initialUpdateStamp :UInt32) 9 | (valid :Boolean) 10 | ) 11 | 12 | (provide-interface "OSCollectionIterator") -------------------------------------------------------------------------------- /library/Interfaces/OSServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OSServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/OSUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OSUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/OT.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OT.lisp -------------------------------------------------------------------------------- /library/Interfaces/OpenScripting.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OpenScripting.lisp -------------------------------------------------------------------------------- /library/Interfaces/OpenTransport.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OpenTransport.lisp -------------------------------------------------------------------------------- /library/Interfaces/OpenTransportProtocol.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OpenTransportProtocol.lisp -------------------------------------------------------------------------------- /library/Interfaces/OpenTransportProviders.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/OpenTransportProviders.lisp -------------------------------------------------------------------------------- /library/Interfaces/PEFBinaryFormat.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PEFBinaryFormat.lisp -------------------------------------------------------------------------------- /library/Interfaces/PLStringFuncs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PLStringFuncs.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMApplication.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMApplication.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMDefinitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMDefinitions.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMErrors.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMErrors.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMIOModule.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMIOModule.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMPluginHeader.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMPluginHeader.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMPrintAETypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMPrintAETypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMPrinterBrowsers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMPrinterBrowsers.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMPrinterModule.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMPrinterModule.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMPrintingDialogExtensions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMPrintingDialogExtensions.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMRaster.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMRaster.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMTemplate.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMTemplate.lisp -------------------------------------------------------------------------------- /library/Interfaces/PMTicket.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PMTicket.lisp -------------------------------------------------------------------------------- /library/Interfaces/PPDLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PPDLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/Palettes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Palettes.lisp -------------------------------------------------------------------------------- /library/Interfaces/Pasteboard.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Pasteboard.lisp -------------------------------------------------------------------------------- /library/Interfaces/Patches.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Patches.lisp -------------------------------------------------------------------------------- /library/Interfaces/PictUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PictUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/Power.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Power.lisp -------------------------------------------------------------------------------- /library/Interfaces/PreferencePanes.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:PreferencePanes.h" 3 | ; at Sunday July 2,2006 7:31:18 pm. 4 | ; 5 | ; * PreferencePanes.h 6 | ; * PreferencePanes 7 | ; * 8 | ; * Copyright (c) 2001 Apple. All rights reserved. 9 | ; * 10 | ; 11 | 12 | ; #import 13 | 14 | (provide-interface "PreferencePanes") -------------------------------------------------------------------------------- /library/Interfaces/Print.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Print.lisp -------------------------------------------------------------------------------- /library/Interfaces/PrintCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/PrintCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/Processes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Processes.lisp -------------------------------------------------------------------------------- /library/Interfaces/QD.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QD.lisp -------------------------------------------------------------------------------- /library/Interfaces/QDOffscreen.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QDOffscreen.lisp -------------------------------------------------------------------------------- /library/Interfaces/QDPictToCGContext.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QDPictToCGContext.lisp -------------------------------------------------------------------------------- /library/Interfaces/QTML.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QTML.lisp -------------------------------------------------------------------------------- /library/Interfaces/QTSMovie.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QTSMovie.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/QTSMovie.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QTSMovie.lisp -------------------------------------------------------------------------------- /library/Interfaces/QTStreamingComponents.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QTStreamingComponents.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/QTStreamingComponents.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QTStreamingComponents.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTime.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTime.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeComponents.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeComponents.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeComponents.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeComponents.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeMusic.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeMusic.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeMusic.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeMusic.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeStreaming.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeStreaming.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeVR.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeVR.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickTimeVRFormat.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickTimeVRFormat.lisp -------------------------------------------------------------------------------- /library/Interfaces/Quickdraw.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Quickdraw.lisp -------------------------------------------------------------------------------- /library/Interfaces/QuickdrawText.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/QuickdrawText.lisp -------------------------------------------------------------------------------- /library/Interfaces/Resources.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Resources.lisp -------------------------------------------------------------------------------- /library/Interfaces/SCSI.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SCSI.lisp -------------------------------------------------------------------------------- /library/Interfaces/SCSICmds_INQUIRY_Definitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SCSICmds_INQUIRY_Definitions.lisp -------------------------------------------------------------------------------- /library/Interfaces/SCSITask.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SCSITask.lisp -------------------------------------------------------------------------------- /library/Interfaces/SCSITaskLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SCSITaskLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/SFNTLayoutTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SFNTLayoutTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/SFNTTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SFNTTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/SKAnalysis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SKAnalysis.lisp -------------------------------------------------------------------------------- /library/Interfaces/SKDocument.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SKDocument.lisp -------------------------------------------------------------------------------- /library/Interfaces/SKIndex.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SKIndex.lisp -------------------------------------------------------------------------------- /library/Interfaces/SKSearch.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SKSearch.lisp -------------------------------------------------------------------------------- /library/Interfaces/ScalerStreamTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ScalerStreamTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/Scrap.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Scrap.lisp -------------------------------------------------------------------------------- /library/Interfaces/ScreenSaver.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:ScreenSaver.h" 3 | ; at Sunday July 2,2006 7:31:38 pm. 4 | ; 5 | ; ScreenSaver.h 6 | ; ScreenSaver 7 | ; Copyright (c) 2000-2, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | 13 | ; #import 14 | 15 | (provide-interface "ScreenSaver") -------------------------------------------------------------------------------- /library/Interfaces/ScreenSaverDefaults.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:ScreenSaverDefaults.h" 3 | ; at Sunday July 2,2006 7:31:38 pm. 4 | ; 5 | ; ScreenSaverDefaults.h 6 | ; ScreenSaver 7 | ; Copyright (c) 2000-2, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | 11 | ; #import 12 | #| @INTERFACE 13 | ScreenSaverDefaults : NSUserDefaults 14 | { 15 | private 16 | void *_reserved4; 17 | void *_reserved5; 18 | } 19 | 20 | + (id)defaultsForModuleWithName:(NSString*)moduleName; 21 | 22 | |# 23 | 24 | (provide-interface "ScreenSaverDefaults") -------------------------------------------------------------------------------- /library/Interfaces/Script.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Script.lisp -------------------------------------------------------------------------------- /library/Interfaces/Scripting.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:Scripting.h" 3 | ; at Sunday July 2,2006 7:31:38 pm. 4 | ; 5 | ; Scripting.h 6 | ; Scripting Framework 7 | ; Copyright (c) 1997-2000, Apple Computer, Inc. 8 | ; All rights reserved. 9 | ; 10 | ; Everything that was once in the Scripting framework has been moved to the Foundation framework. 11 | 12 | ; #import 13 | ; A few classes were renamed in the process. 14 | 15 | ; #import 16 | 17 | ; #import 18 | 19 | ; #import 20 | 21 | (provide-interface "Scripting") -------------------------------------------------------------------------------- /library/Interfaces/SearchKit.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SearchKit.lisp -------------------------------------------------------------------------------- /library/Interfaces/SecCertificate.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SecCertificate.lisp -------------------------------------------------------------------------------- /library/Interfaces/SecKeychain.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SecKeychain.lisp -------------------------------------------------------------------------------- /library/Interfaces/SecKeychainItem.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SecKeychainItem.lisp -------------------------------------------------------------------------------- /library/Interfaces/SecurityCore.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SecurityCore.lisp -------------------------------------------------------------------------------- /library/Interfaces/SecurityHI.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SecurityHI.lisp -------------------------------------------------------------------------------- /library/Interfaces/Sound.k.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Sound.k.lisp -------------------------------------------------------------------------------- /library/Interfaces/Sound.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Sound.lisp -------------------------------------------------------------------------------- /library/Interfaces/SpeechRecognition.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SpeechRecognition.lisp -------------------------------------------------------------------------------- /library/Interfaces/SpeechSynthesis.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SpeechSynthesis.lisp -------------------------------------------------------------------------------- /library/Interfaces/StringCompare.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/StringCompare.lisp -------------------------------------------------------------------------------- /library/Interfaces/SystemSound.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/SystemSound.lisp -------------------------------------------------------------------------------- /library/Interfaces/TSMTE.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TSMTE.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextCommon.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextCommon.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextEdit.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextEdit.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextEncodingConverter.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextEncodingConverter.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextEncodingPlugin.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextEncodingPlugin.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/TextUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TextUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/Threads.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Threads.lisp -------------------------------------------------------------------------------- /library/Interfaces/Timer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Timer.lisp -------------------------------------------------------------------------------- /library/Interfaces/ToolUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ToolUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/Translation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Translation.lisp -------------------------------------------------------------------------------- /library/Interfaces/TranslationExtensions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TranslationExtensions.lisp -------------------------------------------------------------------------------- /library/Interfaces/TranslationServices.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TranslationServices.lisp -------------------------------------------------------------------------------- /library/Interfaces/TypeSelect.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/TypeSelect.lisp -------------------------------------------------------------------------------- /library/Interfaces/URLAccess.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/URLAccess.lisp -------------------------------------------------------------------------------- /library/Interfaces/UTCUtils.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/UTCUtils.lisp -------------------------------------------------------------------------------- /library/Interfaces/UTType.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/UTType.lisp -------------------------------------------------------------------------------- /library/Interfaces/UnicodeConverter.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/UnicodeConverter.lisp -------------------------------------------------------------------------------- /library/Interfaces/UnicodeUtilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/UnicodeUtilities.lisp -------------------------------------------------------------------------------- /library/Interfaces/Video.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/Video.lisp -------------------------------------------------------------------------------- /library/Interfaces/WSMethodInvocation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/WSMethodInvocation.lisp -------------------------------------------------------------------------------- /library/Interfaces/WSProtocolHandler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/WSProtocolHandler.lisp -------------------------------------------------------------------------------- /library/Interfaces/WSTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/WSTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/WebFrameView.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:WebFrameView.h" 3 | ; at Sunday July 2,2006 7:32:18 pm. 4 | ; 5 | ; WebFrameView.h 6 | ; Copyright (C) 2003 Apple Computer, Inc. All rights reserved. 7 | ; 8 | ; Public header file. 9 | ; 10 | 11 | ; #import 12 | #| @PROTOCOL 13 | WebDocumentView; 14 | 15 | 16 | interface WebFrameView : NSView 17 | { 18 | private 19 | WebFrameViewPrivate *_private; 20 | } 21 | 22 | 23 | - (WebFrame *)webFrame; 24 | 25 | 26 | - (NSView *)documentView; 27 | 28 | 29 | - (void)setAllowsScrolling:(BOOL)flag; 30 | 31 | 32 | - (BOOL)allowsScrolling; 33 | 34 | 35 | |# 36 | 37 | (provide-interface "WebFrameView") -------------------------------------------------------------------------------- /library/Interfaces/WebServicesCore.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:WebServicesCore.h" 3 | ; at Sunday July 2,2006 7:23:41 pm. 4 | ; #ifndef __WEBSERVICESCORE__ 5 | ; #define __WEBSERVICESCORE__ 6 | ; #ifndef __COREFOUNDATION__ 7 | 8 | (require-interface "CoreFoundation/CoreFoundation") 9 | 10 | ; #endif 11 | 12 | ; #ifndef __WSTYPES__ 13 | 14 | (require-interface "WebServicesCore/WSTypes") 15 | 16 | ; #endif 17 | 18 | ; #ifndef __WSMETHODINVOCATION__ 19 | 20 | (require-interface "WebServicesCore/WSMethodInvocation") 21 | 22 | ; #endif 23 | 24 | ; #ifndef __WSPROTOCOLHANDLER__ 25 | 26 | (require-interface "WebServicesCore/WSProtocolHandler") 27 | 28 | ; #endif 29 | 30 | 31 | ; #endif /* __WEBSERVICESCORE__ */ 32 | 33 | 34 | (provide-interface "WebServicesCore") -------------------------------------------------------------------------------- /library/Interfaces/afpClient.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/afpClient.lisp -------------------------------------------------------------------------------- /library/Interfaces/bulkmem.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/bulkmem.lisp -------------------------------------------------------------------------------- /library/Interfaces/bus_ops.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/bus_ops.lisp -------------------------------------------------------------------------------- /library/Interfaces/cisreg.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/cisreg.lisp -------------------------------------------------------------------------------- /library/Interfaces/cistpl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/cistpl.lisp -------------------------------------------------------------------------------- /library/Interfaces/copy.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:copy.h" 3 | ; at Sunday July 2,2006 7:27:24 pm. 4 | ; 5 | ; * 6 | ; * Written By Linas Vepstas November 1991 7 | ; 8 | ; #define COPY_THREE_WORDS(A,B) { struct three_words { long a, b, c, }; *(struct three_words *) (A) = *(struct three_words *) (B); } 9 | ; #define COPY_FOUR_WORDS(A,B) { struct four_words { long a, b, c, d, }; *(struct four_words *) (A) = *(struct four_words *) (B); } 10 | ; ============================================================= 11 | 12 | (provide-interface "copy") -------------------------------------------------------------------------------- /library/Interfaces/cs.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/cs.lisp -------------------------------------------------------------------------------- /library/Interfaces/cs_types.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/cs_types.lisp -------------------------------------------------------------------------------- /library/Interfaces/cssmtype.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/cssmtype.lisp -------------------------------------------------------------------------------- /library/Interfaces/fp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/fp.lisp -------------------------------------------------------------------------------- /library/Interfaces/gliContext.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:gliContext.h" 3 | ; at Sunday July 2,2006 7:25:33 pm. 4 | ; 5 | ; Copyright: (c) 1999 by Apple Computer, Inc., all rights reserved. 6 | ; 7 | ; #ifndef _GLICONTEXT_H 8 | ; #define _GLICONTEXT_H 9 | ; #ifdef __cplusplus 10 | #| #| 11 | extern "C" { 12 | #endif 13 | |# 14 | |# 15 | ; 16 | ; ** GL context data type 17 | ; 18 | 19 | (def-mactype :GLIContext (find-mactype '(:pointer :__GLIContextRec))) 20 | ; #ifdef __cplusplus 21 | #| #| 22 | } 23 | #endif 24 | |# 25 | |# 26 | 27 | ; #endif /* _GLICONTEXT_H */ 28 | 29 | 30 | (provide-interface "gliContext") -------------------------------------------------------------------------------- /library/Interfaces/index/constants.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/index/constants.idx -------------------------------------------------------------------------------- /library/Interfaces/iokitmig.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:iokitmig.h" 3 | ; at Sunday July 2,2006 7:29:26 pm. 4 | ; #ifdef __cplusplus 5 | #| #| 6 | extern "C" { 7 | #endif 8 | |# 9 | |# 10 | 11 | (require-interface "IOKit/iokitmig_c") 12 | ; #ifdef __cplusplus 13 | #| #| 14 | } 15 | #endif 16 | |# 17 | |# 18 | 19 | (provide-interface "iokitmig") -------------------------------------------------------------------------------- /library/Interfaces/k_compat.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/k_compat.lisp -------------------------------------------------------------------------------- /library/Interfaces/mach.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:mach.h" 3 | ; at Sunday July 2,2006 7:30:19 pm. 4 | ; #ifndef _LIBSA_MACH_MACH_H_ 5 | ; #define _LIBSA_MACH_MACH_H_ 6 | 7 | (require-interface "mach/mach_types") 8 | 9 | (require-interface "mach/vm_map") 10 | 11 | (deftrap-inline "_mach_task_self" 12 | ( 13 | ) 14 | :vm_map_t 15 | () ) 16 | 17 | (deftrap-inline "_mach_error_string" 18 | ((ARG2 :signed-long) 19 | ) 20 | (:pointer :character) 21 | () ) 22 | 23 | ; #endif /* _LIBSA_MACH_MACH_H_ */ 24 | 25 | 26 | (provide-interface "mach") -------------------------------------------------------------------------------- /library/Interfaces/ss.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/ss.lisp -------------------------------------------------------------------------------- /library/Interfaces/unistd.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:unistd.h" 3 | ; at Sunday July 2,2006 7:27:52 pm. 4 | ; #ifndef _LIBSA_UNISTD_H_ 5 | ; #define _LIBSA_UNISTD_H_ 6 | ; #define getpagesize() PAGE_SIZE 7 | 8 | ; #endif /* _LIBSA_UNISTD_H_ */ 9 | 10 | 11 | (provide-interface "unistd") -------------------------------------------------------------------------------- /library/Interfaces/vBLAS.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vBLAS.lisp -------------------------------------------------------------------------------- /library/Interfaces/vBasicOps.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vBasicOps.lisp -------------------------------------------------------------------------------- /library/Interfaces/vBigNum.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vBigNum.lisp -------------------------------------------------------------------------------- /library/Interfaces/vDSP.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vDSP.lisp -------------------------------------------------------------------------------- /library/Interfaces/vecLib.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vecLib.lisp -------------------------------------------------------------------------------- /library/Interfaces/vecLibTypes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vecLibTypes.lisp -------------------------------------------------------------------------------- /library/Interfaces/vectorOps.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vectorOps.lisp -------------------------------------------------------------------------------- /library/Interfaces/version.lisp: -------------------------------------------------------------------------------- 1 | (in-package :TRAPS) 2 | ; Generated from #P"macintosh-hd:hd3:CInterface Translator:Source Interfaces:version.h" 3 | ; at Sunday July 2,2006 7:29:35 pm. 4 | ; version.h 1.94 2000/10/03 17:55:48 (David Hinds) 5 | (defconstant $CS_RELEASE "3.1.22") 6 | ; #define CS_RELEASE "3.1.22" 7 | (defconstant $CS_RELEASE_CODE 12566) 8 | ; #define CS_RELEASE_CODE 0x3116 9 | 10 | (provide-interface "version") -------------------------------------------------------------------------------- /library/Interfaces/vfp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/Interfaces/vfp.lisp -------------------------------------------------------------------------------- /library/MCL Background.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/MCL Background.rsrc -------------------------------------------------------------------------------- /library/MCL help map.lisp: -------------------------------------------------------------------------------- 1 | ;-*- Mode: Lisp; Package: CCL -*- 2 | ; Helpmap.lisp 3 | (cl:in-package :ccl) 4 | 5 | (if (eql (ignore-errors (with-open-file (s "ccl:MCL Help") (file-length s))) 6 | #.(with-open-file (s "ccl:MCL Help") (file-length s))) 7 | (setq *fast-help* '#.*fast-help*) 8 | (setq *fast-help* "Length mismatch")) 9 | 10 | -------------------------------------------------------------------------------- /library/ansi-make-load-form.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*-Mode: LISP; Package: CCL -*- 2 | 3 | ;; $Log: ansi-make-load-form.lisp,v $ 4 | ;; Revision 1.4 2003/12/08 08:16:37 gtbyers 5 | ;; Lose most of this; it was already mostly defined elsewhere. 6 | ;; 7 | 8 | (in-package :ccl) 9 | 10 | #+ppc-target 11 | (pushnew :ansi-make-load-form *features*) 12 | #+ppc-target 13 | (pushnew :ansi-cl *features*) 14 | #+ppc-target 15 | (provide :ANSI-MAKE-LOAD-FORM) 16 | 17 | -------------------------------------------------------------------------------- /library/cursors.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/cursors.rsrc -------------------------------------------------------------------------------- /library/fred-package-indicator.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/fred-package-indicator.lisp -------------------------------------------------------------------------------- /library/macptr-termination.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/macptr-termination.lisp -------------------------------------------------------------------------------- /library/nav-services.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/nav-services.lisp -------------------------------------------------------------------------------- /library/save-application-dialog.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/library/save-application-dialog.lisp -------------------------------------------------------------------------------- /pmcl-OSX-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl-OSX-kernel -------------------------------------------------------------------------------- /pmcl-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl-kernel -------------------------------------------------------------------------------- /pmcl/OSX/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/OSX/console.c -------------------------------------------------------------------------------- /pmcl/OSX/debugf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/OSX/debugf.c -------------------------------------------------------------------------------- /pmcl/OSX/debugf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/OSX/debugf.h -------------------------------------------------------------------------------- /pmcl/OSX/lisp.s: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (C) 1994-2001 Digitool, Inc 3 | This file is part of OpenMCL. 4 | 5 | OpenMCL is licensed under the terms of the Lisp Lesser GNU Public 6 | License , known as the LLGPL and distributed with OpenMCL as the 7 | file "LICENSE". The LLGPL consists of a preamble and the LGPL, 8 | which is distributed with OpenMCL as the file "LGPL". Where these 9 | conflict, the preamble takes precedence. 10 | 11 | OpenMCL is referenced in the preamble as the "LIBRARY." 12 | 13 | The LLGPL is also available online at 14 | http://opensource.franz.com/preamble.html 15 | */ 16 | 17 | include(m4macros.m4) 18 | include(constants.s) 19 | include(macros.s) 20 | include(uuo.s) 21 | 22 | -------------------------------------------------------------------------------- /pmcl/OSX/plprint.c: -------------------------------------------------------------------------------- 1 | /* Copyright (C) 1994-2001 Digitool, Inc */ #include #include #include "lisp.h" #include "area.h" #include "lisp-exceptions.h" #include "lisp_globals.h" /* More-or-less like c printf(); */ int Dprintf(const char *format, ...); char * print_lisp_object(LispObj); void plprint(ExceptionInformation *xp, LispObj obj) { if (lisp_nil == (LispObj) NULL) { fprintf(stderr,"can't find lisp NIL; lisp process not active process ?\n"); } else { Dprintf("\n%s", print_lisp_object(obj)); } } -------------------------------------------------------------------------------- /pmcl/pmcl-kernel.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/pmcl-kernel.make -------------------------------------------------------------------------------- /pmcl/pmcl-kernel.proj.exp: -------------------------------------------------------------------------------- 1 | # 07/20/96 gb comments work! export lisp_nil lisp_nil set_nil_and_start application_loader subprims_base import_ptrs_base -------------------------------------------------------------------------------- /pmcl/pmcl.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/pmcl.r -------------------------------------------------------------------------------- /pmcl/runtime.s: -------------------------------------------------------------------------------- 1 | export ._ptrgl12 csect ._ptrgl12{GL} ._ptrgl12: lwz r0,0x0000(r12) stw RTOC,0x0014(SP) mtctr r0 ; CTR = 9 lwz RTOC,0x0004(r12) bctr end -------------------------------------------------------------------------------- /pmcl/siow_resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/siow_resources -------------------------------------------------------------------------------- /pmcl/siow_resources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/pmcl/siow_resources.r -------------------------------------------------------------------------------- /pre-checkin.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Split resource forks from resource files, so that we can check both 4 | # forks into svn 5 | 6 | function splitfile { 7 | cat "$1/rsrc" > ".resource-forks/$1" 8 | } 9 | 10 | 11 | splitfile OpenTransportSupport 12 | splitfile pmcl-kernel 13 | splitfile PPCCL 14 | splitfile pmcl/siow_resources 15 | #splitfile RMCL 16 | splitfile examples/contextual-menu-cursor.rsrc 17 | splitfile library/cursors.rsrc 18 | splitfile "library/MCL Background.rsrc" 19 | splitfile "library/AppleEvents/aete-for-mcl.rsrc" 20 | 21 | -------------------------------------------------------------------------------- /rmcl-notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/rmcl-notes.pdf -------------------------------------------------------------------------------- /sourceserver/initialize-projects.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/initialize-projects.lisp -------------------------------------------------------------------------------- /sourceserver/initialize-user.lisp: -------------------------------------------------------------------------------- 1 | ;;; -*- Mode:Lisp; Package:CCL; -*- 2 | 3 | (in-package :ccl) 4 | 5 | ;;; 6 | ;;; **** Need to change for every machine 7 | ;;; 8 | ;;; Put your initials here 9 | ;;; 10 | (unless (and (boundp '*user-initials*) 11 | *user-initials*) 12 | (setq *user-initials* (or (chooser-name) "akh"))) 13 | 14 | ;;; 15 | ;;; **** Need to change for every machine 16 | ;;; 17 | ;;; Put your name here!!! 18 | ;;; 19 | (unless (and (boundp '*user*) *user*) 20 | (setq *user* (or (chooser-name) "Unknown"))) 21 | 22 | 23 | ; where projector databases live 24 | (setf (logical-pathname-translations "SSRemote") 25 | '(("**;*.*" "aliceppc:ccl3&4db:**:*.*"))) 26 | 27 | ; location of project hierarchy on local disk 28 | (setf (logical-pathname-translations "SSLocal") 29 | `(("**;*.*" "ccl:**;*.*"))) 30 | 31 | ; end 32 | -------------------------------------------------------------------------------- /sourceserver/load-SourceServer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/load-SourceServer.lisp -------------------------------------------------------------------------------- /sourceserver/local-update.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/local-update.lisp -------------------------------------------------------------------------------- /sourceserver/merge.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/merge.lisp -------------------------------------------------------------------------------- /sourceserver/mpw-command.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/mpw-command.lisp -------------------------------------------------------------------------------- /sourceserver/mpw-project.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/mpw-project.lisp -------------------------------------------------------------------------------- /sourceserver/projector-menus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/projector-menus.lisp -------------------------------------------------------------------------------- /sourceserver/projector-ui.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/projector-ui.lisp -------------------------------------------------------------------------------- /sourceserver/projector.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/projector.lisp -------------------------------------------------------------------------------- /sourceserver/source-server.lisp: -------------------------------------------------------------------------------- 1 | ;;;-*-Mode: LISP; Package: CCL -*- 2 | 3 | ;; Change History (most recent first): 4 | ;; 1 2/16/95 slh new file, for REQUIRE 5 | ;; (do not edit before this line!!) 6 | 7 | ;;; source-server.lisp 8 | ;;; Copyright 1995 Digitool, Inc. The 'tool rules! 9 | 10 | ;; Modification History 11 | ; 12 | ; 2/16/95 slh new file 13 | 14 | (in-package :ccl) 15 | 16 | ; source-server.lisp 17 | ; For REQUIRE, loads Source Server, which is your friend. 18 | 19 | (require 'load-sourceserver) 20 | 21 | ; End of source-server.lisp 22 | -------------------------------------------------------------------------------- /sourceserver/sourceserver-command.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/sourceserver-command.lisp -------------------------------------------------------------------------------- /sourceserver/ui-utilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/sourceserver/ui-utilities.lisp -------------------------------------------------------------------------------- /wood/block-io-mcl.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/block-io-mcl.lisp -------------------------------------------------------------------------------- /wood/btrees.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/btrees.lisp -------------------------------------------------------------------------------- /wood/disk-cache-accessors.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/disk-cache-accessors.lisp -------------------------------------------------------------------------------- /wood/disk-cache-inspector.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/disk-cache-inspector.lisp -------------------------------------------------------------------------------- /wood/disk-cache.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/disk-cache.lisp -------------------------------------------------------------------------------- /wood/disk-page-hash.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/disk-page-hash.lisp -------------------------------------------------------------------------------- /wood/example.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/example.lisp -------------------------------------------------------------------------------- /wood/load-wood.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/load-wood.lisp -------------------------------------------------------------------------------- /wood/persistent-clos.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/persistent-clos.lisp -------------------------------------------------------------------------------- /wood/persistent-heap.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/persistent-heap.lisp -------------------------------------------------------------------------------- /wood/q.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/q.lisp -------------------------------------------------------------------------------- /wood/recovery.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/recovery.lisp -------------------------------------------------------------------------------- /wood/split-lfun.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/split-lfun.lisp -------------------------------------------------------------------------------- /wood/version-control.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/version-control.lisp -------------------------------------------------------------------------------- /wood/wood-gc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/wood-gc.lisp -------------------------------------------------------------------------------- /wood/wood.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/wood.lisp -------------------------------------------------------------------------------- /wood/woodequ.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binghe/MCL/97c9da028fc1a168fb33cd8472c8bf330d651507/wood/woodequ.lisp --------------------------------------------------------------------------------