AIPathConstructionMemoryObject Struct Reference
Developer-defined memory management routines for use in AIPathConstructionSuite
.
More...
#include <AIPathConstruction.h>
List of all members.
Public Attributes |
void *(* | allocate )(size_t size) |
| Allocate a block of memory.
|
void(* | dispose )(void *pointer) |
| Free allocated memory.
|
Detailed Description
Developer-defined memory management routines for use in AIPathConstructionSuite
.
The routines must conform to the semantics of C standard library functions malloc
and free
. Typically, call the corresponding SPBlocksSuite
function.
Member Data Documentation
Allocate a block of memory.
- Parameters:
-
| size | The number of bytes to allocate. |
- Returns:
- A pointer to the memory block.
Free allocated memory.
- Parameters:
-
| pointer | The pointer to the block, as returned from the allocate() call. |
The documentation for this struct was generated from the following file: