Commit 20286abc authored by Alexandre Julliard's avatar Alexandre Julliard

Removed constants that aren't defined in Windows.

parent 0b87a19a
......@@ -1050,25 +1050,23 @@ BOOL WINAPI SetCommState(
case 57600:
case CBR_57600:
port.c_cflag |= B57600;
break;
break;
#endif
#ifdef B115200
case 115200:
case CBR_115200:
port.c_cflag |= B115200;
break;
break;
#endif
#ifdef B230400
case 230400:
case CBR_230400:
port.c_cflag |= B230400;
break;
break;
#endif
#ifdef B460800
case 460800:
case CBR_460800:
port.c_cflag |= B460800;
break;
break;
#endif
default:
COMM_SetCommError(handle,IE_BAUDRATE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment