Module: wine Branch: refs/heads/master Commit: 7ea0b860c5ade99f9d7d20d81e3e37644ca0e39a URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=7ea0b860c5ade99f9d7d20d8...
Author: Robert Shearman rob@codeweavers.com Date: Sat May 13 16:58:56 2006 +0100
rpcrt4: Fix the fault packet structure to comply with the DCE/RPC specification.
---
dlls/rpcrt4/rpc_defs.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/rpcrt4/rpc_defs.h b/dlls/rpcrt4/rpc_defs.h index 5d23600..454c1c6 100644 --- a/dlls/rpcrt4/rpc_defs.h +++ b/dlls/rpcrt4/rpc_defs.h @@ -58,10 +58,10 @@ typedef struct RpcPktCommonHdr common; unsigned long alloc_hint; /* Data size in bytes excluding header and tail. */ unsigned short context_id; /* Presentation context identifier */ - unsigned char alert_count; /* Pending alert count */ - unsigned char padding[3]; /* Force alignment! */ + unsigned char cancel_count; /* Received cancel count */ + unsigned char reserved; /* Force alignment! */ unsigned long status; /* Runtime fault code (RPC_STATUS) */ - unsigned long reserved; + unsigned long reserved2; } RpcPktFaultHdr;
typedef struct