Table of Contents

zfunc_GetReturnTypeID

Description

Retrieve the variable type ID of the return value of a Zeolite extension function.

Files

Declaration Zeolite.h
Implementation Zeolite.cpp

Function prototype

long zfunc_GetReturnTypeID(ZFUNC hFunc);

Arguments

Name Type Comment
hFunc ZFUNC A handle to a Zeolite extension function, the return type of which is to be retrieved.

Return value

Zero if an error occurred, and a valid non-zero (positive or negative) return type ID otherwise. The name of the return type, as a string, may be retrieved using the ztype_GetName function.

Comments

None.