fixed some build problems

This commit is contained in:
2013-10-21 08:39:53 +00:00
parent f95e8594b8
commit a629a06cdc
9 changed files with 77 additions and 15 deletions

View File

@ -37,6 +37,7 @@ enum qse_sio_flag_t
* qse_fio_flag_t enumerators. you can use values between
* (1<<0) and (1<<7) inclusive reserved in qse_fio_flag_t.
* the range is represented by QSE_FIO_RESERVED. */
QSE_SIO_LINEBREAK = (1 << 0), /* expand \n to a system line-break convention if necessary */
QSE_SIO_IGNOREMBWCERR = (1 << 1),
QSE_SIO_NOAUTOFLUSH = (1 << 2),
QSE_SIO_KEEPPATH = (1 << 3),
@ -116,7 +117,7 @@ struct qse_sio_t
qse_char_t* path;
#if defined(_WIN32)
#if defined(_WIN32) || defined(__OS2__)
int status;
#endif
};

View File

@ -623,7 +623,7 @@ QSE_EXPORT qse_xli_str_t* qse_xli_addsegtostr (
* character string each of whose segment is delimited by '\0' and the last
* segment is delimited by double '\0's. The string tags are not included.
*/
qse_char_t* qse_xli_dupflatstr (
QSE_EXPORT qse_char_t* qse_xli_dupflatstr (
qse_xli_t* xli,
qse_xli_str_t* str,
qse_size_t* len,