XTLDR Rewrite #7

Merged
belliash merged 184 commits from xtldr_rewrite into master 2024-01-09 18:51:04 +01:00
Showing only changes of commit 332a9447a3 - Show all commits

View File

@ -2,7 +2,7 @@
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtldr/modules/dummy/dummy.c
* DESCRIPTION: Dummy XTLDR module
* DESCRIPTION: XTLDR Dummy Module
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
@ -11,8 +11,18 @@
/* Dummy module information */
XTBL_MODINFO = L"Dummy XTLDR module";
XTBL_MODINFO = L"XTLDR Dummy Module";
/**
* Stub boot routine.
*
* @param Parameters
* Supplies all parameters associated with the chosen boot menu entry.
*
* @return This routine returns a status code.
*
* @since XT 1.0
*/
XTCDECL
EFI_STATUS
BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters)
@ -29,7 +39,7 @@ BlBootDummyOS(IN PXTBL_BOOT_PARAMETERS Parameters)
* @param SystemTable
* Provides the EFI system table.
*
* @return This routine returns status code.
* @return This routine returns a status code.
*
* @since XT 1.0
*/