|
Orxonox
0.0.5 Codename: Arcturus
|
Functions | |
| ENET_API void | enet_deinitialize (void) |
| Shuts down ENet globally. More... | |
| ENET_API int | enet_initialize (void) |
| Initializes ENet globally. More... | |
| ENET_API int | enet_initialize_with_callbacks (ENetVersion version, const ENetCallbacks *inits) |
| Initializes ENet globally and supplies user-overridden callbacks. More... | |
Shuts down ENet globally.
Should be called when a program that has initialized ENet exits.
Initializes ENet globally.
Must be called prior to using any functions in ENet.
| ENET_API int enet_initialize_with_callbacks | ( | ENetVersion | version, |
| const ENetCallbacks * | inits | ||
| ) |
Initializes ENet globally and supplies user-overridden callbacks.
Must be called prior to using any functions in ENet. Do not use enet_initialize() if you use this variant. Make sure the ENetCallbacks structure is zeroed out so that any additional callbacks added in future versions will be properly ignored.
| version | the constant ENET_VERSION should be supplied so ENet knows which version of ENetCallbacks struct to use |
| inits | user-overriden callbacks where any NULL callbacks will use ENet's defaults |
1.8.11