Commit 8740b380fe31a51b0472d1e4b902cfc9bce21c3a
Committed by
Jay Berkenbilt
1 parent
1e831cb9
Make windows includes lowercase (fixes #123)
For cross compiling.
Showing
3 changed files
with
4 additions
and
4 deletions
examples/pdf-mod-info.cc
libqpdf/QUtil.cc
libqpdf/SecureRandomDataProvider.cc
| ... | ... | @@ -3,11 +3,11 @@ |
| 3 | 3 | #include <qpdf/qpdf-config.h> |
| 4 | 4 | #include <qpdf/QUtil.hh> |
| 5 | 5 | #ifdef _WIN32 |
| 6 | -# include <Windows.h> | |
| 6 | +# include <windows.h> | |
| 7 | 7 | # include <direct.h> |
| 8 | 8 | # include <io.h> |
| 9 | 9 | # ifndef SKIP_OS_SECURE_RANDOM |
| 10 | -# include <Wincrypt.h> | |
| 10 | +# include <wincrypt.h> | |
| 11 | 11 | # endif |
| 12 | 12 | #endif |
| 13 | 13 | ... | ... |