keystone_alloc.hpp 471 B

123456789101112131415161718192021
  1. #pragma once
  2. #include <keystone/keystone.h>
  3. namespace nkg::resource_traits::keystone {
  4. struct keystone_alloc {
  5. using handle_t = unsigned char*;
  6. static constexpr handle_t invalid_value = nullptr;
  7. [[nodiscard]]
  8. static bool is_valid(const handle_t& handle) noexcept {
  9. return handle != invalid_value;
  10. }
  11. static void release(const handle_t& handle) noexcept {
  12. ks_free(handle);
  13. }
  14. };
  15. }