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
016a26dd
Commit
016a26dd
authored
Oct 18, 2007
by
Juan Lang
Committed by
Alexandre Julliard
Oct 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cryptnet: Add stub for CryptGetObjectUrl.
parent
6d431c73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
cryptnet.spec
dlls/cryptnet/cryptnet.spec
+1
-1
cryptnet_main.c
dlls/cryptnet/cryptnet_main.c
+12
-0
No files found.
dlls/cryptnet/cryptnet.spec
View file @
016a26dd
...
...
@@ -4,7 +4,7 @@
@ stub LdapProvOpenStore
@ stub CryptCancelAsyncRetrieval
@ stub CryptFlushTimeValidObject
@ st
ub CryptGetObjectUrl
@ st
dcall CryptGetObjectUrl(ptr ptr long ptr ptr ptr ptr ptr)
@ stub CryptGetTimeValidObject
@ stub CryptInstallCancelRetrieval
@ stub CryptRetrieveObjectByUrlA
...
...
dlls/cryptnet/cryptnet_main.c
View file @
016a26dd
...
...
@@ -79,6 +79,18 @@ HRESULT WINAPI DllUnregisterServer(void)
}
/***********************************************************************
* CryptGetObjectUrl (CRYPTNET.@)
*/
BOOL
WINAPI
CryptGetObjectUrl
(
LPCSTR
pszUrlOid
,
LPVOID
pvPara
,
DWORD
dwFlags
,
PCRYPT_URL_ARRAY
pUrlArray
,
DWORD
*
pcbUrlArray
,
PCRYPT_URL_INFO
pUrlInfo
,
DWORD
*
pcbUrlInfo
,
LPVOID
pvReserved
)
{
FIXME
(
"(%s, %p, %08x, %p, %p, %p, %p, %p): stub
\n
"
,
debugstr_a
(
pszUrlOid
),
pvPara
,
dwFlags
,
pUrlArray
,
pcbUrlArray
,
pUrlInfo
,
pcbUrlInfo
,
pvReserved
);
return
FALSE
;
}
/***********************************************************************
* CertDllVerifyRevocation (CRYPTNET.@)
*/
BOOL
WINAPI
CertDllVerifyRevocation
(
DWORD
dwEncodingType
,
DWORD
dwRevType
,
...
...
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