19 lines
417 B
C
19 lines
417 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtldr/includes/xtldr.h
|
|
* DESCRIPTION: Top level header for XTLDR
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#ifndef __XTLDR_XTLDR_H
|
|
#define __XTLDR_XTLDR_H
|
|
|
|
#include <xtblapi.h>
|
|
#include <xtver.h>
|
|
|
|
#include <globals.h>
|
|
#include <bootman.h>
|
|
|
|
#endif /* __XTLDR_XTLDR_H */
|