crypt32(12/17): Add a finalized member to message

Juan Lang juan.lang at gmail.com
Thu Jun 28 19:31:49 CDT 2007


--Juan
-------------- next part --------------
From e2ca02917af86039e275b438b4f181b6553a9133 Mon Sep 17 00:00:00 2001
From: Juan Lang <juanlang at juan.corp.google.com>
Date: Thu, 28 Jun 2007 16:53:37 -0700
Subject: [PATCH] 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 d0c3467..1dbca4f 100644
--- a/dlls/crypt32/msg.c
+++ b/dlls/crypt32/msg.c
@@ -41,6 +41,7 @@ typedef struct _CryptMsgBase
     LONG                 ref;
     DWORD                open_flags;
     PCMSG_STREAM_INFO    stream_info;
+    BOOL                 finalized;
     CryptMsgCloseFunc    close;
     CryptMsgUpdateFunc   update;
     CryptMsgGetParamFunc get_param;
@@ -52,6 +53,7 @@ static inline void CryptMsgBase_Init(Cry
     msg->ref = 1;
     msg->open_flags = dwFlags;
     msg->stream_info = pStreamInfo;
+    msg->finalized = FALSE;
 }
 
 typedef struct _CDataEncodeMsg
-- 
1.4.1


More information about the wine-patches mailing list