You're reading the documentation for an older, but still supported version
(GL013300).
For information on the latest version, please have a look at GL013301.
For information on the latest version, please have a look at GL013301.
SERIAL_PORT_NAME
This structure defines the name and port information of a detected serial device. It is used when listing or identifying serial communication interfaces available on the system.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
ASCII |
Serial port identifier (e.g., |
16 |
|
|
ASCII |
Serial device name or description |
Total size: 144 bytes
Defined in: DRFS.h
typedef struct _SERIAL_PORT_NAME
{
/* Serial port identifier (e.g., COM3, /dev/ttyUSB0) */
char _szPort[16];
/* Serial device name (e.g., FTDI USB-Serial Converter) */
char _szName[128];
} SERIAL_PORT_NAME, *LPSERIAL_PORT_NAME;