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
87be4641
Commit
87be4641
authored
Jul 21, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved declaration of VTableProvStruc from dlls/advapi32/crypt.h to
include/wincrypt.h.
parent
6b56fabe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
crypt.h
dlls/advapi32/crypt.h
+0
-10
wincrypt.h
include/wincrypt.h
+10
-0
No files found.
dlls/advapi32/crypt.h
View file @
87be4641
...
...
@@ -23,16 +23,6 @@
#include "wincrypt.h"
typedef
struct
_VTableProvStruc
{
DWORD
Version
;
BOOL
(
*
pFuncVerifyImage
)(
LPCSTR
lpszImage
,
BYTE
*
pSigData
);
BOOL
(
*
pFuncReturnhWnd
)(
HWND
*
phWnd
);
DWORD
dwProvType
;
BYTE
*
pbContextInfo
;
DWORD
cbContextInfo
;
LPSTR
pszProvName
;
}
VTableProvStruc
,
*
PVTableProvStruc
;
typedef
struct
tagPROVFUNCS
{
BOOL
(
WINAPI
*
pCPAcquireContext
)(
HCRYPTPROV
*
phProv
,
LPSTR
pszContainer
,
DWORD
dwFlags
,
PVTableProvStruc
pVTable
);
...
...
include/wincrypt.h
View file @
87be4641
...
...
@@ -105,6 +105,16 @@ typedef struct _CERT_CONTEXT {
}
CERT_CONTEXT
,
*
PCERT_CONTEXT
;
typedef
const
CERT_CONTEXT
*
PCCERT_CONTEXT
;
typedef
struct
_VTableProvStruc
{
DWORD
Version
;
FARPROC
pFuncVerifyImage
;
FARPROC
pFuncReturnhWnd
;
DWORD
dwProvType
;
BYTE
*
pbContextInfo
;
DWORD
cbContextInfo
;
LPSTR
pszProvName
;
}
VTableProvStruc
,
*
PVTableProvStruc
;
/* Algorithm IDs */
#define GET_ALG_CLASS(x) (x & (7 << 13))
...
...
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