fix(crypto): update case of windows.h (#1560)

When building for windows on a case-sensitive system, mingw always comes with a lower-case windows.h
pull/1569/head
xloem 3 years ago committed by GitHub
parent 6b371749bc
commit e821104237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,7 +4,7 @@
#include <string.h>
#ifdef _WIN32
#include <Windows.h>
#include <windows.h>
#endif
#ifdef __unix__

Loading…
Cancel
Save