From 414c2d42e60d32b63a20a6132889f3cf5fb7fbdb Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 8 Mar 2021 12:47:52 -0500 Subject: [PATCH] add lokinet.h header for liblokinet api --- include/lokinet.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/lokinet.h diff --git a/include/lokinet.h b/include/lokinet.h new file mode 100644 index 000000000..a026fbe4e --- /dev/null +++ b/include/lokinet.h @@ -0,0 +1,23 @@ +#ifndef LOKINET_H +#define LOKINET_H + +#ifdef __cplusplus +extern "C" { +#endif + + + struct lokinet_context; + + struct lokinet_context * + lokinet_context_new(); + + void + lokinet_context_free(struct lokinet_context *); + + + + +#ifdef __cplusplus +} +#endif +#endif