Add back MessageData to PQUEUED_MESSAGE. It was accidentally removed

svn path=/trunk/; revision=17424
This commit is contained in:
Alex Ionescu 2005-08-17 18:56:57 +00:00
parent 13b5d61c2c
commit fa4888f2fc
2 changed files with 2 additions and 1 deletions

View file

@ -192,7 +192,7 @@ RtlCreateUserThread(HANDLE ProcessHandle,
OBJECT_ATTRIBUTES ObjectAttributes;
CONTEXT Context;
DPRINT1("RtlCreateUserThread: (hProcess: %lx, Suspended: %lx,"
DPRINT("RtlCreateUserThread: (hProcess: %lx, Suspended: %lx,"
"ZeroBits: %lx, StackReserve: %lx, StackCommit: %lx,"
"StartAddress: %p, Parameter: %lx)\n", ProcessHandle,
CreateSuspended, StackZeroBits, StackReserve, StackCommit,

View file

@ -88,6 +88,7 @@ typedef struct _QUEUEDMESSAGE
PEPORT Sender;
LIST_ENTRY QueueListEntry;
PORT_MESSAGE Message;
UCHAR MessageData[0x130]; /* FIXME: HACK */
} QUEUEDMESSAGE, *PQUEUEDMESSAGE;
typedef struct _LPC_DBG_MESSAGE