1 // Maurice LeBrun
2 // 31-May-95
3 //
4 // Declarations for IP utility routines.
5 // Put here so as not to clutter up user codes.
6 //
7 
8 #ifndef __TCPIP_H__
9 #define __TCPIP_H__
10 
11 #include "pdf.h"
12 #include <tcl.h>
13 
14 // Modified version of the "Tdp_PacketSend" command.
15 
16 PLDLLIMPEXP_TCLTK int
17 pl_PacketSend( Tcl_Interp * interp, PLiodev * iodev, PDFstrm * pdfs );
18 
19 // Modified version of the "Tdp_PacketReceive" command.
20 
21 PLDLLIMPEXP_TCLTK int
22 pl_PacketReceive( Tcl_Interp * interp, PLiodev * iodev, PDFstrm * pdfs );
23 
24 #endif  // __TCPIP_H__
25