forgotten commit. disabled until egl is adapted.
[AROS-Contrib.git] / FryingPan / FP / Main.cpp
blob7ea51bdeea17364bf27fc5e2e8b4996b4761845a
1 /*
2 * FryingPan - Amiga CD/DVD Recording Software (User Interface and supporting Libraries only)
3 * Copyright (C) 2001-2011 Tomasz Wiszkowski Tomasz.Wiszkowski at gmail.com
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 2.1
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #include <Generic/Generic.h>
21 #include <Generic/LibrarySpool.h>
22 #include "Application.h"
23 #include "Globals.h"
25 using namespace GenNS;
27 extern const char* Version;
29 const char* Version =
30 "$VER: FryingPan 1.4 (1.2.2012) (C) 2004-2008 Tomasz Wiszkowski";
32 int main()
34 LibrarySpool::Init();
36 delete new Application();
38 LibrarySpool::Exit();
40 return 0;