设置拨号连接win32的波特率
我正在 Windows XP 和 Windows 7 中的代码中创建拨号连接(RasSetEntryProperties)。这些条目提供的默认波特率为 19200。
使用 Win32 如何更改 Windows XP 和 Windows 7 中的波特率?
I am creating dial-up connection in code in Windows XP and Windows 7 (RasSetEntryProperties). The entries come up with the default baud rate of 19200.
Using Win32 how do I change the baud rate in both Windows XP and Windows 7?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置通讯状态。首先调用 GetCommState,以便您可以保留不想更改的其他现有设置。
SetCommState. Call GetCommState first so you can preserve other existing settings that you don't want to change.
在创建 RAS 条目之前修改调制解调器注册表条目中的 DCB 和 MaxConnectSpeed 可以解决此问题。
Modify the DCB and MaxConnectSpeed in the modem registry entry BEFORE making the RAS entry solves this issue.