Move blproto.c and add missing header file
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-10-12 23:14:33 +02:00
parent 3fa2ec90aa
commit 3894d4fd75
3 changed files with 24 additions and 2 deletions

22
xtldr/includes/blmod.h Normal file
View File

@@ -0,0 +1,22 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtldr/includes/blmod.h
* DESCRIPTION: XTLDR modules support
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTLDR_BLMOD_H
#define __XTLDR_BLMOD_H
#include <xtkmapi.h>
#include <bldefs.h>
/* EFI XT Loader Protocol */
EXTERN PXT_BOOT_LOADER_PROTOCOL EfiXtLdrProtocol;
EFI_STATUS
BlGetXtLoaderProtocol();
#endif /* __XTLDR_BLMOD_H */