From: Bruno Jesus <00cpxxx@gmail.com> Subject: [1/2] include: Add some flags related to BCryptGenRandom in bcrypt.h Message-Id: Date: Mon, 3 Feb 2014 15:51:11 -0200 Same as http://source.winehq.org/patches/data/102143 --- include/bcrypt.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/bcrypt.h b/include/bcrypt.h index 43d1f94..601f839 100644 --- a/include/bcrypt.h +++ b/include/bcrypt.h @@ -47,4 +47,8 @@ typedef struct _BCRYPT_ALGORITHM_IDENTIFIER ULONG dwFlags; } BCRYPT_ALGORITHM_IDENTIFIER; +/* Flags for BCryptGenRandom */ +#define BCRYPT_RNG_USE_ENTROPY_IN_BUFFER 0x00000001 +#define BCRYPT_USE_SYSTEM_PREFERRED_RNG 0x00000002 + #endif /* __WINE_BCRYPT_H */ -- 1.8.3.2