se abrir o arquivo "qextserialport.h" vai poder ver qual o tipo de "variável":
@
/**
structure to contain port settings
*/
struct PortSettings
{
BaudRateType BaudRate;
DataBitsType DataBits;
ParityType Parity;
StopBitsType StopBits;
FlowType FlowControl;
long Timeout_Millisec;
};
@
@
enum BaudRateType
{
BAUD110 = 110,
BAUD300 = 300,
...
};
enum DataBitsType
{
DATA_5 = 5,
DATA_6 = 6,
...
};
enum ParityType
{
PAR_NONE,
PAR_ODD,
...
};
enum StopBitsType
{
STOP_1,
...
};
enum FlowType
{
FLOW_OFF,
FLOW_HARDWARE,
...
};
@