dxx-rebirth/arch/win32/serial.c
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

42 lines
397 B
C

void com_done(void)
{
}
int com_init(void)
{
return 0;
}
int com_read(char *buffer, int len, int timeout_value)
{
return -1;
}
int com_write(char *buffer, int len)
{
return -1;
}
void com_port_hangup()
{
}
int com_getdcd()
{
return -1;
}
void com_flushbuffers()
{
}
void com_setbaudrate(int rate)
{
}
int com_readline(int timeout_value, char *input_buffer,int len)
{
return 0;
}