Home  /  Autodocs  /  dos.library

NAME

SendPkt
Sends a packet to a handler (V36)

SYNOPSIS

SendPkt(packet, port, replyport)
D1 D2 D3

void SendPkt(struct DosPacket *,struct MsgPort *,struct MsgPort *)

FUNCTION

Sends a packet to a handler and does not wait. All fields in the packet must be initialized before calling this function. The packet will be returned to 'replyport'. If you wish to use this with WaitPkt(), use the address of your pr_MsgPort for 'replyport'.

INPUTS

packet
packet to send, must be initialized and have a message.

port
pr_MsgPort of handler Process to send to.

replyport
MsgPort for the packet to come back to.

NOTES

Callable from a Task.

SEE ALSO

DoPkt(), WaitPkt(), AllocDosObject(), FreeDosObject(), AbortPkt()