Commit a169a05e authored by Max Kellermann's avatar Max Kellermann

win32, ...: avoid including windows.h

Include the most specific header documented by MSDN instead.
parent a6cb3139
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <fileapi.h>
#include <tchar.h> #include <tchar.h>
/** /**
......
...@@ -42,7 +42,10 @@ ...@@ -42,7 +42,10 @@
#include <cstdint> #include <cstdint>
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <fileapi.h>
#include <windef.h> // for HWND (needed by winbase.h)
#include <handleapi.h> // for INVALID_HANDLE_VALUE
#include <winbase.h> // for FILE_END
#endif #endif
#if defined(__linux__) && !defined(ANDROID) #if defined(__linux__) && !defined(ANDROID)
......
...@@ -35,7 +35,10 @@ ...@@ -35,7 +35,10 @@
#include "util/Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <fileapi.h>
#include <handleapi.h> // for INVALID_HANDLE_VALUE
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for FILE_CURRENT
#else #else
#include "io/UniqueFileDescriptor.hxx" #include "io/UniqueFileDescriptor.hxx"
#endif #endif
......
...@@ -28,6 +28,10 @@ ...@@ -28,6 +28,10 @@
#include <array> #include <array>
#include <iterator> #include <iterator>
#include <handleapi.h>
#include <synchapi.h>
#include <winbase.h> // for INFINITE
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "util/Compiler.h" #include "util/Compiler.h"
#include <windows.h> #include <windef.h>
#include <mmsystem.h> #include <mmsystem.h>
struct WinmmOutput; struct WinmmOutput;
......
...@@ -49,7 +49,9 @@ FormatSystemError(std::error_code code, const char *fmt, ...@@ -49,7 +49,9 @@ FormatSystemError(std::error_code code, const char *fmt,
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <errhandlingapi.h> // for GetLastError()
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for FormatMessageA()
static inline std::system_error static inline std::system_error
MakeLastError(DWORD code, const char *msg) noexcept MakeLastError(DWORD code, const char *msg) noexcept
......
...@@ -27,7 +27,9 @@ ...@@ -27,7 +27,9 @@
#include <cstring> #include <cstring>
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <errhandlingapi.h> // for GetLastError()
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for FormatMessageA()
#else #else
#include <cerrno> #include <cerrno>
#endif #endif
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#ifndef THREAD_CRITICAL_SECTION_HXX #ifndef THREAD_CRITICAL_SECTION_HXX
#define THREAD_CRITICAL_SECTION_HXX #define THREAD_CRITICAL_SECTION_HXX
#include <windows.h> #include <synchapi.h>
/** /**
* Wrapper for a CRITICAL_SECTION, backend for the Mutex class. * Wrapper for a CRITICAL_SECTION, backend for the Mutex class.
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "util/Compiler.h" #include "util/Compiler.h"
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <processthreadsapi.h>
#else #else
#include <pthread.h> #include <pthread.h>
#endif #endif
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <cassert> #include <cassert>
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <processthreadsapi.h>
#else #else
#include <pthread.h> #include <pthread.h>
#endif #endif
......
...@@ -32,6 +32,9 @@ ...@@ -32,6 +32,9 @@
#include "CriticalSection.hxx" #include "CriticalSection.hxx"
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for INFINITE
#include <chrono> #include <chrono>
#include <mutex> #include <mutex>
......
...@@ -77,7 +77,7 @@ void ...@@ -77,7 +77,7 @@ void
HugeDiscard(void *p, size_t size) noexcept; HugeDiscard(void *p, size_t size) noexcept;
#elif defined(_WIN32) #elif defined(_WIN32)
#include <windows.h> #include <memoryapi.h>
WritableBuffer<void> WritableBuffer<void>
HugeAllocate(size_t size); HugeAllocate(size_t size);
......
...@@ -21,8 +21,8 @@ ...@@ -21,8 +21,8 @@
#define MPD_WIN32_COM_HXX #define MPD_WIN32_COM_HXX
#include "HResult.hxx" #include "HResult.hxx"
#include <objbase.h>
#include <windows.h> #include <combaseapi.h>
// RAII for Microsoft Component Object Model(COM) // RAII for Microsoft Component Object Model(COM)
// https://docs.microsoft.com/en-us/windows/win32/api/_com/ // https://docs.microsoft.com/en-us/windows/win32/api/_com/
......
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
#include <cstddef> #include <cstddef>
#include <objbase.h> #include <objbase.h>
#include <utility> #include <utility>
#include <windows.h>
#include <combaseapi.h>
// RAII for CoTaskMemAlloc and CoTaskMemFree // RAII for CoTaskMemAlloc and CoTaskMemFree
// https://docs.microsoft.com/zh-tw/windows/win32/api/combaseapi/nf-combaseapi-cotaskmemalloc // https://docs.microsoft.com/zh-tw/windows/win32/api/combaseapi/nf-combaseapi-cotaskmemalloc
......
...@@ -21,10 +21,12 @@ ...@@ -21,10 +21,12 @@
#define MPD_WIN32_COMPTR_HXX #define MPD_WIN32_COMPTR_HXX
#include "win32/HResult.hxx" #include "win32/HResult.hxx"
#include <cstddef> #include <cstddef>
#include <objbase.h> #include <objbase.h>
#include <utility> #include <utility>
#include <windows.h>
#include <combaseapi.h>
// RAII for Object in Microsoft Component Object Model(COM) // RAII for Object in Microsoft Component Object Model(COM)
// https://docs.microsoft.com/zh-tw/windows/win32/api/_com/ // https://docs.microsoft.com/zh-tw/windows/win32/api/_com/
......
...@@ -26,8 +26,6 @@ ...@@ -26,8 +26,6 @@
#include <boost/lockfree/spsc_queue.hpp> #include <boost/lockfree/spsc_queue.hpp>
#include <windows.h>
// Worker thread for all COM operation // Worker thread for all COM operation
class COMWorker { class COMWorker {
Thread thread{BIND_THIS_METHOD(Work)}; Thread thread{BIND_THIS_METHOD(Work)};
......
...@@ -20,7 +20,10 @@ ...@@ -20,7 +20,10 @@
#ifndef MPD_WIN32_WINEVENT_HXX #ifndef MPD_WIN32_WINEVENT_HXX
#define MPD_WIN32_WINEVENT_HXX #define MPD_WIN32_WINEVENT_HXX
#include <windows.h> #include <handleapi.h>
#include <synchapi.h>
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for INFINITE
// RAII for Windows unnamed event object // RAII for Windows unnamed event object
// https://docs.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-createeventw // https://docs.microsoft.com/en-us/windows/win32/api/synchapi/nf-synchapi-createeventw
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment