Define WIN32_LEAN_AND_MEAN globally

This commit is contained in:
Birunthan Mohanathas 2013-12-24 11:20:19 +00:00
parent c196396ad0
commit da92def9fc
26 changed files with 27 additions and 14 deletions

View File

@ -17,7 +17,6 @@
*/ */
#define _CRTDBG_MAP_ALLOC #define _CRTDBG_MAP_ALLOC
#define WIN32_LEAN_AND_MEAN
#include <crtdbg.h> #include <crtdbg.h>
#include <Windows.h> #include <Windows.h>
#include <ShellAPI.h> #include <ShellAPI.h>

View File

@ -58,7 +58,7 @@
<DisableSpecificWarnings>4351;4530</DisableSpecificWarnings> <DisableSpecificWarnings>4351;4530</DisableSpecificWarnings>
<!-- Set the version macros to 0x0601 (Win7) to avoid using Win8 specific features in the Win8 SDK. --> <!-- Set the version macros to 0x0601 (Win7) to avoid using Win8 specific features in the Win8 SDK. -->
<PreprocessorDefinitions>WIN32;_WINDOWS;WINVER=0x0601;_WIN32_WINNT=0x0601;_WIN32_IE=0x0601;PSAPI_VERSION=1;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>WIN32;_WINDOWS;WINVER=0x0601;_WIN32_WINNT=0x0601;_WIN32_IE=0x0601;PSAPI_VERSION=1;_CRT_SECURE_NO_WARNINGS;WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<WarningLevel>Level3</WarningLevel> <WarningLevel>Level3</WarningLevel>
</ClCompile> </ClCompile>
<Link> <Link>

View File

