LayoutPools.h 287 B

1234567891011121314151617
  1. #pragma once
  2. #include "../../../Include/RmlUi/Core/Types.h"
  3. namespace Rml {
  4. namespace LayoutPools {
  5. void Initialize();
  6. void Shutdown();
  7. void* AllocateLayoutChunk(size_t size);
  8. void DeallocateLayoutChunk(void* chunk, size_t size);
  9. } // namespace LayoutPools
  10. } // namespace Rml