Merge pull request #578 from cxd4/can_haz_commctrl_h
Include some system headers explicitly to fix non-ATL builds.
This commit is contained in:
commit
29f2f51ee5
|
@ -10,6 +10,8 @@
|
|||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
|
||||
#include <prsht.h>
|
||||
|
||||
void LoadLogSetting (HKEY hKey,char * String, BOOL * Value);
|
||||
void SaveLogOptions (void);
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
|
||||
#include <commctrl.h>
|
||||
#include <windowsx.h>
|
||||
#include "Settings/SettingType/SettingsType-Cheats.h"
|
||||
|
||||
enum { WM_EDITCHEAT = WM_USER + 0x120 };
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#pragma warning(disable:4355) // Disable 'this' : used in base member initializer list
|
||||
|
||||
#include <windows.h>
|
||||
#include <commdlg.h>
|
||||
|
||||
CN64System::CN64System ( CPlugins * Plugins, bool SavesReadOnly ) :
|
||||
CSystemEvents(this, Plugins),
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
* *
|
||||
****************************************************************************/
|
||||
#include "stdafx.h"
|
||||
|
||||
#include <commctrl.h>
|
||||
#include "Settings/SettingType/SettingsType-Application.h"
|
||||
|
||||
extern "C"
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#include "stdafx.h"
|
||||
|
||||
#include <windows.h>
|
||||
#include <commdlg.h>
|
||||
|
||||
CMainMenu::CMainMenu ( CMainGui * hMainWindow ):
|
||||
CBaseMenu(),
|
||||
m_ResetAccelerators(true)
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#include "stdafx.h"
|
||||
|
||||
#include <commctrl.h>
|
||||
#include <shlobj.h>
|
||||
|
||||
CRomBrowser::CRomBrowser (HWND & MainWindow, HWND & StatusWindow ) :
|
||||
m_MainWindow(MainWindow),
|
||||
m_StatusWindow(StatusWindow),
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <commctrl.h>
|
||||
|
||||
class CConfigSettingSection;
|
||||
class CSettingsPage;
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
****************************************************************************/
|
||||
#pragma once
|
||||
|
||||
#include <prsht.h>
|
||||
|
||||
class CSettingsPage
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue