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
a89db155
Commit
a89db155
authored
Sep 13, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Sep 21, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add a stub implementation of CryptCATOpen.
parent
2fa45673
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
1 deletion
+42
-1
Makefile.in
dlls/wintrust/Makefile.in
+1
-0
crypt.c
dlls/wintrust/crypt.c
+40
-0
wintrust.spec
dlls/wintrust/wintrust.spec
+1
-1
No files found.
dlls/wintrust/Makefile.in
View file @
a89db155
...
...
@@ -7,6 +7,7 @@ IMPORTLIB = libwintrust.$(IMPLIBEXT)
IMPORTS
=
crypt32 user32 advapi32 kernel32
C_SRCS
=
\
crypt.c
\
register.c
\
wintrust_main.c
...
...
dlls/wintrust/crypt.c
0 → 100644
View file @
a89db155
/*
* WinTrust Cryptography functions
*
* Copyright 2006 James Hawkins
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wintrust.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wintrust
);
/***********************************************************************
* CryptCATOpen (WINTRUST.@)
*/
HANDLE
WINAPI
CryptCATOpen
(
LPWSTR
pwszFileName
,
DWORD
fdwOpenFlags
,
HCRYPTPROV
hProv
,
DWORD
dwPublicVersion
,
DWORD
dwEncodingType
)
{
FIXME
(
"(%s, %ld, %ld, %ld, %ld) stub
\n
"
,
debugstr_w
(
pwszFileName
),
fdwOpenFlags
,
hProv
,
dwPublicVersion
,
dwEncodingType
);
return
0
;
}
dlls/wintrust/wintrust.spec
View file @
a89db155
...
...
@@ -26,7 +26,7 @@
@ stub CryptCATGetCatAttrInfo
@ stub CryptCATGetMemberInfo
@ stub CryptCATHandleFromStore
@ st
ub CryptCATOpen
@ st
dcall CryptCATOpen(wstr long long long long)
@ stub CryptCATPersistStore
@ stub CryptCATPutAttrInfo
@ stub CryptCATPutCatAttrInfo
...
...
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