blob: 4bbe017ffd49dc75545520863fc52e85b20db2d2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _API_REF_H_
#define _API_REF_H_
#include "vm.h"
extern UwUVMType uwuref_type;
UwUVMValue uwuref_create(UwUVMFunction *value);
UwUVMFunction *uwuref_get(UwUVMValue vm_value);
#endif
|