Module: wine Branch: master Commit: b6bf594aa571731392acace33cab4ae731a4dbc5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b6bf594aa571731392acace33c...
Author: Juan Lang juan.lang@gmail.com Date: Thu Jun 28 16:53:37 2007 -0700
crypt32: Add a finalized member to message.
---
dlls/crypt32/msg.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/crypt32/msg.c b/dlls/crypt32/msg.c index 5087308..c701107 100644 --- a/dlls/crypt32/msg.c +++ b/dlls/crypt32/msg.c @@ -40,6 +40,7 @@ typedef struct _CryptMsgBase LONG ref; DWORD open_flags; PCMSG_STREAM_INFO stream_info; + BOOL finalized; CryptMsgCloseFunc close; CryptMsgUpdateFunc update; CryptMsgGetParamFunc get_param; @@ -51,6 +52,7 @@ static inline void CryptMsgBase_Init(CryptMsgBase *msg, DWORD dwFlags, msg->ref = 1; msg->open_flags = dwFlags; msg->stream_info = pStreamInfo; + msg->finalized = FALSE; }
typedef struct _CDataEncodeMsg