OrpheuSetStructMember
Sets the value of a member of a struct given a struct handler and the member name
Syntax
native OrpheuSetStructMember(OrpheuStruct:struct,const memberName[],any:...) /** * Retrieves the value of a member of a struct given a struct handler and the member name * * @param struct A handler to the struct * @param memberName The name of the member of the struct we want to deal with * @param any In case the value is multi cell (string or vector), an holder to receive them by ref * * @return In case the value is uni cell, the value itself */ native OrpheuGetStructMember(OrpheuStruct:struct,const memberName[],any:...) /** * Retrieves a handler to a struct that hold the addresses of the engine functions * By retrieving addresses from the struct is possible to hook them. * A easier way to achieve the same thing is by using the stock OrpheuGetEngineFunction * @return A handler to a struct that holds the engine functions */ native OrpheuStruct:OrpheuGetEngineFunctionsStruct() /** * Retrieves a handler to a struct that hold the addresses of the dll functions * By retrieving addresses from the struct is possible to hook them. * A easier way to achieve the same thing is by using the stock OrpheuGetDllFunction * @return A handler to a struct that holds the dll functions */ native OrpheuStruct:OrpheuGetDLLFunctionsStruct()
Usage
| struct | A handler to the struct |
| memberName | The name of the member of the struct we want to deal with |
Defined in
orpheu.inc
at line 132
.
This documentation was automatically generated from source.