changed mod/ffi.c for some function name changes
This commit is contained in:
parent
c85bf336ad
commit
c6becb356f
@ -406,9 +406,9 @@ static moo_pfrc_t pf_call (moo_t* moo, moo_ooi_t nargs)
|
|||||||
r = dcCallPointer (ffi->dc, f);
|
r = dcCallPointer (ffi->dc, f);
|
||||||
|
|
||||||
#if defined(MOO_OOCH_IS_UCH)
|
#if defined(MOO_OOCH_IS_UCH)
|
||||||
s = moo_makestringwithbchars (moo, r, moo_countbcstr(r));
|
s = moo_makestringwithbchars (moo, r, moo_count_bcstr(r));
|
||||||
#else
|
#else
|
||||||
s = moo_makestring(moo, r, moo_countbcstr(r));
|
s = moo_makestring(moo, r, moo_count_bcstr(r));
|
||||||
#endif
|
#endif
|
||||||
if (!s)
|
if (!s)
|
||||||
{
|
{
|
||||||
@ -428,9 +428,9 @@ static moo_pfrc_t pf_call (moo_t* moo, moo_ooi_t nargs)
|
|||||||
r = dcCallPointer (ffi->dc, f);
|
r = dcCallPointer (ffi->dc, f);
|
||||||
|
|
||||||
#if defined(MOO_OOCH_IS_UCH)
|
#if defined(MOO_OOCH_IS_UCH)
|
||||||
s = moo_makestring(moo, r, moo_countucstr(r));
|
s = moo_makestring(moo, r, moo_count_ucstr(r));
|
||||||
#else
|
#else
|
||||||
s = moo_makestringwithuchars(moo, r, moo_countucstr(r));
|
s = moo_makestringwithuchars(moo, r, moo_count_ucstr(r));
|
||||||
#endif
|
#endif
|
||||||
if (!s)
|
if (!s)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user