exectos/xtldr/includes/blmod.h
belliash f8a120a24c
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Allow BlGetXtLoaderProtocol() routine to store loader protocol in a specified variable
2022-10-18 15:44:21 +02:00

23 lines
525 B
C

/**
* 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(PXT_BOOT_LOADER_PROTOCOL *LdrProtocol);
#endif /* __XTLDR_BLMOD_H */