diff options
Diffstat (limited to 'include/ruby')
-rw-r--r-- | include/ruby/vm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ruby/vm.h b/include/ruby/vm.h index 684346973..27b976dd8 100644 --- a/include/ruby/vm.h +++ b/include/ruby/vm.h @@ -19,4 +19,10 @@ * http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/branches/mvm/ */ +/* VM type declaration */ +typedef struct rb_vm_struct ruby_vm_t; + +/* core API */ +int ruby_vm_destruct(ruby_vm_t *vm); + #endif /* RUBY_VM_H */ |