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:
2009-01-08 08:14:06 +00:00
parent 37344d7e09
commit 86a1d88307
5 changed files with 68 additions and 9 deletions

View File

@ -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