external_free(id);
Argument | Description |
---|---|
id | The name of the dll or dylib that you want to free |
Returns: N/A
This function frees the memory associated with the dll or dylib with the given name. This should be done whenever the file in question is no longer needed in the game, normally (for example)
in an end of game event.
external_free("MyDLL.dll");
The above example code will free the memory associated with the given dll.