Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference
A newer version of this document is available. Customers should click here to go to the newest version.
Visible to Intel only — GUID: GUID-937CD004-16D3-45FD-95E8-698FBEEB3F06
Visible to Intel only — GUID: GUID-937CD004-16D3-45FD-95E8-698FBEEB3F06
SPORT_SPECIAL_FUNC
Serial Port I/O Function: Executes the Windows* API communications function EscapeCommFunction on the specified port. This routine is only available for Windows.
Module
USE IFPORT
result = SPORT_SPECIAL_FUNC (port,function)
port |
(Input) Integer. The port number. |
function |
(Input) INTEGER(4). The function to perform. |
Results
The result type is INTEGER(4). The result is zero if successful; otherwise, the result is a Windows* error value.
Example
USE IFPORT INTEGER(4) iresult iresult = SPORT_SPECIAL_FUNC( 2, ? ) END