changed qse_setdflcmgrbyid() and qse_setdflcmgr() to return the cmgr object set.

changed the default cmgr to either SLMB or UTF8 depending on the availability of underlying library functions
This commit is contained in:
2015-04-27 08:37:57 +00:00
parent 0a8e84add2
commit c6644d5b52
45 changed files with 107 additions and 94 deletions

View File

@ -103,15 +103,15 @@ QSE_EXPORT qse_cmgr_t* qse_getdflcmgr (
void
);
QSE_EXPORT void qse_setdflcmgr (
QSE_EXPORT qse_cmgr_t* qse_setdflcmgr (
qse_cmgr_t* cmgr
);
/**
* The qse_setdflcmgrbyid() function finds a built-in
* cmgr for the \a id and sets it as a default cmgr.
* The qse_setdflcmgrbyid() function finds a built-in cmgr for the \a id and
* sets it as a default cmgr. It returns the pointer to the cmgr object set.
*/
QSE_EXPORT void qse_setdflcmgrbyid (
QSE_EXPORT qse_cmgr_t* qse_setdflcmgrbyid (
qse_cmgr_id_t id
);