interim commit
- fixed wrong enum definitions of qse_pio_hid_t - changed code to use a static buffer if the command is short enough in qse_pio_init().
This commit is contained in:
@ -45,9 +45,9 @@ enum qse_pio_open_flag_t
|
||||
|
||||
enum qse_pio_hid_t
|
||||
{
|
||||
QSE_PIO_IN = (1 << 0),
|
||||
QSE_PIO_OUT = (1 << 1),
|
||||
QSE_PIO_ERR = (1 << 2)
|
||||
QSE_PIO_IN = 0,
|
||||
QSE_PIO_OUT = 1,
|
||||
QSE_PIO_ERR = 2
|
||||
};
|
||||
|
||||
#ifdef _WIN32
|
||||
|
Reference in New Issue
Block a user