Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d5e784bd
Commit
d5e784bd
authored
Jun 28, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Jun 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add a get param function, use it to implement CryptMsgGetParam.
parent
fa0f5bd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
msg.c
dlls/crypt32/msg.c
+14
-5
No files found.
dlls/crypt32/msg.c
View file @
d5e784bd
...
...
@@ -29,11 +29,15 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
*/
typedef
void
(
*
CryptMsgCloseFunc
)(
HCRYPTMSG
msg
);
typedef
BOOL
(
*
CryptMsgGetParamFunc
)(
HCRYPTMSG
hCryptMsg
,
DWORD
dwParamType
,
DWORD
dwIndex
,
void
*
pvData
,
DWORD
*
pcbData
);
typedef
struct
_CryptMsgBase
{
LONG
ref
;
DWORD
open_flags
;
CryptMsgCloseFunc
close
;
LONG
ref
;
DWORD
open_flags
;
CryptMsgCloseFunc
close
;
CryptMsgGetParamFunc
get_param
;
}
CryptMsgBase
;
static
inline
void
CryptMsgBase_Init
(
CryptMsgBase
*
msg
,
DWORD
dwFlags
)
...
...
@@ -174,7 +178,12 @@ BOOL WINAPI CryptMsgUpdate(HCRYPTMSG hCryptMsg, const BYTE *pbData,
BOOL
WINAPI
CryptMsgGetParam
(
HCRYPTMSG
hCryptMsg
,
DWORD
dwParamType
,
DWORD
dwIndex
,
void
*
pvData
,
DWORD
*
pcbData
)
{
FIXME
(
"(%p, %d, %d, %p, %p): stub
\n
"
,
hCryptMsg
,
dwParamType
,
dwIndex
,
CryptMsgBase
*
msg
=
(
CryptMsgBase
*
)
hCryptMsg
;
BOOL
ret
=
FALSE
;
TRACE
(
"(%p, %d, %d, %p, %p)
\n
"
,
hCryptMsg
,
dwParamType
,
dwIndex
,
pvData
,
pcbData
);
return
FALSE
;
if
(
msg
&&
msg
->
get_param
)
ret
=
msg
->
get_param
(
hCryptMsg
,
dwParamType
,
dwIndex
,
pvData
,
pcbData
);
return
ret
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment