The unified diff between revisions [58a3ccba..] and [26704bfc..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'src/lsi/abi.h'
# # old_revision [58a3ccba47e51398ea76582c5b4a94bf8af04187] # new_revision [26704bfc7dde9382e68dbefa013c51b37b934b1d] # # patch "src/lsi/abi.h" # from [98e94aff91b2f63bdfe39ead17c398d5a72e5822] # to [c408c99ca10bdd772b2a38c5cc07b81c239584e1] # ============================================================ --- src/lsi/abi.h 98e94aff91b2f63bdfe39ead17c398d5a72e5822 +++ src/lsi/abi.h c408c99ca10bdd772b2a38c5cc07b81c239584e1 @@ -2,6 +2,12 @@ typedef int (*vm_intfn)(void); typedef int (*vm_intfn)(void); +extern const long vm_abiversion1; +extern const long vm_abiversion2; +extern const long vm_abiversion3; +extern const long vm_abiversion4; +extern const long vm_abiversion5; + /* * We must include here all prototypes for functions which can be * included in the ABI function table @@ -12,6 +18,7 @@ int vm_intfn___global_array_load(void); int vm_intfn___global_load(void); int vm_intfn___global_array_store(void); int vm_intfn___global_array_load(void); +int vm_intfn___stackdump(void); int vm_intfn_printint(void); int vm_intfn_printreal(void); int vm_intfn_printstr(void); @@ -38,3 +45,14 @@ int vm_intfn_mouse_read(void); int vm_intfn_cos(void); int vm_intfn_random(void); int vm_intfn_mouse_read(void); +int vm_intfn_cmdsocket_listen(void); +int vm_intfn_cmdsocket_accept(void); +int vm_intfn_cmdsocket_read(void); +int vm_intfn_cmdsocket_write(void); +int vm_intfn_cmdsocket_prefix(void); +int vm_intfn_sql_query(void); +int vm_intfn_sql_query_1s(void); +int vm_intfn_sql_getvar(void); +int vm_intfn_sql_getvar_array(void); +int vm_intfn_sql_setvar(void); +int vm_intfn_sql_setvar_array(void);