Bug 1480177 Lowercase includes to fix MinGW Build Errors r=froydnj

MozReview-Commit-ID: LvFS90CRAFe

--HG--
extra : rebase_source : bfbcc59d061128e5440378448523bbaf939d5a45
This commit is contained in:
Tom Ritter 2018-07-30 22:43:24 -05:00
parent a16d201c28
commit c9e4e2854a
7 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@
#include "Hal.h"
#include "HalLog.h"
#include <Windows.h>
#include <windows.h>
using namespace mozilla::hal;

View File

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <Windows.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <Windows.h>
#include <windows.h>
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD aReason, LPVOID)
{

View File

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include <Windows.h>
#include <windows.h>
#include <winternl.h>
#include "gtest/gtest.h"
#include "nsReadableUtils.h"

View File

@ -7,7 +7,7 @@
#ifndef mozilla_toolkit_system_windowsDHCPClient_windowsNetworkFunctionsWrapper_h
#define mozilla_toolkit_system_windowsDHCPClient_windowsNetworkFunctionsWrapper_h
#include <Winsock2.h> // there is a compilation error if Winsock.h is not
#include <winsock2.h> // there is a compilation error if Winsock.h is not
// declared before dhcpcsdk.h
#include <dhcpcsdk.h>
#include <iphlpapi.h>
@ -57,4 +57,4 @@ class WindowsNetworkFunctionsWrapper : nsISupports
} // namespace system
} // namespace toolkit
} // namespace mozilla
#endif //mozilla_toolkit_system_windowsDHCPClient_windowsNetworkFunctionsWrapper_h
#endif //mozilla_toolkit_system_windowsDHCPClient_windowsNetworkFunctionsWrapper_h

View File

@ -8,7 +8,7 @@
#include "mozilla/DebugOnly.h"
#include <WinBase.h>
#include <winbase.h>
namespace mozilla {

View File

@ -64,7 +64,7 @@
#ifdef XP_WIN
#include "mozilla/DynamicallyLinkedFunctionPtr.h"
#include <Winbase.h>
#include <winbase.h>
using GetCurrentThreadStackLimitsFn = void (WINAPI*)(
PULONG_PTR LowLimit, PULONG_PTR HighLimit);