From 0d07a51acf775b638b1112e707cc615041a2e938 Mon Sep 17 00:00:00 2001 From: Vincent Hamm Date: Fri, 27 Apr 2007 20:31:43 +0000 Subject: Cleanup svn-id: r26624 --- engines/cruise/saveload.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 engines/cruise/saveload.h (limited to 'engines/cruise/saveload.h') diff --git a/engines/cruise/saveload.h b/engines/cruise/saveload.h new file mode 100644 index 0000000000..8acacaf36e --- /dev/null +++ b/engines/cruise/saveload.h @@ -0,0 +1,34 @@ +/* ScummVM - Scumm Interpreter + * Copyright (C) 2006 The ScummVM project + * + * cinE Engine is (C) 2004-2005 by CinE Team + * + * 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. + * + * $URL$ + * $Id$ + * + */ + +#ifndef _LOADSAVE_H_ +#define _LOADSAVE_H_ + +namespace Cruise { + +int loadSavegameData(int saveGameIdx); + +} // End of namespace Cruise + +#endif -- cgit v1.2.3 From ffce26ebfea301ec33f3d485fa9dbaa0dffccb5b Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 27 Apr 2007 22:33:45 +0000 Subject: Fix code formatting (partially) and guard defines in includes. svn-id: r26631 --- engines/cruise/saveload.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/cruise/saveload.h') diff --git a/engines/cruise/saveload.h b/engines/cruise/saveload.h index 8acacaf36e..179c0a78f1 100644 --- a/engines/cruise/saveload.h +++ b/engines/cruise/saveload.h @@ -22,8 +22,8 @@ * */ -#ifndef _LOADSAVE_H_ -#define _LOADSAVE_H_ +#ifndef CRUISE_SAVELOAD_H +#define CRUISE_SAVELOAD_H namespace Cruise { -- cgit v1.2.3