MemoryUse
Description:
[ CCode ( cprefix = "REST_MEMORY_" , has_type_id = false ) ]
public enum MemoryUse
Content:
Enum values:
- COPY -
Param will make a copy of the memory block.
- STATIC - the memory block can be assumed to
always exist for the lifetime of the parameter, Param will use it directly.
- TAKE -
Param will take ownership of the memory block, and g_free it when it isn't used.