Hi.
I try use this code to get param names:
...
asIScriptFunction* pMeth = pType->GetMethodByIndex(i);
for (unsigned l = 0, m = pMeth->GetParamCount(); l < m; l++) {
const char *name, *pDef;
int typeID;
pMeth->GetParam(l, &typeID, 0, &name, &pDef);
...
but has no param names, no default values.
How I can get it?