explicit <commctrl.h> to fix anti-ATL build errors

This commit is contained in:
unknown 2015-08-28 18:34:12 -04:00
parent 074b2cc007
commit 6b34e8b89a
4 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,7 @@
****************************************************************************/ ****************************************************************************/
#include "stdafx.h" #include "stdafx.h"
#include <commctrl.h>
#include "Settings/SettingType/SettingsType-Cheats.h" #include "Settings/SettingType/SettingsType-Cheats.h"
enum { WM_EDITCHEAT = WM_USER + 0x120 }; enum { WM_EDITCHEAT = WM_USER + 0x120 };

View File

@ -9,6 +9,8 @@
* * * *
****************************************************************************/ ****************************************************************************/
#include "stdafx.h" #include "stdafx.h"
#include <commctrl.h>
#include "Settings/SettingType/SettingsType-Application.h" #include "Settings/SettingType/SettingsType-Application.h"
extern "C" extern "C"

View File

@ -1,5 +1,7 @@
#include "stdafx.h" #include "stdafx.h"
#include <commctrl.h>
CRomBrowser::CRomBrowser (HWND & MainWindow, HWND & StatusWindow ) : CRomBrowser::CRomBrowser (HWND & MainWindow, HWND & StatusWindow ) :
m_MainWindow(MainWindow), m_MainWindow(MainWindow),
m_StatusWindow(StatusWindow), m_StatusWindow(StatusWindow),

View File

@ -1,5 +1,7 @@
#pragma once #pragma once
#include <commctrl.h>
class CConfigSettingSection; class CConfigSettingSection;
class CSettingsPage; class CSettingsPage;