diff --git a/Kernel/include/interface/syscalls.h b/Kernel/include/interface/syscalls.h index 157a9b50..960229e6 100644 --- a/Kernel/include/interface/syscalls.h +++ b/Kernel/include/interface/syscalls.h @@ -540,6 +540,17 @@ typedef struct FramebufferScreenInfo __UINT32_TYPE__ Size; } FramebufferScreenInfo; +/** + * @brief Get framebuffer screen info + * + * @code + * struct FramebufferScreenInfo info; + * int ioctl(fd, FBIOGET_SCREEN_INFO, &info); + * @endcode + * + * @param fd File descriptor of the framebuffer device + * @param info Pointer to the framebuffer screen info structure + */ #define FBIOGET_SCREEN_INFO 0xf0 /**