From a9bfa0afb0b0e899ad258f7c341759b16756fbc6 Mon Sep 17 00:00:00 2001 From: lazymio Date: Thu, 4 Nov 2021 21:22:49 +0100 Subject: [PATCH] Update comments --- include/unicorn/unicorn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index 376144e8..20c48927 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -466,9 +466,9 @@ typedef enum uc_query_type { // No input and output arguments. #define UC_CTL_IO_NONE (0) -// The arguments are used for input. +// Only input arguments for users for a write control. #define UC_CTL_IO_WRITE (1) -// The arguments are used for ouput. +// Only output arguments for users for a read control. #define UC_CTL_IO_READ (2) // The arguments include both input and output arugments. #define UC_CTL_IO_READ_WRITE (UC_CTL_IO_WRITE | UC_CTL_IO_READ)