fixed a few line to remove compile-time warnings

This commit is contained in:
2012-02-12 13:31:27 +00:00
parent a2346f6e4b
commit 35ac9924ac
6 changed files with 19 additions and 5 deletions

View File

@ -166,12 +166,21 @@ int qse_tio_fini (
);
/**
* The qse_tio_geterrnum() function return an error code.
* The qse_tio_geterrnum() function returns the current error code.
*/
qse_tio_errnum_t qse_tio_geterrnum (
qse_tio_t* tio
);
/**
* The qse_tio_geterrnum() function changes the current error code.
* typically from within the I/O handler attached.
*/
void qse_tio_seterrnum (
qse_tio_t* tio,
qse_tio_errnum_t errnum
);
/**
* The qse_tio_getcmgr() function returns the character manager.
*/