build: add the SIBO SDK
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
/* EHELLO.RSS */
|
||||
|
||||
#include <hwim.rh>
|
||||
#include <hwim.rg>
|
||||
#include <ehello.rg>
|
||||
|
||||
RESOURCE WSERV_INFO ehello_accs
|
||||
{
|
||||
menbar_id=ehello_mbar;
|
||||
first_com=O_COM_EXIT;
|
||||
accel={'x'};
|
||||
}
|
||||
|
||||
RESOURCE MENU_BAR ehello_mbar
|
||||
{
|
||||
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 DIALOG ehdlg
|
||||
{
|
||||
title="Edit window";
|
||||
flags=DLGBOX_RBUF_FILLED;
|
||||
controls=
|
||||
{
|
||||
CONTROL
|
||||
{
|
||||
class=C_TEXTWIN;
|
||||
flags=DLGBOX_ITEM_DEAD;
|
||||
prompt="Current text";
|
||||
info=TXTMESS { str="*";}; /* placeholder */
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
RESOURCE STRING ehstr_init { str="Hello world"; }
|
||||
Reference in New Issue
Block a user