forked from Mirror/wren
new API functions for maps: wrenSetSlotNewMap wrenGetMapCount wrenGetMapContainsKey wrenGetMapValue wrenSetMapValue wrenRemoveMapValue
6 lines
159 B
C
6 lines
159 B
C
#include "wren.h"
|
|
|
|
WrenForeignMethodFn mapsBindMethod(const char* signature);
|
|
void mapBindClass(
|
|
const char* className, WrenForeignClassMethods* methods);
|