From 2e3fd7cf050e24b9f6363b1a38c6ff45847c6d6f Mon Sep 17 00:00:00 2001 From: Thomas Fach-Pedersen Date: Fri, 16 May 2014 21:58:49 +0200 Subject: BLADERUNNER: Start port to scummvm engine Just shows the splash for now. VQA decoder partially ported but without audio and some minor special features. --- engines/bladerunner/decompress_lzo.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 engines/bladerunner/decompress_lzo.h (limited to 'engines/bladerunner/decompress_lzo.h') diff --git a/engines/bladerunner/decompress_lzo.h b/engines/bladerunner/decompress_lzo.h new file mode 100644 index 0000000000..20e8581f61 --- /dev/null +++ b/engines/bladerunner/decompress_lzo.h @@ -0,0 +1,34 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef BLADERUNNER_DECOMPRESS_LZO_H +#define BLADERUNNER_DECOMPRESS_LZO_H + +#include "common/types.h" + +namespace BladeRunner { + +int decompress_lzo1x(const uint8 *in, size_t inLen, uint8 *out, size_t *outLen); + +}; // End of namespace BladeRunner + +#endif -- cgit v1.2.3 From d260f993aad56cf699d8ba298c84e603650edf8f Mon Sep 17 00:00:00 2001 From: Thomas Fach-Pedersen Date: Sat, 24 May 2014 12:48:36 +0200 Subject: BLADERUNNER: No semicolon after namespace closing brace --- engines/bladerunner/decompress_lzo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/bladerunner/decompress_lzo.h') diff --git a/engines/bladerunner/decompress_lzo.h b/engines/bladerunner/decompress_lzo.h index 20e8581f61..e6404c654c 100644 --- a/engines/bladerunner/decompress_lzo.h +++ b/engines/bladerunner/decompress_lzo.h @@ -29,6 +29,6 @@ namespace BladeRunner { int decompress_lzo1x(const uint8 *in, size_t inLen, uint8 *out, size_t *outLen); -}; // End of namespace BladeRunner +} // End of namespace BladeRunner #endif -- cgit v1.2.3