build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+54
View File
@@ -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"; }