43 lines
703 B
XML
43 lines
703 B
XML
/*
|
|||
|
|
HELLO.RSS
|
||
|
|
|
||
|
|
English resource file for Hello World application
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <hwim.rh>
|
||
|
|
#include <timer.rg>
|
||
|
|
|
||
|
|
RESOURCE WSERV_INFO timer_accs
|
||
|
|
{
|
||
|
|
menbar_id=timer_menbar;
|
||
|
|
first_com=O_COM_EXIT;
|
||
|
|
accel={'x'}; /* Exit */
|
||
|
|
}
|
||
|
|
|
||
|
|
RESOURCE MENU_BAR timer_menbar
|
||
|
|
{
|
||
|
|
items=
|
||
|
|
{
|
||
|
|
MENU_BAR_ITEM
|
||
|
|
{
|
||
|
|
menu_id=special_menu;
|
||
|
|
mb_item="Special";
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
RESOURCE MENU special_menu
|
||
|
|
{
|
||
|
|
items =
|
||
|
|
{
|
||
|
|
MENU_ITEM
|
||
|
|
{
|
||
|
|
com_id=O_COM_EXIT;
|
||
|
|
mn_item="Exit";
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
RESOURCE STRING timer_info {str="Counted to %u";}
|