Refactor part 3
This commit is contained in:
parent
a66456979a
commit
d2f06a2758
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/* XT Boot Loader configuration data */
|
/* XT Boot Loader configuration data */
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtldr/includes/xtbm.h
|
* FILE: xtldr/includes/bootman.h
|
||||||
* DESCRIPTION: XTLDR Boot Loader related structures and routines forward references
|
* DESCRIPTION: XTLDR Boot Loader related structures and routines forward references
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
@ -9,7 +9,7 @@
|
|||||||
#ifndef __XTLDR_BOOTMAN_H
|
#ifndef __XTLDR_BOOTMAN_H
|
||||||
#define __XTLDR_BOOTMAN_H
|
#define __XTLDR_BOOTMAN_H
|
||||||
|
|
||||||
#include <xtbmapi.h>
|
#include <xtblapi.h>
|
||||||
|
|
||||||
|
|
||||||
/* XTLDR routine callbacks */
|
/* XTLDR routine callbacks */
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtldr/includes/xtbm.h
|
* FILE: xtldr/includes/globals.h
|
||||||
* DESCRIPTION: XTLDR global variables
|
* DESCRIPTION: XTLDR global variables
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
@ -9,7 +9,7 @@
|
|||||||
#ifndef __XTLDR_GLOBALS_H
|
#ifndef __XTLDR_GLOBALS_H
|
||||||
#define __XTLDR_GLOBALS_H
|
#define __XTLDR_GLOBALS_H
|
||||||
|
|
||||||
#include <xtbmapi.h>
|
#include <xtblapi.h>
|
||||||
|
|
||||||
|
|
||||||
/* XT Boot Loader configuration data */
|
/* XT Boot Loader configuration data */
|
||||||
|
@ -1,18 +1,18 @@
|
|||||||
/**
|
/**
|
||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: xtldr/includes/xtbm.h
|
* FILE: xtldr/includes/xtldr.h
|
||||||
* DESCRIPTION: Top level header for XTLDR
|
* DESCRIPTION: Top level header for XTLDR
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XTLDR_XTBM_H
|
#ifndef __XTLDR_XTLDR_H
|
||||||
#define __XTLDR_XTBM_H
|
#define __XTLDR_XTLDR_H
|
||||||
|
|
||||||
#include <xtbmapi.h>
|
#include <xtblapi.h>
|
||||||
#include <xtver.h>
|
#include <xtver.h>
|
||||||
|
|
||||||
#include <globals.h>
|
#include <globals.h>
|
||||||
#include <bootman.h>
|
#include <bootman.h>
|
||||||
|
|
||||||
#endif /* __XTLDR_XTBM_H */
|
#endif /* __XTLDR_XTLDR_H */
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xtbm.h>
|
#include <xtldr.h>
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user