1// All registration files need to #include appinfo.rh.
2#include <AppInfo.rh>
3#include <openjazz.rsg>
4// All registration files must define UID2, which is always
5// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
6UID2 KUidAppRegistrationResourceFile
7UID3 0xA000A005 // application UID
8
9// Registration file need to containo an APP_REGISTRATION_INFO resource that
10// minimally needs to provide the name of the application binary (using the
11// app_file statement).
12RESOURCE APP_REGISTRATION_INFO
13	{
14	app_file = "openjazz"; // filename of application binary (minus extension)
15	// Specify the location of the localisable icon/caption definition file
16	localisable_resource_file = "\\Resource\\Apps\\openjazz";
17	localisable_resource_id = R_LOCALISABLE_APP_INFO;
18	}
19
20