]> gitweb.factorcode.org Git - factor.git/blob - vm/entry_points.hpp
VM: Refactor entry_points to Factor style
[factor.git] / vm / entry_points.hpp
1 namespace factor {
2
3 typedef void (*c_to_factor_func_type)(cell quot);
4 typedef void (*unwind_native_frames_func_type)(cell quot, void* to);
5 typedef cell (*get_fpu_state_func_type)();
6 typedef void (*set_fpu_state_func_type)(cell state);
7
8 }