mirror of
https://github.com/elliotnunn/supermario.git
synced 2024-11-22 04:31:30 +00:00
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
;
|
||
; File: PPCPriv.a
|
||
;
|
||
; Contains: Private interface to the PPC Toolbox.
|
||
;
|
||
; Written by: Eric M. Trehus
|
||
;
|
||
; Copyright: © 1990-1991 by Apple Computer, Inc., all rights reserved.
|
||
;
|
||
; Change History (most recent first):
|
||
;
|
||
; <7> 8/22/91 JSM Clean up header.
|
||
; <6> 1/30/91 gbm sab, #38: Change the ‘already including this file’ variable to
|
||
; all uppercase (for security reasons)
|
||
; <5> 10/24/90 EMT Add some more internal calls
|
||
; <4> 10/15/90 JSM <stb> Add ppcIdleCmd.
|
||
; <3> 9/16/90 JSM Set correct identifier to 1.
|
||
; <2> 8/6/90 S Included CheckDupNBPNameCmd.
|
||
; <1> 5/31/90 EMT Define command constants for 2 new internal calls for PPC
|
||
; Toolbox
|
||
;
|
||
|
||
IF &TYPE('__INCLUDINGPPCPRIV__') = 'UNDEFINED' THEN
|
||
__INCLUDINGPPCPRIV__ SET 1
|
||
|
||
; selectors for private calls to the PPC Toolbox
|
||
|
||
PPCRemoveCmd EQU -1
|
||
ppcIdleCmd EQU -2
|
||
PPCEnableCmd EQU -3
|
||
PPCDisableCmd EQU -4
|
||
CountAcceptedNetworkSessionsCmd EQU -5
|
||
CloseUserSessionsCmd EQU -6
|
||
CheckDupNBPNameCmd EQU -7
|
||
|
||
ENDIF ; already included... |