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
+31
View File
@@ -0,0 +1,31 @@
LIBRARY wl$txt
EXTERNAL olib
INCLUDE p_std.h
INCLUDE p_object.h
INCLUDE olib.g
INCLUDE appman.g
CLASS txtread active
NB Must be first class in DYL
{
REPLACE destroy
REPLACE ao_init
REPLACE ao_queue
REPLACE ao_run
REPLACE ao_abrun
CONSTANTS
{
TXTREAD_BUFLEN 256
}
PROPERTY
{
UWORD pos; current document character content offset
UWORD lastpos; start of previous paragraph
TEXT eopara; end of para marker
TEXT dummy;
UWORD len; length of text in buf[]
TEXT buf[TXTREAD_BUFLEN]; input text buffer
}
}