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