45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
/* ScummVM - Graphic Adventure Engine
|
|
* Copyright (C) 2020 Stryzhniou Fiodar
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
// All registration files need to #include appinfo.rh.
|
|
#include <AppInfo.rh>
|
|
#include "Symbian_release_config.h"
|
|
|
|
// All registration files must define UID2, which is always
|
|
// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
|
|
UID2 KUidAppRegistrationResourceFile
|
|
|
|
#if SYMBIAN_RELEASE_BUILD
|
|
UID3 0x2006FE7E // application UID
|
|
#else
|
|
UID3 0xA006FE7E // test application UID
|
|
#endif //SYMBIAN_RELEASE_BUILD
|
|
|
|
// Registration file need to containo an APP_REGISTRATION_INFO resource that
|
|
// minimally needs to provide the name of the application binary (using the
|
|
// app_file statement).
|
|
RESOURCE APP_REGISTRATION_INFO
|
|
{
|
|
app_file = "ScummVM5"; // filename of application binary (minus extension)
|
|
// Specify the location of the localisable icon/caption definition file
|
|
localisable_resource_file = "\\Resource\\Apps\\ScummVM5_loc";
|
|
}
|