@ -22,6 +22,7 @@
#include "FontCollection.h" #include "FontCollection.h"
#include "TextFormat.h" #include "TextFormat.h"
#include <Windows.h> #include <Windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
namespace Gfx { namespace Gfx {

View File

@ -25,6 +25,7 @@
#include "Util/WICBitmapDIB.h" #include "Util/WICBitmapDIB.h"
#include <memory> #include <memory>
#include <string> #include <string>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
#include <d2d1_1.h> #include <d2d1_1.h>
#include <d2d1helper.h> #include <d2d1helper.h>

View File

@ -24,6 +24,7 @@
#include "TextFormatGDIP.h" #include "TextFormatGDIP.h"
#include <memory> #include <memory>
#include <string> #include <string>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
namespace Gfx { namespace Gfx {

View File

@ -19,6 +19,7 @@
#include "FontCollectionD2D.h" #include "FontCollectionD2D.h"
#include "CanvasD2D.h" #include "CanvasD2D.h"
#include "Util/DWriteFontCollectionLoader.h" #include "Util/DWriteFontCollectionLoader.h"
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
namespace Gfx { namespace Gfx {

View File

@ -17,6 +17,7 @@
*/ */
#include "FontCollectionGDIP.h" #include "FontCollectionGDIP.h"
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
namespace Gfx { namespace Gfx {

View File

@ -21,6 +21,7 @@
#include "TextFormat.h" #include "TextFormat.h"
#include <memory> #include <memory>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
namespace Gfx { namespace Gfx {

View File

@ -20,6 +20,7 @@
#define RM_GFX_UTIL_WICBITMAPDIB_H_ #define RM_GFX_UTIL_WICBITMAPDIB_H_
#include <Windows.h> #include <Windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
#include <wincodec.h> #include <wincodec.h>

View File

@ -20,6 +20,7 @@
#define RM_GFX_UTIL_WICBITMAPLOCKDIB_H_ #define RM_GFX_UTIL_WICBITMAPLOCKDIB_H_
#include <Windows.h> #include <Windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
#include <wincodec.h> #include <wincodec.h>
#include "WICBitmapDIB.h" #include "WICBitmapDIB.h"

View File

@ -20,6 +20,7 @@
#define RM_GFX_UTIL_WICBITMAPLOCKGDIP_H_ #define RM_GFX_UTIL_WICBITMAPLOCKGDIP_H_
#include <Windows.h> #include <Windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <GdiPlus.h> #include <GdiPlus.h>
#include <wincodec.h> #include <wincodec.h>

View File

@ -19,7 +19,7 @@
#ifndef RM_COMMON_RAWSTRING_H_ #ifndef RM_COMMON_RAWSTRING_H_
#define RM_COMMON_RAWSTRING_H_ #define RM_COMMON_RAWSTRING_H_
#include <windows.h> #include <malloc.h>
class RawString class RawString
{ {
@ -29,7 +29,7 @@ public:
{ {
} }
RawString(const WCHAR* str) : RawString(const wchar_t* str) :
m_String(str_alloc(str)) m_String(str_alloc(str))
{ {
} }
@ -44,7 +44,7 @@ public:
clear(); clear();
} }
RawString& operator=(const WCHAR* rhs) RawString& operator=(const wchar_t* rhs)
{ {
clear(); clear();
m_String = str_alloc(rhs); m_String = str_alloc(rhs);
@ -61,7 +61,7 @@ public:
return *this; return *this;
} }
const WCHAR* c_str() const const wchar_t* c_str() const
{ {
return m_String ? m_String : L""; return m_String ? m_String : L"";
} }
@ -81,12 +81,12 @@ public:
} }
private: private:
WCHAR* str_alloc(const WCHAR* str) wchar_t* str_alloc(const wchar_t* str)
{ {
return str ? _wcsdup(str) : nullptr; return str ? _wcsdup(str) : nullptr;
} }
WCHAR* m_String; wchar_t* m_String;
}; };
#endif #endif

View File

@ -28,6 +28,7 @@
#include <unordered_map> #include <unordered_map>
#include <algorithm> #include <algorithm>
#include <cstdint> #include <cstdint>
#include <ole2.h> // For Gdiplus.h.
#include <gdiplus.h> #include <gdiplus.h>
class Rainmeter; class Rainmeter;

View File

@ -20,6 +20,7 @@
#define __METER_H__ #define __METER_H__
#include <windows.h> #include <windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <gdiplus.h> #include <gdiplus.h>
#include <vector> #include <vector>
#include <string> #include <string>

View File

@ -23,11 +23,10 @@
#include <crtdbg.h> #include <crtdbg.h>
// WINAPI // WINAPI
#define WIN32_LEAN_AND_MEAN
#include <ws2tcpip.h> #include <ws2tcpip.h>
#include <windows.h> #include <windows.h>
#include <windowsx.h> #include <windowsx.h>
#include <ole2.h> #include <ole2.h> // For Gdiplus.h.
#include <gdiplus.h> #include <gdiplus.h>
#include <dwmapi.h> #include <dwmapi.h>
#include <comdef.h> #include <comdef.h>

View File

@ -20,6 +20,7 @@
#define __TINTEDIMAGE_H__ #define __TINTEDIMAGE_H__
#include <windows.h> #include <windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <gdiplus.h> #include <gdiplus.h>
#include <string> #include <string>
#include "MeterWindow.h" #include "MeterWindow.h"

View File

@ -20,6 +20,7 @@
#define __TRAYWINDOW_H__ #define __TRAYWINDOW_H__
#include <windows.h> #include <windows.h>
#include <ole2.h> // For Gdiplus.h.
#include <gdiplus.h> #include <gdiplus.h>
#include <vector> #include <vector>

View File

@ -24,6 +24,7 @@
#include <commctrl.h> #include <commctrl.h>
#include <commoncontrols.h> #include <commoncontrols.h>
#include <process.h> #include <process.h>
#include <Shellapi.h>
#include <Shlwapi.h> #include <Shlwapi.h>
// STL // STL

View File

@ -24,6 +24,7 @@
#include <WinInet.h> #include <WinInet.h>
#include <Psapi.h> #include <Psapi.h>
#include <comutil.h> #include <comutil.h>
#include <ShellAPI.h>
// STL // STL
#include <string> #include <string>

View File

@ -17,6 +17,7 @@
*/ */
#include <windows.h> #include <windows.h>
#include <Winsock2.h>
#include <string> #include <string>
#include <Ipexport.h> #include <Ipexport.h>
#include <Icmpapi.h> #include <Icmpapi.h>

View File

@ -21,6 +21,7 @@
#include <time.h> #include <time.h>
#include <errno.h> #include <errno.h>
#include <crtdbg.h> #include <crtdbg.h>
#include <stdlib.h>
#include "../../Common/RawString.h" #include "../../Common/RawString.h"
#include "../../Library/Export.h" // Rainmeter's exported functions #include "../../Library/Export.h" // Rainmeter's exported functions

View File

@ -16,7 +16,6 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <Windows.h>
#include <ShellAPI.h> #include <ShellAPI.h>
#include <process.h> #include <process.h>

View File

@ -16,7 +16,6 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>
#include <Iphlpapi.h> #include <Iphlpapi.h>
#include <Netlistmgr.h> #include <Netlistmgr.h>

View File

@ -8,6 +8,8 @@
#pragma once #pragma once
#include <Mmreg.h>
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// class CPolicyConfigClient // class CPolicyConfigClient
// {294935CE-F637-4E7C-A41B-AB255460B862} // {294935CE-F637-4E7C-A41B-AB255460B862}

View File

@ -16,7 +16,6 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/ */
#define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <Windows.h>
#include <Shlwapi.h> #include <Shlwapi.h>

View File

@ -20,7 +20,6 @@
#define __STDAFX_H__ #define __STDAFX_H__
// WINAPI // WINAPI
#define WIN32_LEAN_AND_MEAN
#include <Windows.h> #include <Windows.h>
#include <Windowsx.h> #include <Windowsx.h>
#include <Commdlg.h> #include <Commdlg.h>