From 2c6525cedd878cdabbabc01b89c3f1591dbd0e17 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Sun, 7 Jan 2024 19:35:23 +0100 Subject: [PATCH] Add shell related routines documentation --- xtldr/shell.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/xtldr/shell.c b/xtldr/shell.c index a9d58b7..bd1d159 100644 --- a/xtldr/shell.c +++ b/xtldr/shell.c @@ -9,6 +9,13 @@ #include +/** + * Starts XTLDR shell. + * + * @return This routine does not return any value. + * + * @since XT 1.0 + */ XTCDECL VOID BlStartLoaderShell() @@ -21,6 +28,13 @@ BlStartLoaderShell() for(;;); } +/** + * Prints XTLDR shell prompt. + * + * @return This routine does not return any value. + * + * @since XT 1.0 + */ XTCDECL VOID BlpPrintShellPrompt()