OrpheuSetParam
Sets the value of an argument
Syntax
native OrpheuSetParam(num,any:...) /** * Creates a struct * * @param structType The type of the struct * * @return A handler to the struct */ native OrpheuStruct:OrpheuCreateStruct(OrpheuStructType:structType) /** * Retrieves the value of a member of a struct given the argument number the struct is and the member name * * @param num The number of the argument. The first argument would be the number "1" * @param memberName The name of the member of the struct we want to deal with * @param any If the member is multi cell, * * @return In case the value is uni cell, the value itself */ native OrpheuGetParamStructMember(num,const memberName[],any:...) /** * Sets the value of member of a struct given the argument number the struct is and the member name * * @param num The number of the argument. The first argument would be the number "1" * @param memberName The name of the member of the struct we want to deal with * @param any The new value */ native OrpheuSetParamStructMember(num,const memberName[],any:...)
Usage
| num | The number of the argument. The first argument would be the number "1" |
Defined in
orpheu.inc
at line 75
.
This documentation was automatically generated from source.