forked from xt-sys/exectos
18 lines
583 B
C
18 lines
583 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: sdk/xtdk/amd64/xtstruct.h
|
|
* DESCRIPTION: XT structures forward references specific to AMD64 architecture
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#ifndef __XTDK_AMD64_XTSTRUCT_H
|
|
#define __XTDK_AMD64_XTSTRUCT_H
|
|
|
|
|
|
/* Architecture-related structures forward references */
|
|
typedef struct _CPUID_REGISTERS CPUID_REGISTERS, *PCPUID_REGISTERS;
|
|
typedef struct _HARDWARE_PTE HARDWARE_PTE, *PHARDWARE_PTE;
|
|
|
|
#endif /* __XTDK_AMD64_XTSTRUCT_H */
|