Feature: Move several headers into include/

This commit is contained in:
Vicki Pfau 2017-04-26 18:41:45 -07:00
parent ad203c17bd
commit 2fdb5a1ff9
18 changed files with 15 additions and 15 deletions

View File

@ -11,7 +11,7 @@
CXX_GUARD_START
#include <mgba/internal/gb/video.h>
#include "feature/video-logger.h"
#include <mgba/feature/video-logger.h>
struct GBVideoProxyRenderer {
struct GBVideoRenderer d;

View File

@ -11,7 +11,7 @@
CXX_GUARD_START
#include <mgba/internal/gba/video.h>
#include "feature/video-logger.h"
#include <mgba/feature/video-logger.h>
struct GBAVideoProxyRenderer {
struct GBAVideoRenderer d;

View File

@ -19,7 +19,7 @@
#include <mgba/internal/gba/gba.h>
#endif
#ifndef MINIMAL_CORE
#include "feature/video-logger.h"
#include <mgba/feature/video-logger.h>
#endif
const static struct mCoreFilter {

View File

@ -3,7 +3,7 @@
* This Source Code Form is subject to the terms of the Mozilla Public
* 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 "commandline.h"
#include <mgba/feature/commandline.h>
#include <mgba/core/config.h>
#include <mgba/core/version.h>

View File

@ -3,7 +3,7 @@
* This Source Code Form is subject to the terms of the Mozilla Public
* 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 "thread-proxy.h"
#include <mgba/feature/thread-proxy.h>
#include <mgba/core/tile-cache.h>
#include <mgba/internal/gba/gba.h>

View File

@ -3,7 +3,7 @@
* This Source Code Form is subject to the terms of the Mozilla Public
* 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 "video-logger.h"
#include <mgba/feature/video-logger.h>
#include <mgba/core/core.h>
#include <mgba-util/memory.h>

View File

@ -14,7 +14,7 @@
#include <mgba/internal/gba/extra/cli.h>
#include <mgba/internal/gba/overrides.h>
#ifndef DISABLE_THREADING
#include "feature/thread-proxy.h"
#include <mgba/feature/thread-proxy.h>
#endif
#include <mgba/internal/gba/renderers/proxy.h>
#include <mgba/internal/gba/renderers/video-software.h>

View File

@ -1,6 +1,6 @@
// This source file is placed into the public domain.
#include <mgba/core/core.h>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
#include <mgba-util/socket.h>
#define DEFAULT_PORT 13721

View File

@ -11,7 +11,7 @@
#include <QDir>
#include <QMenu>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
using namespace QGBA;

View File

@ -17,7 +17,7 @@
#include <mgba/core/config.h>
#include <mgba-util/configuration.h>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
class QAction;
class QMenu;

View File

@ -32,7 +32,7 @@
#include <mgba/internal/gb/renderers/tile-cache.h>
#endif
#include <mgba-util/vfs.h>
#include "feature/video-logger.h"
#include <mgba/feature/video-logger.h>
using namespace QGBA;
using namespace std;

View File

@ -53,7 +53,7 @@
#include <mgba/internal/gba/gba.h>
#include <mgba/internal/gba/video.h>
#endif
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
#include "feature/sqlite3/no-intro.h"
#include <mgba-util/vfs.h>

View File

@ -20,7 +20,7 @@
#include <mgba/core/thread.h>
#include <mgba/internal/gba/input.h>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
#include <mgba-util/vfs.h>
#include <SDL.h>

View File

@ -12,7 +12,7 @@
#include <mgba/gba/core.h>
#include <mgba/internal/gba/gba.h>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
#include <mgba-util/memory.h>
#include <mgba-util/string.h>
#include <mgba-util/vfs.h>

View File

@ -11,7 +11,7 @@
#include <mgba/gb/core.h>
#include <mgba/gba/core.h>
#include "feature/commandline.h"
#include <mgba/feature/commandline.h>
#include <mgba-util/socket.h>
#include <mgba-util/string.h>
#include <mgba-util/vfs.h>