libwren-sys 0.1.0

FFI bindings for the wren embedded programming language
Documentation
#include <string.h>

#include "handle.h"

static WrenHandle* handle;

static void setValue(WrenVM* vm)
{
  handle = wrenGetSlotHandle(vm, 1);
}

static void getValue(WrenVM* vm)
{
  wrenSetSlotHandle(vm, 0, handle);
  wrenReleaseHandle(vm, handle);
}

WrenForeignMethodFn handleBindMethod(const char* signature)
{
  if (strcmp(signature, "static Handle.value=(_)") == 0) return setValue;
  if (strcmp(signature, "static Handle.value") == 0) return getValue;

  return NULL;
}