|
| #define | PPCHeader |
| |
| #define | NewPPCCompUPP(userRoutine) |
| |
| #define | NewPPCFilterUPP(userRoutine) |
| |
|
#define | DisposePPCCompUPP(userUPP) DisposeRoutineDescriptor(userUPP) |
| |
|
#define | DisposePPCFilterUPP(userUPP) DisposeRoutineDescriptor(userUPP) |
| |
|
#define | InvokePPCCompUPP(pb, userUPP) CALL_ONE_PARAMETER_UPP((userUPP), uppPPCCompProcInfo, (pb)) |
| |
| #define | InvokePPCFilterUPP(name, port, userUPP) |
| |
|
#define | NewPPCCompProc(userRoutine) NewPPCCompUPP(userRoutine) |
| |
|
#define | NewPPCFilterProc(userRoutine) NewPPCFilterUPP(userRoutine) |
| |
|
#define | CallPPCCompProc(userRoutine, pb) InvokePPCCompUPP(pb, userRoutine) |
| |
|
#define | CallPPCFilterProc(userRoutine, name, port) InvokePPCFilterUPP(name, port, userRoutine) |
| |
| #define | PPCOpen(pb, async) ((async) ? PPCOpenAsync(pb) : PPCOpenSync(pb)) |
| |
|
#define | PPCInform(pb, async) ((async) ? PPCInformAsync(pb) : PPCInformSync(pb)) |
| |
|
#define | PPCStart(pb, async) ((async) ? PPCStartAsync(pb) : PPCStartSync(pb)) |
| |
|
#define | PPCAccept(pb, async) ((async) ? PPCAcceptAsync(pb) : PPCAcceptSync(pb)) |
| |
|
#define | PPCReject(pb, async) ((async) ? PPCRejectAsync(pb) : PPCRejectSync(pb)) |
| |
|
#define | PPCWrite(pb, async) ((async) ? PPCWriteAsync(pb) : PPCWriteSync(pb)) |
| |
|
#define | PPCRead(pb, async) ((async) ? PPCReadAsync(pb) : PPCReadSync(pb)) |
| |
|
#define | PPCEnd(pb, async) ((async) ? PPCEndAsync(pb) : PPCEndSync(pb)) |
| |
|
#define | PPCClose(pb, async) ((async) ? PPCCloseAsync(pb) : PPCCloseSync(pb)) |
| |
|
#define | IPCListPorts(pb, async) ((async) ? IPCListPortsAsync(pb) : IPCListPortsSync(pb)) |
| |
|
| enum | { ppcServiceRealTime = 1
} |
| |
| enum | { ppcNoLocation = 0
, ppcNBPLocation = 1
, ppcNBPTypeLocation
, ppcXTIAddrLocation = 3
} |
| |
| enum | { ppcByCreatorAndType
, ppcByString = 2
} |
| |
| enum | { ppcLocalOrigin = 1
, ppcRemoteOrigin = 2
} |
| |
| enum | { kMaxPPCXTIAddress = 95
} |
| |
| enum | { kINETAddrType = 2
, kDNSAddrType = 42
} |
| |
| enum | { uppPPCCompProcInfo = 0x000000C0
} |
| |
| enum | { uppPPCFilterProcInfo = 0x000003D0
} |
| |
|
|
typedef | CALLBACK_API (void, PPCCompProcPtr)(PPCParamBlockPtr pb) |
| |
|
typedef | STACK_UPP_TYPE (PPCCompProcPtr) PPCCompUPP |
| |
| OSErr | PPCInit (void) |
| |
| OSErr | PPCOpenSync (PPCOpenPBPtr pb) |
| |
| OSErr | PPCOpenAsync (PPCOpenPBPtr pb) |
| |
| OSErr | PPCInformSync (PPCInformPBPtr pb) |
| |
| OSErr | PPCInformAsync (PPCInformPBPtr pb) |
| |
| OSErr | PPCStartSync (PPCStartPBPtr pb) |
| |
| OSErr | PPCStartAsync (PPCStartPBPtr pb) |
| |
| OSErr | PPCAcceptSync (PPCAcceptPBPtr pb) |
| |
| OSErr | PPCAcceptAsync (PPCAcceptPBPtr pb) |
| |
| OSErr | PPCRejectSync (PPCRejectPBPtr pb) |
| |
| OSErr | PPCRejectAsync (PPCRejectPBPtr pb) |
| |
| OSErr | PPCWriteSync (PPCWritePBPtr pb) |
| |
| OSErr | PPCWriteAsync (PPCWritePBPtr pb) |
| |
| OSErr | PPCReadSync (PPCReadPBPtr pb) |
| |
| OSErr | PPCReadAsync (PPCReadPBPtr pb) |
| |
| OSErr | PPCEndSync (PPCEndPBPtr pb) |
| |
| OSErr | PPCEndAsync (PPCEndPBPtr pb) |
| |
| OSErr | PPCCloseSync (PPCClosePBPtr pb) |
| |
| OSErr | PPCCloseAsync (PPCClosePBPtr pb) |
| |
| OSErr | IPCListPortsSync (IPCListPortsPBPtr pb) |
| |
| OSErr | IPCListPortsAsync (IPCListPortsPBPtr pb) |
| |
| OSErr | IPCKillListPorts (IPCListPortsPBPtr pb) |
| |
| OSErr | DeleteUserIdentity (unsigned long userRef) |
| |
| OSErr | GetDefaultUser (unsigned long *userRef, Str32 userName) |
| |
| OSErr | StartSecureSession (PPCStartPBPtr pb, Str32 userName, Boolean useDefault, Boolean allowGuest, Boolean *guestSelected, ConstStr255Param prompt) |
| |
|
typedef | CALLBACK_API (Boolean, PPCFilterProcPtr)(LocationNamePtr name |
| |
|
typedef | STACK_UPP_TYPE (PPCFilterProcPtr) PPCFilterUPP |
| |
| PPCCompUPP | NewPPCCompUPP (PPCCompProcPtr userRoutine) |
| |
| PPCFilterUPP | NewPPCFilterUPP (PPCFilterProcPtr userRoutine) |
| |
| void | DisposePPCCompUPP (PPCCompUPP userUPP) |
| |
| void | DisposePPCFilterUPP (PPCFilterUPP userUPP) |
| |
| void | InvokePPCCompUPP (PPCParamBlockPtr pb, PPCCompUPP userUPP) |
| |
| Boolean | InvokePPCFilterUPP (LocationNamePtr name, PortInfoPtr port, PPCFilterUPP userUPP) |
| |
| OSErr | PPCBrowser (ConstStr255Param prompt, ConstStr255Param applListLabel, Boolean defaultSpecified, LocationNameRec *theLocation, PortInfoRec *thePortInfo, PPCFilterUPP portFilter, ConstStr32Param theLocNBPType) |
| |
Program-Program Communications Toolbox Interfaces.
- Introduced In: Mac OS 9
- Avaliable From: Universal Interfaces 3.4.1
- Copyright: © 1989-2001 by Apple Computer, Inc., all rights reserved
For bug reports, consult the following page on the World Wide Web:
http://developer.apple.com/bugreporter/