Reviewed-on: #7 Reviewed-by: Piotr Likoski <likoski@noreply.codingworkshop.git> Co-authored-by: Rafal Kupiec <belliash@codingworkshop.eu.org> Co-committed-by: Rafal Kupiec <belliash@codingworkshop.eu.org>
22 lines
552 B
C
22 lines
552 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtldr/modules/dummy/includes/globals.h
|
|
* DESCRIPTION: XTLDR Dummy Module global variables
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#ifndef __XTLDR_DUMMY_GLOBALS_H
|
|
#define __XTLDR_DUMMY_GLOBALS_H
|
|
|
|
#include <dummy.h>
|
|
|
|
|
|
/* XTLDR protocol handler */
|
|
EXTERN PXTBL_LOADER_PROTOCOL XtLdrProto;
|
|
|
|
/* Dummy Boot Protocol handler */
|
|
EXTERN XTBL_BOOT_PROTOCOL BlpDummyProtocol;
|
|
|
|
#endif/* __XTLDR_DUMMY_GLOBALS_H */
|