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
df62b94c
Commit
df62b94c
authored
Oct 17, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32/tests: Compile with -D__WINESRC__.
parent
bfd2c533
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/crypt32/tests/Makefile.in
+0
-1
encode.c
dlls/crypt32/tests/encode.c
+3
-3
No files found.
dlls/crypt32/tests/Makefile.in
View file @
df62b94c
TESTDLL
=
crypt32.dll
IMPORTS
=
crypt32 advapi32
EXTRADEFS
=
-U__WINESRC__
-DWINE_STRICT_PROTOTYPES
-DWINE_NO_NAMELESS_EXTENSION
-DWIDL_C_INLINE_WRAPPERS
C_SRCS
=
\
base64.c
\
...
...
dlls/crypt32/tests/encode.c
View file @
df62b94c
...
...
@@ -8054,9 +8054,9 @@ static void testPortPublicKeyInfo(void)
PCERT_PUBLIC_KEY_INFO
info
=
NULL
;
/* Just in case a previous run failed, delete this thing */
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
,
PROV_RSA_FULL
,
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
_A
,
PROV_RSA_FULL
,
CRYPT_DELETEKEYSET
);
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
,
PROV_RSA_FULL
,
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
_A
,
PROV_RSA_FULL
,
CRYPT_NEWKEYSET
);
ok
(
ret
,
"CryptAcquireContextA failed
\n
"
);
...
...
@@ -8065,7 +8065,7 @@ static void testPortPublicKeyInfo(void)
HeapFree
(
GetProcessHeap
(),
0
,
info
);
CryptReleaseContext
(
csp
,
0
);
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
,
PROV_RSA_FULL
,
ret
=
CryptAcquireContextA
(
&
csp
,
cspName
,
MS_DEF_PROV
_A
,
PROV_RSA_FULL
,
CRYPT_DELETEKEYSET
);
ok
(
ret
,
"CryptAcquireContextA failed
\n
"
);
}
...
...
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