]> gitweb.factorcode.org Git - factor.git/blob - vm/factor.hpp
VM: new function set_memory_locked(true/false)
[factor.git] / vm / factor.hpp
1 namespace factor {
2
3 VM_C_API void init_globals();
4 factor_vm* new_factor_vm();
5 VM_C_API void start_standalone_factor(int argc, vm_char** argv);
6
7 // os-*
8 void open_console();
9 void close_console();
10 void lock_console();
11 void unlock_console();
12
13 void ignore_ctrl_c();
14 void handle_ctrl_c();
15
16 bool set_memory_locked(cell base, cell size, bool locked);
17
18 }