그런데, COM10번 이상을 이렇게 하면 정상적으로 열리지 않습니다.
다음과 같이 열어야 정상적으로 열립니다.
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 );
위의 코드는 COM1~COM9에 대해서도 호환이 있어서, 그대로 사용할 수 있습니다.