exectos/sdk/xtdk/xtstruct.h
belliash 35f2c67138
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Basic XT structures
2022-07-29 16:31:59 +02:00

19 lines
551 B
C

/**
* 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 */