crypt32: Add a finalized member to message.

This commit is contained in:
Juan Lang 2007-06-28 16:53:37 -07:00 committed by Alexandre Julliard
parent 203849d75d
commit b6bf594aa5
1 changed files with 2 additions and 0 deletions

View File

@ -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