docs(syscalls): add documentation for FBIOGET_SCREEN_INFO ioctl

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-02-20 02:09:09 +02:00
parent f4168e2815
commit 08319ef4c7
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A
2 changed files with 22 additions and 0 deletions

View File

@ -540,6 +540,17 @@ typedef struct FramebufferScreenInfo
__UINT32_TYPE__ Size; __UINT32_TYPE__ Size;
} FramebufferScreenInfo; } 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 #define FBIOGET_SCREEN_INFO 0xf0
/** /**

View File

@ -540,6 +540,17 @@ typedef struct FramebufferScreenInfo
__UINT32_TYPE__ Size; __UINT32_TYPE__ Size;
} FramebufferScreenInfo; } 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 #define FBIOGET_SCREEN_INFO 0xf0
/** /**