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>
19 lines
467 B
C
19 lines
467 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtldr/modules/beep/includes/globals.h
|
|
* DESCRIPTION: XTLDR Beep Module global variables
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#ifndef __XTLDR_BEEP_GLOBALS_H
|
|
#define __XTLDR_BEEP_GLOBALS_H
|
|
|
|
#include <beep.h>
|
|
|
|
|
|
/* XTLDR protocol handler */
|
|
EXTERN PXTBL_LOADER_PROTOCOL XtLdrProto;
|
|
|
|
#endif/* __XTLDR_BEEP_GLOBALS_H */
|