Next: Emacsy Facade, Up: Api [Contents][Index]
Emacsy provides a C API to ease integration with C and C++ programs. The C API is given below.
Initialize Emacsy.
Enqueue a keyboard event.
Enqueue a mouse event.
Run an iteration of Emacsy’s event loop, does not block.
Return the mode line.
Run a hook.
Return the minibuffer point.
Terminate Emacsy; run termination hook.
Attempt to load a module.
The function scm_c_use_module throws an exception if it cannot find the module, so we have to split that functionality into a body function load_module_try and an error handler load_module_error.
Attempt to load a module. Returns 0 if no errors, and non-zero otherwise.
Convert integer flags to a list of symbols.
Ref name from emacsy module.
Next: Emacsy Facade, Up: Api [Contents][Index]