* Sync to Wine 1.3.37.

svn path=/trunk/; revision=55099
This commit is contained in:
Amine Khaldi 2012-01-23 13:30:23 +00:00
parent 0a0e949048
commit f9f32b715e
4 changed files with 23 additions and 2 deletions

View file

@ -14,7 +14,7 @@
@ stub BCryptDuplicateHash
@ stub BCryptDuplicateKey
@ stub BCryptEncrypt
@ stub BCryptEnumAlgorithms
@ stdcall BCryptEnumAlgorithms(long ptr ptr long)
@ stub BCryptEnumContextFunctionProviders
@ stub BCryptEnumContextFunctions
@ stub BCryptEnumContexts

View file

@ -22,6 +22,9 @@
#include "wine/debug.h"
#include "winbase.h"
#include "bcrypt.h"
typedef LONG NTSTATUS;
WINE_DEFAULT_DEBUG_CHANNEL(bcrypt);
@ -38,3 +41,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;
}

View file

@ -35,4 +35,11 @@
#define OPTIONAL
#endif
typedef struct _BCRYPT_ALGORITHM_IDENTIFIER
{
LPWSTR pszName;
ULONG dwClass;
ULONG dwFlags;
} BCRYPT_ALGORITHM_IDENTIFIER;
#endif /* __WINE_BCRYPT_H */

View file

@ -43,7 +43,7 @@ reactos/dll/directx/quartz # Autosync
reactos/dll/win32/advpack # Synced to Wine-1.3.37
reactos/dll/win32/atl # Autosync
reactos/dll/win32/avifil32 # Autosync
reactos/dll/win32/bcrypt # Autosync
reactos/dll/win32/bcrypt # Synced to Wine-1.3.37
reactos/dll/win32/browseui # Out of sync
reactos/dll/win32/cabinet # Autosync
reactos/dll/win32/clusapi # Autosync