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
+66
View File
@@ -0,0 +1,66 @@
#include "remind.rh"
STRUCT STRING
{
TEXT str;
}
STRUCT LSTRING
{
LTEXT lstr;
}
STRUCT MENU_TITLE
{
TEXT str;
BYTE ncommands;
}
STRUCT STRING_ARRAY
{
STRUCT strlst[];
}
RESOURCE STRING_ARRAY remind_cmds
{
strlst=
{
STRING {str="iInsert";},
STRING {str="cCopy";},
STRING {str="uUpdate";},
STRING {str="aAdd";},
STRING {str="dDelete";},
STRING {str="pPrint";},
STRING {str="yPrint setup";},
STRING {str="xExit";}
};
}
RESOURCE STRING_ARRAY remind_menus
{
strlst=
{
MENU_TITLE {str="Edit"; ncommands=EDIT_ITEMS;},
MENU_TITLE {str="Special"; ncommands=SPECIAL_ITEMS;}
};
}
RESOURCE STRING str_no_reminders_set {str="No reminders set";}
RESOURCE STRING str_reminder {str="Reminder";}
RESOURCE STRING str_message {str="Message";}
RESOURCE STRING str_time {str="Time";}
RESOURCE STRING str_date {str="Date";}
RESOURCE STRING str_no_entry_update {str="No entry to update";}
RESOURCE STRING str_no_entry_delete {str="No entry to delete";}
RESOURCE STRING str_no_entry_copy {str="No entry to copy";}
RESOURCE STRING str_no_entry_insert {str="No entry to insert";}
RESOURCE STRING str_reminder_copied {str="Reminder copied";}
RESOURCE STRING str_nothing_print {str="Nothing to print";}
RESOURCE STRING str_delete_reminder {str="Delete this reminder";}
RESOURCE STRING str_warning {str="Warning";}
RESOURCE LSTRING lstr_delete_all {lstr="Exiting will delete all reminders";}
RESOURCE STRING str_ny {str="ny";}
RESOURCE STRING str_no {str="No";}
RESOURCE STRING str_yes {str="Yes";}
RESOURCE STRING str_cancel {str="Cancel";}
RESOURCE STRING str_exit {str="Exit";}