unicorn_handle.hpp 457 B

12345678910111213141516171819202122
  1. #pragma once
  2. #include <unicorn/unicorn.h>
  3. namespace nkg::resource_traits::unicorn {
  4. struct unicorn_handle {
  5. using handle_t = uc_engine*;
  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) {
  12. uc_close(handle);
  13. }
  14. };
  15. }