mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 05:59:10 +00:00
Whenever we include windows.h, also define WIN32_LEAN_AND_MEAN
This reduces the number of symbols and code pulled in drastically
This commit is contained in:
parent
55f9406f30
commit
806dbeeef3
3 changed files with 3 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
#include <sys/types.h>
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#endif /* G_OS_WIN32 */
|
||||
|
|
|
@ -111,6 +111,7 @@ struct _GstTaskPrivate
|
|||
};
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
|
||||
struct _THREADNAME_INFO
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
#include <sys/wait.h>
|
||||
#endif
|
||||
#ifdef G_OS_WIN32
|
||||
#define WIN32_LEAN_AND_MEAN
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
|
|
Loading…
Reference in a new issue