Basic XT structures

This commit is contained in:
2022-07-29 16:31:59 +02:00
parent 0fb2c6875a
commit 35f2c67138
6 changed files with 97 additions and 3 deletions

18
sdk/xtdk/xtstruct.h Normal file
View File

@@ -0,0 +1,18 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/xtstruct.h
* DESCRIPTION: XT structures forward references
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_XTSTRUCT_H
#define __XTDK_XTSTRUCT_H
/* Structures forward references */
typedef struct _LIST_ENTRY LIST_ENTRY, *PLIST_ENTRY;
typedef struct _LIST_ENTRY32 LIST_ENTRY32, *PLIST_ENTRY32;
typedef struct _LIST_ENTRY64 LIST_ENTRY64, *PLIST_ENTRY64;
#endif /* __XTDK_XTSTRUCT_H */