initialized the io multiplexer properly in cb_vm_startup()

This commit is contained in:
2021-02-08 09:16:53 +00:00
parent e67985e58f
commit 7d7c709591
3 changed files with 354 additions and 2 deletions

View File

@ -1810,6 +1810,22 @@ HCL_EXPORT void hcl_seterrwithsyserr (
int syserr_code
);
void hcl_seterrbfmtwithsyserr (
hcl_t* hcl,
int syserr_type,
int syserr_code,
const hcl_bch_t* fmt,
...
);
void hcl_seterrufmtwithsyserr (
hcl_t* hcl,
int syserr_type,
int syserr_code,
const hcl_uch_t* fmt,
...
);
HCL_EXPORT void hcl_seterrbfmt (
hcl_t* hcl,
hcl_errnum_t errnum,