9 lines
283 B
C
9 lines
283 B
C
#define SER_BUF_LEN 320
|
|
|
|
typedef struct { int private; } SerChannel;
|
|
|
|
SerChannel *SerOpen(const char *host, int logIt, int msecTmo, void (*idleHdl)(int,int));
|
|
char *SerCmdC(SerChannel *ser, const char *cmnd);
|
|
char *SerCmd(SerChannel *ser, char *cmnd);
|
|
int SerClose(SerChannel *ser);
|