build: add the SIBO SDK
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
HELLO.RSS
|
||||
|
||||
English resource file for Hello World application
|
||||
|
||||
*/
|
||||
|
||||
#include <hwim.rh>
|
||||
#include <hello2.rg>
|
||||
|
||||
RESOURCE WSERV_INFO hello_accs
|
||||
{
|
||||
menbar_id=hello_menbar;
|
||||
first_com=O_COM_EXIT;
|
||||
accel={'x', /* Exit */
|
||||
'h', /* Hello */
|
||||
'b'}; /* Bye */
|
||||
}
|
||||
|
||||
RESOURCE MENU_BAR hello_menbar
|
||||
{
|
||||
items=
|
||||
{
|
||||
MENU_BAR_ITEM
|
||||
{
|
||||
menu_id=message_menu;
|
||||
mb_item="Message";
|
||||
},
|
||||
MENU_BAR_ITEM
|
||||
{
|
||||
menu_id=special_menu;
|
||||
mb_item="Special";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE MENU message_menu
|
||||
{
|
||||
items =
|
||||
{
|
||||
MENU_ITEM
|
||||
{
|
||||
com_id=O_COM_HELLO;
|
||||
mn_item="Say hello";
|
||||
},
|
||||
MENU_ITEM
|
||||
{
|
||||
com_id=O_COM_BYE;
|
||||
mn_item="Say goodbye";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE MENU special_menu
|
||||
{
|
||||
items =
|
||||
{
|
||||
MENU_ITEM
|
||||
{
|
||||
com_id=O_COM_EXIT;
|
||||
mn_item="Exit";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE STRING hello_message {str="Hello World";}
|
||||
|
||||
RESOURCE STRING bye_message {str="Goodbye Cruel World";}
|
||||
Reference in New Issue
Block a user