new tecs version M.Z.08.2001
This commit is contained in:
@@ -3,11 +3,16 @@
|
||||
|
||||
#define SER_BUF_LEN 320
|
||||
|
||||
typedef struct { int private; } SerChannel;
|
||||
typedef struct {
|
||||
/* private */
|
||||
int type;
|
||||
} SerChannel;
|
||||
|
||||
SerChannel *SerOpen(const char *host, int msecTmo, void (*idleHdl)(int,int));
|
||||
char *SerCmdC(SerChannel *ser, const char *cmnd);
|
||||
SerChannel *SerOpen(const char *host, int msecTmo, int (*idleHdl)(int,int));
|
||||
char *SerCmd(SerChannel *ser, char *cmnd);
|
||||
int SerClose(SerChannel *ser);
|
||||
SerChannel *SerCheck(SerChannel *ser);
|
||||
void SerClose(SerChannel *ser);
|
||||
|
||||
/* char *SerCmdC(SerChannel *ser, const char *cmnd); */
|
||||
|
||||
#endif /* _SERUTIL_H_ */
|
||||
|
||||
Reference in New Issue
Block a user