ReflectedArg

Represents information about one of the arguments passed to a function. It is used in the following:


$struct+ ReflectedArg
{
    $ConstStringZ GetName() const { return m_name; }

    ConstStringZ m_name;
    const octet_t* m_bc;
};


ConstStringZ m_name

The name of the argument represented as a pointer to a UTF-8 encoded null-terminated string (see ConstStringZ).


const octet_t* m_bc

Pointer to an array of octets which is the byte code defining the type of the function argument.