(Xbox 1) Add Griffin-like wrapper file for the RetroLaunch source

files
This commit is contained in:
twinaphex 2012-07-24 18:16:03 +02:00
parent 5d22842f75
commit e88c6b5cfe
2 changed files with 41 additions and 25 deletions

View File

@ -321,6 +321,9 @@
CompileAs="2"/>
</FileConfiguration>
</File>
<File
RelativePath="..\..\xbox1\retrolaunch.cpp">
</File>
<File
RelativePath="..\..\console\rzlib\rzlib.c">
<FileConfiguration
@ -354,31 +357,6 @@
CompileAs="1"/>
</FileConfiguration>
</File>
<Filter
Name="RetroLaunch"
Filter="">
<File
RelativePath="..\..\xbox1\RetroLaunch\Font.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\IoSupport.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\MenuMain.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\MenuManager.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\Rom.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\RomList.cpp">
</File>
<File
RelativePath="..\..\xbox1\RetroLaunch\Surface.cpp">
</File>
</Filter>
</Filter>
<Filter
Name="Header Files"

38
xbox1/retrolaunch.cpp Normal file
View File

@ -0,0 +1,38 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
* Copyright (C) 2011-2012 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
/**
* RetroLaunch 2012
*
* 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.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. To contact the
* authors: Surreal64 CE Team (http://www.emuxtras.net)
*/
#include "RetroLaunch/Font.cpp"
#include "RetroLaunch/IoSupport.cpp"
#include "RetroLaunch/MenuMain.cpp"
#include "RetroLaunch/MenuManager.cpp"
#include "RetroLaunch/Rom.cpp"
#include "RetroLaunch/RomList.cpp"
#include "RetroLaunch/Surface.cpp"