Fixed definition of EPROCESS to work with the forward declaration in ketypes.h

svn path=/trunk/; revision=1836
This commit is contained in:
Phillip Susi 2001-04-26 13:29:58 +00:00
parent a1f93462d3
commit 39b80bfefd

View file

@ -351,7 +351,7 @@ typedef struct _KPROCESS
struct _WIN32PROCESSDATA;
typedef struct _EPROCESS
struct _EPROCESS
{
/* Microkernel specific process state. */
KPROCESS Pcb; /* 000 */
@ -463,7 +463,7 @@ typedef struct _EPROCESS
* Added by Philip Susi for list of threads in process
*/
LIST_ENTRY ThreadListHead;
} EPROCESS, *PEPROCESS;
};
#define PROCESS_STATE_TERMINATED (1)
#define PROCESS_STATE_ACTIVE (2)