renamed qse_getawknilval() to qse_get_awk_nil_val().

fixed a segfault issue caused by unfinised changes required for new xtn management scheme
This commit is contained in:
2019-08-29 02:19:41 +00:00
parent 24bcca71bf
commit 76d6999f37
4 changed files with 66 additions and 15 deletions

View File

@ -1046,10 +1046,20 @@ public:
/// The call() function invokes a function named \a name.
///
int call (
const char_t* name, ///< function name
Value* ret, ///< return value holder
const Value* args, ///< argument array
size_t nargs ///< number of arguments
const qse_mchar_t* name, ///< function name
Value* ret, ///< return value holder
const Value* args, ///< argument array
size_t nargs ///< number of arguments
);
///
/// The call() function invokes a function named \a name.
///
int call (
const qse_wchar_t* name, ///< function name
Value* ret, ///< return value holder
const Value* args, ///< argument array
size_t nargs ///< number of arguments
);
///

View File

@ -3341,10 +3341,10 @@ qse_mchar_t* qse_awk_rtx_wcsntombsdup (
/**
* The qse_getawknilval() function returns the pointer to the predefined
* The qse_get_awk_nil_val() function returns the pointer to the predefined
* nil value. you can call this without creating a runtime context.
*/
QSE_EXPORT qse_awk_val_t* qse_getawknilval (
QSE_EXPORT qse_awk_val_t* qse_get_awk_nil_val (
void
);