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
66db40e8
Commit
66db40e8
authored
May 30, 2011
by
David Hedberg
Committed by
Alexandre Julliard
May 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add BCryptEnumAlgorithms stub.
parent
8f3361b5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
bcrypt.spec
dlls/bcrypt/bcrypt.spec
+1
-1
bcrypt_main.c
dlls/bcrypt/bcrypt_main.c
+12
-0
bcrypt.h
include/bcrypt.h
+7
-0
No files found.
dlls/bcrypt/bcrypt.spec
View file @
66db40e8
...
...
@@ -14,7 +14,7 @@
@ stub BCryptDuplicateHash
@ stub BCryptDuplicateKey
@ stub BCryptEncrypt
@ st
ub BCryptEnumAlgorithms
@ st
dcall BCryptEnumAlgorithms(long ptr ptr long)
@ stub BCryptEnumContextFunctionProviders
@ stub BCryptEnumContextFunctions
@ stub BCryptEnumContexts
...
...
dlls/bcrypt/bcrypt_main.c
View file @
66db40e8
...
...
@@ -22,6 +22,7 @@
#include "wine/debug.h"
#include "winbase.h"
#include "bcrypt.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
bcrypt
);
...
...
@@ -38,3 +39,14 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
return
TRUE
;
}
NTSTATUS
WINAPI
BCryptEnumAlgorithms
(
ULONG
dwAlgOperations
,
ULONG
*
pAlgCount
,
BCRYPT_ALGORITHM_IDENTIFIER
**
ppAlgList
,
ULONG
dwFlags
)
{
FIXME
(
"%08x, %p, %p, %08x - stub
\n
"
,
dwAlgOperations
,
pAlgCount
,
ppAlgList
,
dwFlags
);
*
ppAlgList
=
NULL
;
*
pAlgCount
=
0
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
include/bcrypt.h
View file @
66db40e8
...
...
@@ -40,4 +40,11 @@
typedef
LONG
NTSTATUS
;
#endif
typedef
struct
_BCRYPT_ALGORITHM_IDENTIFIER
{
LPWSTR
pszName
;
ULONG
dwClass
;
ULONG
dwFlags
;
}
BCRYPT_ALGORITHM_IDENTIFIER
;
#endif
/* __WINE_BCRYPT_H */
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