mirror of https://github.com/stella-emu/stella.git
Made the header ordering for WinCE the default for all ports. Ideally,
we really need to figure out *why* the WinCE compiler doesn't like the old order, since a compiler shouldn't really care (and it makes it more difficult on the other ports to have to maintain this inconsistency). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1296 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
0930cebb1b
commit
494b1cdcdc
|
@ -14,16 +14,13 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: EventHandler.cxx,v 1.197 2007-01-18 16:45:21 knakos Exp $
|
||||
// $Id: EventHandler.cxx,v 1.198 2007-01-19 21:53:25 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <sstream>
|
||||
#include <SDL.h>
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#endif
|
||||
#include "Event.hxx"
|
||||
#include "EventHandler.hxx"
|
||||
#include "EventStreamer.hxx"
|
||||
|
|
|
@ -13,19 +13,15 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: FSNode.cxx,v 1.8 2007-01-18 16:45:21 knakos Exp $
|
||||
// $Id: FSNode.cxx,v 1.9 2007-01-19 21:53:26 stephena Exp $
|
||||
//
|
||||
// Based on code from ScummVM - Scumm Interpreter
|
||||
// Copyright (C) 2002-2004 The ScummVM project
|
||||
//============================================================================
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#endif
|
||||
#include "bspf.hxx"
|
||||
#include "GuiUtils.hxx"
|
||||
#include "FSNode.hxx"
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void FSList::sort()
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: OSystem.cxx,v 1.93 2007-01-18 16:45:21 knakos Exp $
|
||||
// $Id: OSystem.cxx,v 1.94 2007-01-19 21:53:26 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <cassert>
|
||||
|
@ -30,13 +30,9 @@
|
|||
#include "CheatManager.hxx"
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#endif
|
||||
#include "unzip.h"
|
||||
#include "MD5.hxx"
|
||||
#include "FSNode.hxx"
|
||||
#include "Settings.hxx"
|
||||
#include "PropsSet.hxx"
|
||||
#include "EventHandler.hxx"
|
||||
|
|
|
@ -13,21 +13,17 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: BrowserDialog.cxx,v 1.25 2007-01-18 16:45:22 knakos Exp $
|
||||
// $Id: BrowserDialog.cxx,v 1.26 2007-01-19 21:53:27 stephena Exp $
|
||||
//
|
||||
// Based on code from ScummVM - Scumm Interpreter
|
||||
// Copyright (C) 2002-2004 The ScummVM project
|
||||
//============================================================================
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#endif
|
||||
#include "OSystem.hxx"
|
||||
#include "Widget.hxx"
|
||||
#include "StringListWidget.hxx"
|
||||
#include "Dialog.hxx"
|
||||
#include "FSNode.hxx"
|
||||
#include "GuiObject.hxx"
|
||||
#include "GuiUtils.hxx"
|
||||
#include "GameList.hxx"
|
||||
|
|
|
@ -13,20 +13,16 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: FileSnapDialog.cxx,v 1.4 2007-01-18 16:45:22 knakos Exp $
|
||||
// $Id: FileSnapDialog.cxx,v 1.5 2007-01-19 21:53:27 stephena Exp $
|
||||
//
|
||||
// Based on code from ScummVM - Scumm Interpreter
|
||||
// Copyright (C) 2002-2004 The ScummVM project
|
||||
//============================================================================
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#endif
|
||||
#include "DialogContainer.hxx"
|
||||
#include "BrowserDialog.hxx"
|
||||
#include "TabWidget.hxx"
|
||||
#include "FSNode.hxx"
|
||||
#include "bspf.hxx"
|
||||
#include "LauncherDialog.hxx"
|
||||
#include "FileSnapDialog.hxx"
|
||||
|
|
|
@ -13,18 +13,14 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: Launcher.cxx,v 1.13 2007-01-18 16:45:22 knakos Exp $
|
||||
// $Id: Launcher.cxx,v 1.14 2007-01-19 21:53:27 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "LauncherDialog.hxx"
|
||||
#endif
|
||||
#include "Version.hxx"
|
||||
#include "OSystem.hxx"
|
||||
#include "Settings.hxx"
|
||||
#include "FrameBuffer.hxx"
|
||||
#include "LauncherDialog.hxx"
|
||||
#include "bspf.hxx"
|
||||
#include "Launcher.hxx"
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: LauncherDialog.cxx,v 1.67 2007-01-18 16:45:22 knakos Exp $
|
||||
// $Id: LauncherDialog.cxx,v 1.68 2007-01-19 21:53:27 stephena Exp $
|
||||
//
|
||||
// Based on code from ScummVM - Scumm Interpreter
|
||||
// Copyright (C) 2002-2004 The ScummVM project
|
||||
|
@ -21,23 +21,18 @@
|
|||
|
||||
#include <sstream>
|
||||
|
||||
#ifdef _WIN32_WCE
|
||||
// different include order for the ce compiler
|
||||
#include "FSNode.hxx"
|
||||
#include "BrowserDialog.hxx"
|
||||
#endif
|
||||
#include "OSystem.hxx"
|
||||
#include "Settings.hxx"
|
||||
#include "PropsSet.hxx"
|
||||
#include "Props.hxx"
|
||||
#include "MD5.hxx"
|
||||
#include "FSNode.hxx"
|
||||
#include "Widget.hxx"
|
||||
#include "StringListWidget.hxx"
|
||||
#include "Dialog.hxx"
|
||||
#include "DialogContainer.hxx"
|
||||
#include "GuiUtils.hxx"
|
||||
#include "BrowserDialog.hxx"
|
||||
#include "ProgressDialog.hxx"
|
||||
#include "OptionsDialog.hxx"
|
||||
#include "LauncherDialog.hxx"
|
||||
|
|
Loading…
Reference in New Issue