mirror of https://github.com/mgba-emu/mgba.git
Feature: Move several headers into include/
This commit is contained in:
parent
ad203c17bd
commit
2fdb5a1ff9
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <QDir>
|
||||
#include <QMenu>
|
||||
|
||||
#include "feature/commandline.h"
|
||||
#include <mgba/feature/commandline.h>
|
||||
|
||||
using namespace QGBA;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue