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
0a28308b
Commit
0a28308b
authored
Nov 25, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptnet/tests: Don't import shlwapi.
parent
91bc6c52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
Makefile.in
dlls/cryptnet/tests/Makefile.in
+1
-1
cryptnet.c
dlls/cryptnet/tests/cryptnet.c
+1
-4
No files found.
dlls/cryptnet/tests/Makefile.in
View file @
0a28308b
TESTDLL
=
cryptnet.dll
IMPORTS
=
cryptnet crypt32
shlwapi
IMPORTS
=
cryptnet crypt32
C_SRCS
=
\
cryptnet.c
...
...
dlls/cryptnet/tests/cryptnet.c
View file @
0a28308b
...
...
@@ -24,7 +24,6 @@
#include <winbase.h>
#include <winerror.h>
#include <wincrypt.h>
#include <shlwapi.h>
#include "wine/test.h"
static
const
BYTE
bigCert
[]
=
{
...
...
@@ -324,7 +323,6 @@ static void test_retrieveObjectByUrl(void)
HCERTSTORE
store
;
CRYPT_RETRIEVE_AUX_INFO
aux
=
{
0
};
FILETIME
ft
=
{
0
};
DWORD
urllen
;
SetLastError
(
0xdeadbeef
);
ret
=
CryptRetrieveObjectByUrlA
(
NULL
,
NULL
,
0
,
0
,
NULL
,
NULL
,
NULL
,
NULL
,
NULL
);
...
...
@@ -334,8 +332,7 @@ static void test_retrieveObjectByUrl(void)
GetLastError
(),
GetLastError
());
make_tmp_file
(
tmpfile
);
urllen
=
sizeof
(
url
);
UrlCanonicalizeA
(
tmpfile
,
url
,
&
urllen
,
URL_WININET_COMPATIBILITY
);
snprintf
(
url
,
sizeof
(
url
),
"file://%s"
,
tmpfile
);
pBlobArray
=
(
CRYPT_BLOB_ARRAY
*
)
0xdeadbeef
;
ret
=
CryptRetrieveObjectByUrlA
(
url
,
NULL
,
0
,
0
,
(
void
**
)
&
pBlobArray
,
...
...
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