19 lines
482 B
C
19 lines
482 B
C
|
#ifndef wren_opt_meta_h
|
||
|
#define wren_opt_meta_h
|
||
|
|
||
|
#include "wren_common.h"
|
||
|
#include "wren.h"
|
||
|
|
||
|
// This module defines the Meta class and its associated methods.
|
||
|
#if WREN_OPT_META
|
||
|
|
||
|
const char* wrenMetaSource();
|
||
|
WrenForeignMethodFn wrenMetaBindForeignMethod(WrenVM* vm,
|
||
|
const char* className,
|
||
|
bool isStatic,
|
||
|
const char* signature);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|