![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include "Detour/DetourAlloc.h"Functions | |
| void | dtAllocSetCustom (dtAllocFunc *allocFunc, dtFreeFunc *freeFunc) |
| void * | dtAlloc (int size, dtAllocHint hint) |
| void | dtFree (void *ptr, dtAllocHint hint) |
| void | dtMemCpy (void *dst, void *src, int size) |
| void * dtAlloc | ( | int | size, |
| dtAllocHint | hint | ||
| ) |
Allocates a memory block.
| [in] | size | The size, in bytes of memory, to allocate. |
| [in] | hint | A hint to the allocator on how long the memory is expected to be in use. |
| void dtAllocSetCustom | ( | dtAllocFunc * | allocFunc, |
| dtFreeFunc * | freeFunc | ||
| ) |
| void dtFree | ( | void * | ptr, |
| dtAllocHint | hint | ||
| ) |