diff options
| author | Eugene Sandulenko | 2011-09-23 08:51:58 -0700 |
|---|---|---|
| committer | Eugene Sandulenko | 2011-09-23 08:51:58 -0700 |
| commit | 1ad388127aa6aacd0b04b2eb5e4047382ea10b97 (patch) | |
| tree | efb45da0297cb35a1c80a1b3966cdda4a74c2b62 /backends/platform/maemo/main.cpp | |
| parent | 077acc5575a1918850e38df06d72579583f55053 (diff) | |
| parent | 9aad73be5ef35065b8a9b63958b39184083e0700 (diff) | |
| download | scummvm-rg350-1ad388127aa6aacd0b04b2eb5e4047382ea10b97.tar.gz scummvm-rg350-1ad388127aa6aacd0b04b2eb5e4047382ea10b97.tar.bz2 scummvm-rg350-1ad388127aa6aacd0b04b2eb5e4047382ea10b97.zip | |
Merge pull request #86 from tsoliman/maemo-master-rebased-2
MAEMO: New version of the port
Diffstat (limited to 'backends/platform/maemo/main.cpp')
| -rw-r--r-- | backends/platform/maemo/main.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/backends/platform/maemo/main.cpp b/backends/platform/maemo/main.cpp new file mode 100644 index 0000000000..6b69cd81d0 --- /dev/null +++ b/backends/platform/maemo/main.cpp @@ -0,0 +1,52 @@ +/* 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. + * + */ + +#if defined(MAEMO) + +#define FORBIDDEN_SYMBOL_EXCEPTION_unistd_h + +#include "backends/platform/maemo/maemo.h" +#include "backends/plugins/sdl/sdl-provider.h" +#include "base/main.h" + +#include <unistd.h> + +int main(int argc, char* argv[]) { + g_system = new OSystem_SDL_Maemo(); + assert(g_system); + + ((OSystem_SDL_Maemo *)g_system)->init(); + +#ifdef DYNAMIC_MODULES + PluginManager::instance().addPluginProvider(new SDLPluginProvider()); +#endif + + // Invoke the actual ScummVM main entry point: + int res = scummvm_main(argc, argv); + + // Free OSystem + delete (OSystem_SDL_Maemo *)g_system; + + return res; +} + +#endif |
