ggentropy

A string formatting library for C++
Log | Files | Refs | README

commit 1a7397812634c1b01c46f1d7bc2ff34f26f34d20
parent d5227ba430339e0ca3e9b9cc99c752f1c257f4a6
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat,  2 May 2020 21:08:06 +0300

WIN32_LEAN_AND_MEAN

Diffstat:
Mggentropy.cpp | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/ggentropy.cpp b/ggentropy.cpp @@ -51,6 +51,10 @@ static bool try_urandom( void * buf, size_t n ) { #if PLATFORM_WINDOWS +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif + #include <windows.h> #include <wincrypt.h>