Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
8e1151ec
Commit
8e1151ec
authored
Sep 25, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Sep 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Partially implement CryptQueryObject.
parent
d082517c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
13 deletions
+2
-13
Makefile.in
dlls/crypt32/Makefile.in
+2
-0
main.c
dlls/crypt32/main.c
+0
-13
object.c
dlls/crypt32/object.c
+0
-0
No files found.
dlls/crypt32/Makefile.in
View file @
8e1151ec
...
@@ -6,6 +6,7 @@ VPATH = @srcdir@
...
@@ -6,6 +6,7 @@ VPATH = @srcdir@
MODULE
=
crypt32.dll
MODULE
=
crypt32.dll
IMPORTLIB
=
libcrypt32.
$(IMPLIBEXT)
IMPORTLIB
=
libcrypt32.
$(IMPLIBEXT)
IMPORTS
=
user32 advapi32 kernel32 ntdll
IMPORTS
=
user32 advapi32 kernel32 ntdll
DELAYIMPORTS
=
imagehlp
C_SRCS
=
\
C_SRCS
=
\
base64.c
\
base64.c
\
...
@@ -19,6 +20,7 @@ C_SRCS = \
...
@@ -19,6 +20,7 @@ C_SRCS = \
filestore.c
\
filestore.c
\
main.c
\
main.c
\
msg.c
\
msg.c
\
object.c
\
oid.c
\
oid.c
\
proplist.c
\
proplist.c
\
protectdata.c
\
protectdata.c
\
...
...
dlls/crypt32/main.c
View file @
8e1151ec
...
@@ -229,16 +229,3 @@ BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
...
@@ -229,16 +229,3 @@ BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
debugstr_a
(
lpszStructType
),
pbEncoded
,
cbEncoded
,
pbFormat
,
pcbFormat
);
debugstr_a
(
lpszStructType
),
pbEncoded
,
cbEncoded
,
pbFormat
,
pcbFormat
);
return
FALSE
;
return
FALSE
;
}
}
BOOL
WINAPI
CryptQueryObject
(
DWORD
dwObjectType
,
const
void
*
pvObject
,
DWORD
dwExpectedContentTypeFlags
,
DWORD
dwExpectedFormatTypeFlags
,
DWORD
dwFlags
,
DWORD
*
pdwMsgAndCertEncodingType
,
DWORD
*
pdwContentType
,
DWORD
*
pdwFormatType
,
HCERTSTORE
*
phCertStore
,
HCRYPTMSG
*
phMsg
,
const
void
**
ppvContext
)
{
FIXME
(
"%08x %p %08x %08x %08x %p %p %p %p %p %p
\n
"
,
dwObjectType
,
pvObject
,
dwExpectedContentTypeFlags
,
dwExpectedFormatTypeFlags
,
dwFlags
,
pdwMsgAndCertEncodingType
,
pdwContentType
,
pdwFormatType
,
phCertStore
,
phMsg
,
ppvContext
);
return
FALSE
;
}
dlls/crypt32/object.c
0 → 100644
View file @
8e1151ec
This diff is collapsed.
Click to expand it.
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