callbacks.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. @file callbacks.c
  3. @brief ENet callback functions
  4. */
  5. #define ENET_BUILDING_LIB 1
  6. #include "enet/enet.h"
  7. static ENetCallbacks callbacks = { malloc, free, rand, abort };
  8. int
  9. enet_initialize_with_callbacks (ENetVersion version, const ENetCallbacks * inits)
  10. {
  11. if (inits -> malloc != NULL || inits -> free != NULL)
  12. {
  13. if (inits -> malloc == NULL || inits -> free == NULL)
  14. return -1;
  15. callbacks.malloc = inits -> malloc;
  16. callbacks.free = inits -> free;
  17. }
  18. if (inits -> rand != NULL)
  19. callbacks.rand = inits -> rand;
  20. if (version >= ENET_VERSION_CREATE (1, 2, 2))
  21. {
  22. if (inits -> no_memory != NULL)
  23. callbacks.no_memory = inits -> no_memory;
  24. }
  25. return enet_initialize ();
  26. }
  27. void *
  28. enet_malloc (size_t size)
  29. {
  30. void * memory = callbacks.malloc (size);
  31. if (memory == NULL)
  32. callbacks.no_memory ();
  33. return memory;
  34. }
  35. void
  36. enet_free (void * memory)
  37. {
  38. callbacks.free (memory);
  39. }
  40. int
  41. enet_rand (void)
  42. {
  43. return callbacks.rand ();
  44. }