Commit b6bf594a authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Add a finalized member to message.

parent 203849d7
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment