DetourAlloc.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. //
  2. // Copyright (c) 2009-2010 Mikko Mononen memon@inside.org
  3. //
  4. // This software is provided 'as-is', without any express or implied
  5. // warranty. In no event will the authors be held liable for any damages
  6. // arising from the use of this software.
  7. // Permission is granted to anyone to use this software for any purpose,
  8. // including commercial applications, and to alter it and redistribute it
  9. // freely, subject to the following restrictions:
  10. // 1. The origin of this software must not be misrepresented; you must not
  11. // claim that you wrote the original software. If you use this software
  12. // in a product, an acknowledgment in the product documentation would be
  13. // appreciated but is not required.
  14. // 2. Altered source versions must be plainly marked as such, and must not be
  15. // misrepresented as being the original software.
  16. // 3. This notice may not be removed or altered from any source distribution.
  17. //
  18. #ifndef DETOURALLOCATOR_H
  19. #define DETOURALLOCATOR_H
  20. /// Provides hint values to the memory allocator on how long the
  21. /// memory is expected to be used.
  22. enum dtAllocHint
  23. {
  24. DT_ALLOC_PERM, ///< Memory persist after a function call.
  25. DT_ALLOC_TEMP ///< Memory used temporarily within a function.
  26. };
  27. /// A memory allocation function.
  28. // @param[in] size The size, in bytes of memory, to allocate.
  29. // @param[in] rcAllocHint A hint to the allocator on how long the memory is expected to be in use.
  30. // @return A pointer to the beginning of the allocated memory block, or null if the allocation failed.
  31. /// @see dtAllocSetCustom
  32. typedef void* (dtAllocFunc)(int size, dtAllocHint hint);
  33. /// A memory deallocation function.
  34. /// @param[in] ptr A pointer to a memory block previously allocated using #dtAllocFunc.
  35. /// @see dtAllocSetCustom
  36. typedef void (dtFreeFunc)(void* ptr);
  37. /// Sets the base custom allocation functions to be used by Detour.
  38. /// @param[in] allocFunc The memory allocation function to be used by #dtAlloc
  39. /// @param[in] freeFunc The memory de-allocation function to be used by #dtFree
  40. void dtAllocSetCustom(dtAllocFunc *allocFunc, dtFreeFunc *freeFunc);
  41. /// Allocates a memory block.
  42. /// @param[in] size The size, in bytes of memory, to allocate.
  43. /// @param[in] hint A hint to the allocator on how long the memory is expected to be in use.
  44. /// @return A pointer to the beginning of the allocated memory block, or null if the allocation failed.
  45. /// @see dtFree
  46. void* dtAlloc(int size, dtAllocHint hint);
  47. /// Deallocates a memory block.
  48. /// @param[in] ptr A pointer to a memory block previously allocated using #dtAlloc.
  49. /// @see dtAlloc
  50. void dtFree(void* ptr);
  51. #endif