~ubuntu-branches/ubuntu/raring/scummvm/raring

« back to all changes in this revision

Viewing changes to backends/platform/webos/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-05-25 19:02:23 UTC
  • mto: (21.1.2 sid)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20110525190223-fiqm0oaec714xk31
Tags: upstream-1.3.0
ImportĀ upstreamĀ versionĀ 1.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ScummVM - Graphic Adventure Engine
 
2
 *
 
3
 * ScummVM is the legal property of its developers, whose names
 
4
 * are too numerous to list here. Please refer to the COPYRIGHT
 
5
 * file distributed with this source distribution.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU General Public License
 
9
 * as published by the Free Software Foundation; either version 2
 
10
 * of the License, or (at your option) any later version.
 
11
 
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
20
 *
 
21
 * $URL$
 
22
 * $Id$
 
23
 *
 
24
 */
 
25
 
 
26
#include "backends/platform/webos/webos.h"
 
27
#include "backends/plugins/sdl/sdl-provider.h"
 
28
#include "base/main.h"
 
29
 
 
30
#if defined(WEBOS)
 
31
 
 
32
#include <unistd.h>
 
33
 
 
34
int main(int argc, char* argv[]) {
 
35
        g_system = new OSystem_SDL_WebOS();
 
36
        assert(g_system);
 
37
 
 
38
        ((OSystem_SDL_WebOS *)g_system)->init();
 
39
 
 
40
#ifdef DYNAMIC_MODULES
 
41
        PluginManager::instance().addPluginProvider(new SDLPluginProvider());
 
42
#endif
 
43
 
 
44
        // Invoke the actual ScummVM main entry point:
 
45
        int res = scummvm_main(argc, argv);
 
46
 
 
47
        // Free OSystem
 
48
        delete (OSystem_SDL_WebOS *)g_system;
 
49
 
 
50
        return res;
 
51
}
 
52
 
 
53
#endif