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:
@ -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
|
||||
);
|
||||
|
||||
///
|
||||
|
@ -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
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user