blob: 4bb97565167fd435a69f405d53fd17c2aebb7a4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef node_h
#define node_h
#include <ev.h>
#include <v8.h>
void node_fatal_exception (v8::TryCatch &try_catch);
#define node_loop() ev_default_loop(0)
#endif // node_h
|