2015-03-22 22:16:53 +01:00
|
|
|
#ifndef wren_meta_h
|
|
|
|
|
#define wren_meta_h
|
|
|
|
|
|
|
|
|
|
#include "wren.h"
|
|
|
|
|
#include "wren_common.h"
|
|
|
|
|
|
|
|
|
|
// This module defines the Meta class and its associated methods.
|
|
|
|
|
#if WREN_USE_LIB_META
|
|
|
|
|
|
|
|
|
|
void wrenLoadMetaLibrary(WrenVM* vm);
|
|
|
|
|
|
2015-03-26 04:20:26 +01:00
|
|
|
WrenForeignMethodFn wrenBindMetaForeignMethod(WrenVM* vm,
|
|
|
|
|
const char* className,
|
|
|
|
|
const char* signature);
|
|
|
|
|
|
2015-03-22 22:16:53 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|