commit 2029333be7a93b98bb0356ac3e6cd8ca1c7db211 parent 6ac0f6c91dd93ef8c8820c350d54a544d5f17c37 Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Mon, 23 May 2022 09:38:44 +0200 Clarify documentation Diffstat:
M | include/clap/ext/posix-fd-support.h | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/include/clap/ext/posix-fd-support.h b/include/clap/ext/posix-fd-support.h @@ -10,7 +10,9 @@ extern "C" { #endif enum { - // IO events flags + // IO events flags, they can be used to form a mask which describes: + // - which events you are interested in (register_fd/modify_fd) + // - which events happened (on_fd) CLAP_POSIX_FD_READ = 1 << 0, CLAP_POSIX_FD_WRITE = 1 << 1, CLAP_POSIX_FD_ERROR = 1 << 2,