1// All registration files need to #include appinfo.rh.
2#include <AppInfo.rh>
3
4// All registration files must define UID2, which is always
5// KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
6UID2 KUidAppRegistrationResourceFile
7UID3 0xA0000658 // 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 = "scummVM_A0000658"; // filename of application binary (minus extension)
15	// Specify the location of the localisable icon/caption definition file
16	localisable_resource_file = "\\Resource\\Apps\\ScummVM_A0000658_loc";
17	}
18