19 lines
551 B
C
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 */
|