Rename header file
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-01-05 23:09:54 +01:00
parent f2b51ff69c
commit 3250ad67aa
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
9 changed files with 14 additions and 14 deletions

View File

@ -9,7 +9,7 @@
#ifndef __XTDK_AMD64_MMTYPES_H
#define __XTDK_AMD64_MMTYPES_H
#include "xtcommon.h"
#include "xtbase.h"
/* Page Table entry structure definition */

View File

@ -9,7 +9,7 @@
#ifndef __XTDK_I686_MMTYPES_H
#define __XTDK_I686_MMTYPES_H
#include "xtcommon.h"
#include "xtbase.h"
/* Page Table entry structure definition (with PAE support) */

View File

@ -2,7 +2,7 @@
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/kefuncs.h
* DESCRIPTION: XTOS kernel services routines definitions
* DESCRIPTION: XTOS kernel services routine definitions
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/

View File

@ -9,7 +9,7 @@
#ifndef __XTDK_LDRTYPES_H
#define __XTDK_LDRTYPES_H
#include "xtcommon.h"
#include "xtbase.h"
/* Loader Data Table Entry Flags */

View File

@ -1,17 +1,17 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/xtcommon.h
* DESCRIPTION: Basic and common XT structures for kernel and user modes
* FILE: sdk/xtdk/xtbase.h
* DESCRIPTION: Basic and common native XT structures
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_XTCOMMON_H
#define __XTDK_XTCOMMON_H
#ifndef __XTDK_XTBASE_H
#define __XTDK_XTBASE_H
#include "xtdefs.h"
#include "xttypes.h"
#include "xtstruct.h"
#include "xttypes.h"
/* 128-bit buffer containing a unique identifier value */
@ -51,4 +51,4 @@ typedef struct ALIGN(16) _M128
LONGLONG High;
} M128, *PM128;
#endif /* __XTDK_XTCOMMON_H */
#endif /* __XTDK_XTBASE_H */

View File

@ -9,8 +9,8 @@
#ifndef __XTDK_XTFW_H
#define __XTDK_XTFW_H
#include "xtbase.h"
#include "xttypes.h"
#include "xtcommon.h"
/* Version number of the current kernel initialization block */

View File

@ -10,9 +10,9 @@
#define __XTDK_XTIMAGE_H
#include "xtdefs.h"
#include "xtfw.h"
#include "xtstruct.h"
#include "xttypes.h"
#include "xtfw.h"
/* PE/COFF file image signatures */

View File

@ -19,7 +19,7 @@
#include ARCH_HEADER(xtstruct.h)
/* Architecture-independent XT API */
#include "xtcommon.h"
#include "xtbase.h"
#include "xtdebug.h"
#include "xtimage.h"
#include "xtuefi.h"

View File

@ -9,10 +9,10 @@
#ifndef __XTDK_XTUEFI_H
#define __XTDK_XTUEFI_H
#include "xtbase.h"
#include "xtdefs.h"
#include "xttypes.h"
#include "xtstruct.h"
#include "xtcommon.h"
/* EFI service signatures */