HOWTO: 指定大于 COM9 串行端口(微软说明)

CreateFile() 可用于获取一个串行端口的句柄。"Win32 程序员参考""CreateFile()"的条目提到共享模式必须是 0、 创建参数必须是 OPEN_EXISTING,该模板必须为 NULL。

CreateFile() 是文件的成功的当您使用"COM1"通过"COM9"名称 ;不过,该消息

INVALID_HANDLE_VALUE

如果您使用"COM10"返回或更高版本。

如果端口的名称为 //./COM10,在 CreateFile() 的调用中指定的串行端口的正确方法如下所示:

   CreateFile(
      "////.//COM10",     // address of name of the communications device
      fdwAccess,          // access (read-write) mode
      0,                  // share mode
      NULL,               // address of security descriptor
      OPEN_EXISTING,      // how to create
      0,                  // file attributes
      NULL                // handle of file with attributes to copy
   );

				

备注: 此语法也适用于通过 COM9 端口 COM1。某些主板将让您选择的端口名称自己。此语法工程以及这些名称。

http://www.microsofttranslator.com/BV.aspx?ref=CSSKB&from=en&to=zh-chs&a=http://support.microsoft.com/kb/115831/en-us?fr=1

你可能感兴趣的:(File,Security,null,微软,Descriptor,attributes)