aboutsummaryrefslogtreecommitdiffstats
path: root/Library/UefiShellUfmCommandLib/panel.h
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-11-30 17:45:29 +0300
committerJoursoir <chat@joursoir.net>2021-11-30 17:45:29 +0300
commit727390c04c56c60fbe4369d76565f5607d468e11 (patch)
tree8af2ede1274f3dcc93804aa653ff13908a54d251 /Library/UefiShellUfmCommandLib/panel.h
parenta3bf9b1132d9e495a462df05c9733090a641bbf1 (diff)
downloadufm-727390c04c56c60fbe4369d76565f5607d468e11.tar.gz
ufm-727390c04c56c60fbe4369d76565f5607d468e11.tar.bz2
ufm-727390c04c56c60fbe4369d76565f5607d468e11.zip
panel: make panel_move_cursor()
Diffstat (limited to 'Library/UefiShellUfmCommandLib/panel.h')
-rw-r--r--Library/UefiShellUfmCommandLib/panel.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Library/UefiShellUfmCommandLib/panel.h b/Library/UefiShellUfmCommandLib/panel.h
index 2706dd6..1d71258 100644
--- a/Library/UefiShellUfmCommandLib/panel.h
+++ b/Library/UefiShellUfmCommandLib/panel.h
@@ -50,4 +50,14 @@ struct panel_ctx *panel_alloc(struct screen *scr, CONST CHAR16 *path,
*/
VOID panel_release(struct panel_ctx *p);
+/*
+ * Moves cursor position to specified line
+ *
+ * p: the panel on which to operate
+ * line: the line coordinate (starts from 1)
+ *
+ * return: FALSE upon failure and TRUE upon successful completion
+*/
+BOOLEAN panel_move_cursor(struct panel_ctx *p, UINTN line);
+
#endif /* UFM_PANEL_H */