/* * Copyright (c) 2021, Ali Mohammad Pur * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace UserspaceEmulator { enum class Command { MarkROIStart = 5, MarkROIEnd = 6, }; inline void control(Command command) { emuctl(to_underlying(command), 0, 0); } }