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