queuez_hook_lifecycle.h 405 B

1234567891011121314
  1. #pragma once
  2. namespace sunrise::client::hooks::queuez {
  3. /** Attaches the queuez null-payload guard. @return True when every fix attached. */
  4. [[nodiscard]] bool install() noexcept;
  5. /** Detaches the queuez null-payload guard. */
  6. void uninstall() noexcept;
  7. /** @return True while at least one fix is attached. */
  8. [[nodiscard]] bool is_installed() noexcept;
  9. } // namespace sunrise::client::hooks::queuez