MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at mir/inline-method 15 lines 348 B view raw
1#ifndef PROCESS_H 2#define PROCESS_H 3 4#include "types.h" 5 6void init_process_module(void); 7ant_value_t process_library(ant_t *js); 8 9void process_enable_keypress_events(void); 10void emit_process_event(const char *event_type, ant_value_t *args, int nargs); 11 12bool has_active_stdin(void); 13bool process_has_event_listeners(const char *event_type); 14 15#endif