COMMON: Move all compression-related files to a separate directory
This commit is contained in:
parent
a92315368a
commit
fb7095f5a4
107 changed files with 137 additions and 138 deletions
|
@ -26,7 +26,7 @@
|
||||||
#include "common/math.h"
|
#include "common/math.h"
|
||||||
#include "common/error.h"
|
#include "common/error.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/huffman.h"
|
#include "common/compression/huffman.h"
|
||||||
|
|
||||||
#include "math/mdct.h"
|
#include "math/mdct.h"
|
||||||
#include "math/sinewindows.h"
|
#include "math/sinewindows.h"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Networking {
|
namespace Networking {
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include <common/savefile.h>
|
#include <common/savefile.h>
|
||||||
#include <gui/gui-manager.h>
|
#include <gui/gui-manager.h>
|
||||||
#include <gui/message.h>
|
#include <gui/message.h>
|
||||||
#include <common/zlib.h>
|
#include <common/compression/zlib.h>
|
||||||
|
|
||||||
|
|
||||||
// Savegame can not be bigger than this
|
// Savegame can not be bigger than this
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#define __FRAMFS_SAVE_MANAGER__
|
#define __FRAMFS_SAVE_MANAGER__
|
||||||
|
|
||||||
#include <common/savefile.h>
|
#include <common/savefile.h>
|
||||||
#include <common/zlib.h>
|
#include <common/compression/zlib.h>
|
||||||
|
|
||||||
#include <framfs.h> // N64 FramFS library
|
#include <framfs.h> // N64 FramFS library
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#define __PAKFS_SAVE_MANAGER__
|
#define __PAKFS_SAVE_MANAGER__
|
||||||
|
|
||||||
#include <common/savefile.h>
|
#include <common/savefile.h>
|
||||||
#include <common/zlib.h>
|
#include <common/compression/zlib.h>
|
||||||
|
|
||||||
#include <pakfs.h> // N64 PakFS library
|
#include <pakfs.h> // N64 PakFS library
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
#include "backends/platform/psp/input.h"
|
#include "backends/platform/psp/input.h"
|
||||||
#include "common/keyboard.h"
|
#include "common/keyboard.h"
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
//#define __PSP_DEBUG_FUNCS__ /* For debugging the stack */
|
//#define __PSP_DEBUG_FUNCS__ /* For debugging the stack */
|
||||||
//#define __PSP_DEBUG_PRINT__
|
//#define __PSP_DEBUG_PRINT__
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include <errno.h> // for removeSavefile()
|
#include <errno.h> // for removeSavefile()
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include "backends/vkeybd/keycode-descriptions.h"
|
#include "backends/vkeybd/keycode-descriptions.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
#define KEY_START_CHAR ('[')
|
#define KEY_START_CHAR ('[')
|
||||||
#define KEY_END_CHAR (']')
|
#define KEY_END_CHAR (']')
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/array.h"
|
#include "common/array.h"
|
||||||
#include "common/clickteam.h"
|
#include "common/compression/clickteam.h"
|
||||||
#include "common/gzio.h"
|
#include "common/compression/gzio.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
|
@ -19,7 +19,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
|
@ -38,7 +38,7 @@
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "gzio.h"
|
#include "common/compression/gzio.h"
|
||||||
|
|
||||||
|
|
||||||
/* Compression methods (see algorithm.doc) */
|
/* Compression methods (see algorithm.doc) */
|
|
@ -45,11 +45,11 @@
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/hash-str.h"
|
#include "common/hash-str.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/installshieldv3_archive.h"
|
#include "common/compression/installshieldv3_archive.h"
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include "common/endian.h"
|
#include "common/endian.h"
|
||||||
#include "common/rnc_deco.h"
|
#include "common/compression/rnc_deco.h"
|
||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
// StuffIt parsing based on https://github.com/mietek/theunarchiver/wiki/StuffItFormat
|
// StuffIt parsing based on https://github.com/mietek/theunarchiver/wiki/StuffItFormat
|
||||||
// Compression 14 based on libxad (http://sourceforge.net/projects/libxad/)
|
// Compression 14 based on libxad (http://sourceforge.net/projects/libxad/)
|
||||||
|
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
|
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/bitstream.h"
|
#include "common/bitstream.h"
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/scummsys.h"
|
#include "common/scummsys.h"
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/unarj.h"
|
#include "common/compression/unarj.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/hash-str.h"
|
#include "common/hash-str.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
|
@ -84,8 +84,8 @@ typedef Byte Bytef;
|
||||||
|
|
||||||
#include "common/crc.h"
|
#include "common/crc.h"
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/gzio.h"
|
#include "common/compression/gzio.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
|
|
||||||
#include "common/hashmap.h"
|
#include "common/hashmap.h"
|
|
@ -19,11 +19,11 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/vise.h"
|
#include "common/compression/vise.h"
|
||||||
|
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
// Installer VISE archive loader.
|
// Installer VISE archive loader.
|
||||||
//
|
//
|
|
@ -22,7 +22,7 @@
|
||||||
// Disable symbol overrides so that we can use zlib.h
|
// Disable symbol overrides so that we can use zlib.h
|
||||||
#define FORBIDDEN_SYMBOL_ALLOW_ALL
|
#define FORBIDDEN_SYMBOL_ALLOW_ALL
|
||||||
|
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
|
@ -4,23 +4,18 @@ MODULE_OBJS := \
|
||||||
achievements.o \
|
achievements.o \
|
||||||
archive.o \
|
archive.o \
|
||||||
base-str.o \
|
base-str.o \
|
||||||
clickteam.o \
|
|
||||||
concatstream.o \
|
concatstream.o \
|
||||||
config-manager.o \
|
config-manager.o \
|
||||||
coroutines.o \
|
coroutines.o \
|
||||||
dcl.o \
|
|
||||||
debug.o \
|
debug.o \
|
||||||
error.o \
|
error.o \
|
||||||
events.o \
|
events.o \
|
||||||
file.o \
|
file.o \
|
||||||
fs.o \
|
fs.o \
|
||||||
gui_options.o \
|
gui_options.o \
|
||||||
gzio.o \
|
|
||||||
hashmap.o \
|
hashmap.o \
|
||||||
iff_container.o \
|
iff_container.o \
|
||||||
ini-file.o \
|
ini-file.o \
|
||||||
installshield_cab.o \
|
|
||||||
installshieldv3_archive.o \
|
|
||||||
json.o \
|
json.o \
|
||||||
language.o \
|
language.o \
|
||||||
localization.o \
|
localization.o \
|
||||||
|
@ -36,30 +31,35 @@ MODULE_OBJS := \
|
||||||
random.o \
|
random.o \
|
||||||
rational.o \
|
rational.o \
|
||||||
rendermode.o \
|
rendermode.o \
|
||||||
rnc_deco.o \
|
|
||||||
str.o \
|
str.o \
|
||||||
stream.o \
|
stream.o \
|
||||||
streamdebug.o \
|
streamdebug.o \
|
||||||
str-enc.o \
|
str-enc.o \
|
||||||
encodings/singlebyte.o \
|
encodings/singlebyte.o \
|
||||||
stuffit.o \
|
|
||||||
system.o \
|
system.o \
|
||||||
textconsole.o \
|
textconsole.o \
|
||||||
text-to-speech.o \
|
text-to-speech.o \
|
||||||
tokenizer.o \
|
tokenizer.o \
|
||||||
translation.o \
|
translation.o \
|
||||||
unarj.o \
|
|
||||||
unicode-bidi.o \
|
unicode-bidi.o \
|
||||||
unzip.o \
|
|
||||||
ustr.o \
|
ustr.o \
|
||||||
util.o \
|
util.o \
|
||||||
vise.o \
|
|
||||||
winexe.o \
|
winexe.o \
|
||||||
winexe_ne.o \
|
winexe_ne.o \
|
||||||
winexe_pe.o \
|
winexe_pe.o \
|
||||||
xmlparser.o \
|
xmlparser.o \
|
||||||
xpfloat.o \
|
xpfloat.o \
|
||||||
zlib.o
|
compression/clickteam.o \
|
||||||
|
compression/dcl.o \
|
||||||
|
compression/gzio.o \
|
||||||
|
compression/installshield_cab.o \
|
||||||
|
compression/installshieldv3_archive.o \
|
||||||
|
compression/rnc_deco.o \
|
||||||
|
compression/stuffit.o \
|
||||||
|
compression/unarj.o \
|
||||||
|
compression/unzip.o \
|
||||||
|
compression/vise.o \
|
||||||
|
compression/zlib.o
|
||||||
|
|
||||||
ifdef ENABLE_EVENTRECORDER
|
ifdef ENABLE_EVENTRECORDER
|
||||||
MODULE_OBJS += \
|
MODULE_OBJS += \
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include "common/quicktime.h"
|
#include "common/quicktime.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
|
|
||||||
#include "agos/detection.h"
|
#include "agos/detection.h"
|
||||||
#include "agos/intern_detection.h"
|
#include "agos/intern_detection.h"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
|
|
||||||
#include "engines/advancedDetector.h"
|
#include "engines/advancedDetector.h"
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#include "audio/midiparser.h"
|
#include "audio/midiparser.h"
|
||||||
|
|
||||||
// PKWARE data compression library decompressor required for Simon 2
|
// PKWARE data compression library decompressor required for Simon 2
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
|
|
||||||
#include "gui/message.h"
|
#include "gui/message.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include "agos/agos.h"
|
#include "agos/agos.h"
|
||||||
#include "agos/intern.h"
|
#include "agos/intern.h"
|
||||||
|
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace AGOS {
|
namespace AGOS {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include "ags/console.h"
|
#include "ags/console.h"
|
||||||
#include "common/scummsys.h"
|
#include "common/scummsys.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/clickteam.h"
|
#include "common/compression/clickteam.h"
|
||||||
#include "common/debug-channels.h"
|
#include "common/debug-channels.h"
|
||||||
#include "common/events.h"
|
#include "common/events.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/debug-channels.h"
|
#include "common/debug-channels.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
#include "gui/message.h"
|
#include "gui/message.h"
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/str-array.h"
|
#include "common/str-array.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "graphics/cursorman.h"
|
#include "graphics/cursorman.h"
|
||||||
#include "graphics/font.h"
|
#include "graphics/font.h"
|
||||||
#include "graphics/palette.h"
|
#include "graphics/palette.h"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/serializer.h"
|
#include "common/serializer.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "graphics/palette.h"
|
#include "graphics/palette.h"
|
||||||
|
|
||||||
#include "composer/composer.h"
|
#include "composer/composer.h"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/punycode.h"
|
#include "common/punycode.h"
|
||||||
#include "common/tokenizer.h"
|
#include "common/tokenizer.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "director/types.h"
|
#include "director/types.h"
|
||||||
#include "graphics/macgui/macwindowmanager.h"
|
#include "graphics/macgui/macwindowmanager.h"
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
#include "draci/sound.h"
|
#include "draci/sound.h"
|
||||||
#include "draci/draci.h"
|
#include "draci/draci.h"
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "drascula/drascula.h"
|
#include "drascula/drascula.h"
|
||||||
#include "common/unarj.h"
|
#include "common/compression/unarj.h"
|
||||||
|
|
||||||
namespace Drascula {
|
namespace Drascula {
|
||||||
|
|
||||||
|
|
|
@ -20,12 +20,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/array.h"
|
#include "common/array.h"
|
||||||
#include "common/gzio.h"
|
#include "common/compression/gzio.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/rnc_deco.h"
|
#include "common/compression/rnc_deco.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
|
|
||||||
#include "dreamweb/rnca_archive.h"
|
#include "dreamweb/rnca_archive.h"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/events.h"
|
#include "common/events.h"
|
||||||
#include "common/math.h"
|
#include "common/math.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "common/random.h"
|
#include "common/random.h"
|
||||||
#include "common/timer.h"
|
#include "common/timer.h"
|
||||||
#include "graphics/cursorman.h"
|
#include "graphics/cursorman.h"
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#include "glk/adrift/scprotos.h"
|
#include "glk/adrift/scprotos.h"
|
||||||
#include "glk/adrift/detection.h"
|
#include "glk/adrift/detection.h"
|
||||||
#include "common/algorithm.h"
|
#include "common/algorithm.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
|
|
||||||
namespace Glk {
|
namespace Glk {
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "glk/screen.h"
|
#include "glk/screen.h"
|
||||||
#include "glk/conf.h"
|
#include "glk/conf.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "image/bmp.h"
|
#include "image/bmp.h"
|
||||||
#include "graphics/fonts/ttf.h"
|
#include "graphics/fonts/ttf.h"
|
||||||
#include "graphics/fontman.h"
|
#include "graphics/fontman.h"
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "glk/conf.h"
|
#include "glk/conf.h"
|
||||||
#include "glk/screen.h"
|
#include "glk/screen.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Glk {
|
namespace Glk {
|
||||||
namespace ZCode {
|
namespace ZCode {
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "glk/zcode/sound_folder.h"
|
#include "glk/zcode/sound_folder.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Glk {
|
namespace Glk {
|
||||||
namespace ZCode {
|
namespace ZCode {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include "common/foreach.h"
|
#include "common/foreach.h"
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
|
|
||||||
#include "backends/keymapper/action.h"
|
#include "backends/keymapper/action.h"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/md5.h"
|
#include "common/md5.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/bufferedstream.h"
|
#include "common/bufferedstream.h"
|
||||||
|
|
||||||
#include "engines/grim/patchr.h"
|
#include "engines/grim/patchr.h"
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
#include "engines/grim/update/update.h"
|
#include "engines/grim/update/update.h"
|
||||||
|
|
||||||
#include "common/algorithm.h"
|
#include "common/algorithm.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/str.h"
|
#include "common/str.h"
|
||||||
|
|
||||||
namespace Grim {
|
namespace Grim {
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
#include "common/events.h"
|
#include "common/events.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
|
|
||||||
#include "backends/audiocd/audiocd.h"
|
#include "backends/audiocd/audiocd.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include "common/keyboard.h"
|
#include "common/keyboard.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/gzio.h"
|
#include "common/compression/gzio.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
|
|
||||||
#include "engines/advancedDetector.h"
|
#include "engines/advancedDetector.h"
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "hdb/hdb.h"
|
#include "hdb/hdb.h"
|
||||||
#include "hdb/file-manager.h"
|
#include "hdb/file-manager.h"
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#define HYPNO_H
|
#define HYPNO_H
|
||||||
|
|
||||||
#include "common/array.h"
|
#include "common/array.h"
|
||||||
#include "common/installshieldv3_archive.h"
|
#include "common/compression/installshieldv3_archive.h"
|
||||||
#include "common/random.h"
|
#include "common/random.h"
|
||||||
#include "common/serializer.h"
|
#include "common/serializer.h"
|
||||||
#include "common/str-array.h"
|
#include "common/str-array.h"
|
||||||
|
@ -651,4 +651,3 @@ public:
|
||||||
} // End of namespace Hypno
|
} // End of namespace Hypno
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
|
|
||||||
namespace Kyra {
|
namespace Kyra {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
|
|
||||||
#include "audio/mixer.h"
|
#include "audio/mixer.h"
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include "macventure/macventure.h"
|
#include "macventure/macventure.h"
|
||||||
#include "macventure/windows.h"
|
#include "macventure/windows.h"
|
||||||
|
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace MacVenture {
|
namespace MacVenture {
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/random.h"
|
#include "common/random.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/huffman.h"
|
#include "common/compression/huffman.h"
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
|
|
||||||
#include "gui/debugger.h"
|
#include "gui/debugger.h"
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "mps_installer.h"
|
#include "mads/mps_installer.h"
|
||||||
|
|
||||||
namespace MADS {
|
namespace MADS {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "mohawk/installer_archive.h"
|
#include "mohawk/installer_archive.h"
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
|
|
||||||
namespace Mohawk {
|
namespace Mohawk {
|
||||||
|
|
|
@ -23,10 +23,10 @@
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
#include "common/vise.h"
|
#include "common/compression/vise.h"
|
||||||
#include "common/winexe.h"
|
#include "common/winexe.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "graphics/maccursor.h"
|
#include "graphics/maccursor.h"
|
||||||
#include "graphics/wincursor.h"
|
#include "graphics/wincursor.h"
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/stuffit.h"
|
#include "common/compression/stuffit.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/winexe.h"
|
#include "common/winexe.h"
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "common/debug-channels.h"
|
#include "common/debug-channels.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
#include "common/serializer.h"
|
#include "common/serializer.h"
|
||||||
|
|
||||||
#include "engines/nancy/nancy.h"
|
#include "engines/nancy/nancy.h"
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "neverhood/blbarchive.h"
|
#include "neverhood/blbarchive.h"
|
||||||
|
|
||||||
namespace Neverhood {
|
namespace Neverhood {
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "common/debug-channels.h"
|
#include "common/debug-channels.h"
|
||||||
#include "common/winexe_pe.h"
|
#include "common/winexe_pe.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
|
|
||||||
#include "engines/advancedDetector.h"
|
#include "engines/advancedDetector.h"
|
||||||
#include "engines/util.h"
|
#include "engines/util.h"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#ifndef PRIVATE_H
|
#ifndef PRIVATE_H
|
||||||
#define PRIVATE_H
|
#define PRIVATE_H
|
||||||
|
|
||||||
#include "common/installshieldv3_archive.h"
|
#include "common/compression/installshieldv3_archive.h"
|
||||||
#include "common/random.h"
|
#include "common/random.h"
|
||||||
#include "common/serializer.h"
|
#include "common/serializer.h"
|
||||||
#include "engines/engine.h"
|
#include "engines/engine.h"
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/events.h"
|
#include "common/events.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unarj.h"
|
#include "common/compression/unarj.h"
|
||||||
|
|
||||||
#include "audio/mixer.h"
|
#include "audio/mixer.h"
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
// Resource library
|
// Resource library
|
||||||
|
|
||||||
#include "common/dcl.h"
|
#include "common/compression/dcl.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/endian.h"
|
#include "common/endian.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#ifdef ENABLE_SCI32
|
#ifdef ENABLE_SCI32
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/serializer.h"
|
#include "common/serializer.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "scumm/actor.h"
|
#include "scumm/actor.h"
|
||||||
#include "scumm/charset.h"
|
#include "scumm/charset.h"
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
#include "audio/decoders/raw.h"
|
#include "audio/decoders/raw.h"
|
||||||
#include "audio/decoders/vorbis.h"
|
#include "audio/decoders/vorbis.h"
|
||||||
|
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace Scumm {
|
namespace Scumm {
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
|
|
||||||
#include "common/scummsys.h"
|
#include "common/scummsys.h"
|
||||||
#include "common/rnc_deco.h"
|
#include "common/compression/rnc_deco.h"
|
||||||
|
|
||||||
#define MAX_FILES_IN_LIST 60
|
#define MAX_FILES_IN_LIST 60
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
#include "engines/stark/services/settings.h"
|
#include "engines/stark/services/settings.h"
|
||||||
|
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "image/png.h"
|
#include "image/png.h"
|
||||||
|
|
||||||
namespace Stark {
|
namespace Stark {
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "sword25/kernel/kernel.h"
|
#include "sword25/kernel/kernel.h"
|
||||||
#include "sword25/kernel/persistenceservice.h"
|
#include "sword25/kernel/persistenceservice.h"
|
||||||
#include "sword25/kernel/inputpersistenceblock.h"
|
#include "sword25/kernel/inputpersistenceblock.h"
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/str-array.h"
|
#include "common/str-array.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "sword25/sword25.h" // for kDebugScript
|
#include "sword25/sword25.h" // for kDebugScript
|
||||||
#include "sword25/kernel/filesystemutil.h"
|
#include "sword25/kernel/filesystemutil.h"
|
||||||
#include "sword25/package/packagemanager.h"
|
#include "sword25/package/packagemanager.h"
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/textconsole.h"
|
#include "common/textconsole.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace TeenAgent {
|
namespace TeenAgent {
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "titanic/support/files_manager.h"
|
#include "titanic/support/files_manager.h"
|
||||||
#include "titanic/game_manager.h"
|
#include "titanic/game_manager.h"
|
||||||
#include "titanic/titanic.h"
|
#include "titanic/titanic.h"
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "titanic/support/rect.h"
|
#include "titanic/support/rect.h"
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "titanic/support/string.h"
|
#include "titanic/support/string.h"
|
||||||
|
|
||||||
namespace Titanic {
|
namespace Titanic {
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "common/debug-channels.h"
|
#include "common/debug-channels.h"
|
||||||
#include "common/events.h"
|
#include "common/events.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/installshield_cab.h"
|
#include "common/compression/installshield_cab.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "tony/tony.h"
|
#include "tony/tony.h"
|
||||||
#include "tony/custom.h"
|
#include "tony/custom.h"
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/rnc_deco.h"
|
#include "common/compression/rnc_deco.h"
|
||||||
|
|
||||||
#include "toon/hotspot.h"
|
#include "toon/hotspot.h"
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/rect.h"
|
#include "common/rect.h"
|
||||||
#include "common/rnc_deco.h"
|
#include "common/compression/rnc_deco.h"
|
||||||
#include "common/stack.h"
|
#include "common/stack.h"
|
||||||
|
|
||||||
namespace Toon {
|
namespace Toon {
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#include "ultima/nuvie/gui/widgets/msg_scroll.h"
|
#include "ultima/nuvie/gui/widgets/msg_scroll.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Ultima {
|
namespace Ultima {
|
||||||
namespace Nuvie {
|
namespace Nuvie {
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/translation.h"
|
#include "common/translation.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Ultima {
|
namespace Ultima {
|
||||||
namespace Shared {
|
namespace Shared {
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/savefile.h"
|
#include "common/savefile.h"
|
||||||
#include "common/fs.h"
|
#include "common/fs.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Wintermute {
|
namespace Wintermute {
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/tokenizer.h"
|
#include "common/tokenizer.h"
|
||||||
#include "common/config-manager.h"
|
#include "common/config-manager.h"
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#include "engines/wintermute/base/file/base_package.h"
|
#include "engines/wintermute/base/file/base_package.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/substream.h"
|
#include "common/substream.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
namespace Wintermute {
|
namespace Wintermute {
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
#include "graphics/fonts/ttf.h"
|
#include "graphics/fonts/ttf.h"
|
||||||
#include "graphics/fontman.h"
|
#include "graphics/fontman.h"
|
||||||
#include "common/unicode-bidi.h"
|
#include "common/unicode-bidi.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Wintermute {
|
namespace Wintermute {
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#include "common/endian.h"
|
#include "common/endian.h"
|
||||||
#include "common/str.h"
|
#include "common/str.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "wintermute/base/gfx/xfile_loader.h"
|
#include "wintermute/base/gfx/xfile_loader.h"
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
* Copyright (c) 2003-2013 Jan Nedoma and contributors
|
* Copyright (c) 2003-2013 Jan Nedoma and contributors
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "common/zlib.h"
|
#include "common/compression/zlib.h"
|
||||||
|
|
||||||
#include "engines/wintermute/base/base_file_manager.h"
|
#include "engines/wintermute/base/base_file_manager.h"
|
||||||
#include "engines/wintermute/base/base_game.h"
|
#include "engines/wintermute/base/base_game.h"
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "common/debug.h"
|
#include "common/debug.h"
|
||||||
#include "common/file.h"
|
#include "common/file.h"
|
||||||
#include "common/system.h"
|
#include "common/system.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "common/ustr.h"
|
#include "common/ustr.h"
|
||||||
#include "graphics/font.h"
|
#include "graphics/font.h"
|
||||||
#include "graphics/fonts/ttf.h"
|
#include "graphics/fonts/ttf.h"
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
#include "common/memstream.h"
|
#include "common/memstream.h"
|
||||||
#include "common/hashmap.h"
|
#include "common/hashmap.h"
|
||||||
#include "common/ptr.h"
|
#include "common/ptr.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
#include <ft2build.h>
|
#include <ft2build.h>
|
||||||
#include FT_FREETYPE_H
|
#include FT_FREETYPE_H
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#include "graphics/macgui/macwindowmanager.h"
|
#include "graphics/macgui/macwindowmanager.h"
|
||||||
|
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
|
|
||||||
namespace Graphics {
|
namespace Graphics {
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
#include "common/archive.h"
|
#include "common/archive.h"
|
||||||
#include "common/stream.h"
|
#include "common/stream.h"
|
||||||
#include "common/unzip.h"
|
#include "common/compression/unzip.h"
|
||||||
#include "common/macresman.h"
|
#include "common/macresman.h"
|
||||||
#include "graphics/fonts/bdf.h"
|
#include "graphics/fonts/bdf.h"
|
||||||
#include "graphics/fonts/macfont.h"
|
#include "graphics/fonts/macfont.h"
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue