Important: The information in this document is obsolete and should not be used for new development.
CopyToMapping
You can use theCopyToMapping
function to copy a mapping from one location to another location.
gxMapping *CopyToMapping(gxMapping *target, const gxMapping *source);
target
- A pointer to the destination mapping. On return, it is a copy of the source mapping.
source
- A pointer to the mapping to be copied.
- function result
- A pointer to the copied mapping, which is also the target mapping.
DESCRIPTION
TheCopyToMapping
function copies the mapping pointed to by thesource
parameter into the location pointed to by thetarget
parameter. Note that it may be faster in C to simply copy thegxMapping
structure into anothergxMapping
structure than to call this function.ERRORS, WARNINGS, AND NOTICES
Errors mapping_is_nil