Update comments

This commit is contained in:
lazymio
2021-11-04 21:22:49 +01:00
parent 96fc0bf6bc
commit a9bfa0afb0

View File

@ -466,9 +466,9 @@ typedef enum uc_query_type {
// No input and output arguments. // No input and output arguments.
#define UC_CTL_IO_NONE (0) #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) #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) #define UC_CTL_IO_READ (2)
// The arguments include both input and output arugments. // The arguments include both input and output arugments.
#define UC_CTL_IO_READ_WRITE (UC_CTL_IO_WRITE | UC_CTL_IO_READ) #define UC_CTL_IO_READ_WRITE (UC_CTL_IO_WRITE | UC_CTL_IO_READ)