This commit is contained in:
parent
f2b51ff69c
commit
3250ad67aa
@ -9,7 +9,7 @@
|
|||||||
#ifndef __XTDK_AMD64_MMTYPES_H
|
#ifndef __XTDK_AMD64_MMTYPES_H
|
||||||
#define __XTDK_AMD64_MMTYPES_H
|
#define __XTDK_AMD64_MMTYPES_H
|
||||||
|
|
||||||
#include "xtcommon.h"
|
#include "xtbase.h"
|
||||||
|
|
||||||
|
|
||||||
/* Page Table entry structure definition */
|
/* Page Table entry structure definition */
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#ifndef __XTDK_I686_MMTYPES_H
|
#ifndef __XTDK_I686_MMTYPES_H
|
||||||
#define __XTDK_I686_MMTYPES_H
|
#define __XTDK_I686_MMTYPES_H
|
||||||
|
|
||||||
#include "xtcommon.h"
|
#include "xtbase.h"
|
||||||
|
|
||||||
|
|
||||||
/* Page Table entry structure definition (with PAE support) */
|
/* Page Table entry structure definition (with PAE support) */
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: sdk/xtdk/kefuncs.h
|
* FILE: sdk/xtdk/kefuncs.h
|
||||||
* DESCRIPTION: XTOS kernel services routines definitions
|
* DESCRIPTION: XTOS kernel services routine definitions
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#ifndef __XTDK_LDRTYPES_H
|
#ifndef __XTDK_LDRTYPES_H
|
||||||
#define __XTDK_LDRTYPES_H
|
#define __XTDK_LDRTYPES_H
|
||||||
|
|
||||||
#include "xtcommon.h"
|
#include "xtbase.h"
|
||||||
|
|
||||||
|
|
||||||
/* Loader Data Table Entry Flags */
|
/* Loader Data Table Entry Flags */
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
/**
|
/**
|
||||||
* PROJECT: ExectOS
|
* PROJECT: ExectOS
|
||||||
* COPYRIGHT: See COPYING.md in the top level directory
|
* COPYRIGHT: See COPYING.md in the top level directory
|
||||||
* FILE: sdk/xtdk/xtcommon.h
|
* FILE: sdk/xtdk/xtbase.h
|
||||||
* DESCRIPTION: Basic and common XT structures for kernel and user modes
|
* DESCRIPTION: Basic and common native XT structures
|
||||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XTDK_XTCOMMON_H
|
#ifndef __XTDK_XTBASE_H
|
||||||
#define __XTDK_XTCOMMON_H
|
#define __XTDK_XTBASE_H
|
||||||
|
|
||||||
#include "xtdefs.h"
|
#include "xtdefs.h"
|
||||||
#include "xttypes.h"
|
|
||||||
#include "xtstruct.h"
|
#include "xtstruct.h"
|
||||||
|
#include "xttypes.h"
|
||||||
|
|
||||||
|
|
||||||
/* 128-bit buffer containing a unique identifier value */
|
/* 128-bit buffer containing a unique identifier value */
|
||||||
@ -51,4 +51,4 @@ typedef struct ALIGN(16) _M128
|
|||||||
LONGLONG High;
|
LONGLONG High;
|
||||||
} M128, *PM128;
|
} M128, *PM128;
|
||||||
|
|
||||||
#endif /* __XTDK_XTCOMMON_H */
|
#endif /* __XTDK_XTBASE_H */
|
@ -9,8 +9,8 @@
|
|||||||
#ifndef __XTDK_XTFW_H
|
#ifndef __XTDK_XTFW_H
|
||||||
#define __XTDK_XTFW_H
|
#define __XTDK_XTFW_H
|
||||||
|
|
||||||
|
#include "xtbase.h"
|
||||||
#include "xttypes.h"
|
#include "xttypes.h"
|
||||||
#include "xtcommon.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* Version number of the current kernel initialization block */
|
/* Version number of the current kernel initialization block */
|
||||||
|
@ -10,9 +10,9 @@
|
|||||||
#define __XTDK_XTIMAGE_H
|
#define __XTDK_XTIMAGE_H
|
||||||
|
|
||||||
#include "xtdefs.h"
|
#include "xtdefs.h"
|
||||||
|
#include "xtfw.h"
|
||||||
#include "xtstruct.h"
|
#include "xtstruct.h"
|
||||||
#include "xttypes.h"
|
#include "xttypes.h"
|
||||||
#include "xtfw.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* PE/COFF file image signatures */
|
/* PE/COFF file image signatures */
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#include ARCH_HEADER(xtstruct.h)
|
#include ARCH_HEADER(xtstruct.h)
|
||||||
|
|
||||||
/* Architecture-independent XT API */
|
/* Architecture-independent XT API */
|
||||||
#include "xtcommon.h"
|
#include "xtbase.h"
|
||||||
#include "xtdebug.h"
|
#include "xtdebug.h"
|
||||||
#include "xtimage.h"
|
#include "xtimage.h"
|
||||||
#include "xtuefi.h"
|
#include "xtuefi.h"
|
||||||
|
@ -9,10 +9,10 @@
|
|||||||
#ifndef __XTDK_XTUEFI_H
|
#ifndef __XTDK_XTUEFI_H
|
||||||
#define __XTDK_XTUEFI_H
|
#define __XTDK_XTUEFI_H
|
||||||
|
|
||||||
|
#include "xtbase.h"
|
||||||
#include "xtdefs.h"
|
#include "xtdefs.h"
|
||||||
#include "xttypes.h"
|
#include "xttypes.h"
|
||||||
#include "xtstruct.h"
|
#include "xtstruct.h"
|
||||||
#include "xtcommon.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* EFI service signatures */
|
/* EFI service signatures */
|
||||||
|
Loading…
Reference in New Issue
Block a user