renamed main2.c to main-s.c

started adding client code
This commit is contained in:
2018-03-17 16:07:51 +00:00
parent 1968f11cdf
commit 5aa3a72eea
7 changed files with 366 additions and 27 deletions

View File

@ -30,4 +30,27 @@
#include <hcl.h>
typedef struct hcl_client_t hcl_client_t;
#if defined(__cplusplus)
extern "C" {
#endif
HCL_EXPORT hcl_client_t* hcl_client_open (
hcl_mmgr_t* mmgr,
hcl_oow_t xtnsize,
/*hcl_client_prim_t* prim,*/
hcl_errnum_t* errnum
);
HCL_EXPORT void hcl_client_close (
hcl_client_t* client
);
#if defined(__cplusplus)
}
#endif
#endif