Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arrange header inclusions for MinGW, making them lower case #38

Merged
merged 1 commit into from
Nov 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vstgui/lib/platform/win32/win32dragcontainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#if WINDOWS

#include <windows.h>
#include <objidl.h>
#include <vector>
#include <string>

Expand Down Expand Up @@ -44,4 +45,4 @@ class WinDragContainer : public IDataPackage

#endif // WINDOWS

#endif // __win32dragcontainer__
#endif // __win32dragcontainer__
2 changes: 1 addition & 1 deletion vstgui/lib/platform/win32/win32support.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ using std::min;
using std::max;
#include <windows.h>
#if defined (WINAPI_FAMILY_SYSTEM)
#include <VersionHelpers.h>
#include <versionhelpers.h>
#endif

#include <objidl.h>
Expand Down
2 changes: 1 addition & 1 deletion vstgui/plugin-bindings/plugguieditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define kIdleRateMin 4 // minimum time between 2 idles in ms

#if WINDOWS
#include <Windows.h>
#include <windows.h>
#endif

#if MAC
Expand Down
4 changes: 2 additions & 2 deletions vstgui/standalone/source/platform/win32/win32application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
#include "win32preference.h"
#include "win32window.h"
#include "win32commondirectories.h"
#include <ShellScalingAPI.h>
#include <Windows.h>
#include <shellscalingapi.h>
#include <windows.h>
#include <array>
#include <chrono>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include "../../../../lib/platform/win32/win32support.h"
#include "../../../include/iappdelegate.h"
#include "../../../include/iapplication.h"
#include <Shlobj.h>
#include <shlobj.h>
#include <array>

//------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions vstgui/standalone/source/platform/win32/win32menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#pragma once

#include "../../../../lib/cstring.h"
#include <Windows.h>
#include <windows.h>
#include <functional>
#include <vector>
#include <memory>
Expand Down Expand Up @@ -75,4 +75,4 @@ struct Win32Menu : Win32MenuItem
//------------------------------------------------------------------------
} // Platform
} // Standalone
} // VSTGUI
} // VSTGUI
8 changes: 4 additions & 4 deletions vstgui/standalone/source/platform/win32/win32window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
#include "../../../include/iapplication.h"
#include "../../application.h"
#include "../iplatformwindow.h"
#include <Dwmapi.h>
#include <ShellScalingAPI.h>
#include <VersionHelpers.h>
#include <Windows.h>
#include <dwmapi.h>
#include <shellscalingapi.h>
#include <versionhelpers.h>
#include <windows.h>
#include <d2d1.h>
#include <windowsx.h>

Expand Down
2 changes: 1 addition & 1 deletion vstgui/tests/unittest/lib/platform_helper_win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "platform_helper.h"
#include "../../../lib/platform/win32/win32support.h"
#include <Windows.h>
#include <windows.h>

namespace VSTGUI {
namespace UnitTest {
Expand Down
3 changes: 2 additions & 1 deletion vstgui/tests/unittest/unittests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#include <windows.h>
#include <objbase.h>
#endif

namespace VSTGUI {
Expand Down