added qse_awk_rtx_setprm().

changed some module functions to use referenced argument
This commit is contained in:
2013-01-05 14:38:30 +00:00
parent db32de0ceb
commit d9f961c6c3
6 changed files with 124 additions and 79 deletions

View File

@ -1454,10 +1454,22 @@ QSE_EXPORT void* qse_awk_getxtn (
);
/**
* The qse_awk_getprm() function gets primitive functions
* The qse_awk_getprm() function retrieves primitive functions
* associated. Actual function pointers are copied into a
* structure specified by @a prm.
*/
QSE_EXPORT qse_awk_prm_t* qse_awk_getprm (
qse_awk_t* awk
QSE_EXPORT void qse_awk_getprm (
qse_awk_t* awk,
qse_awk_prm_t* prm
);
/**
* The qse_awk_setprm() function changes existing primitive
* functions.
*/
QSE_EXPORT void qse_awk_setprm (
qse_awk_t* awk,
const qse_awk_prm_t* prm
);
/**