The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / src / node.h @ 1a126ed1

History | View | Annotate | Download (201 Bytes)

1
#ifndef node_h
2
#define node_h
3

    
4
#define EV_STANDALONE 1
5
#include <ev.h>
6

    
7
#include <v8.h>
8

    
9
void node_fatal_exception (v8::TryCatch &try_catch); 
10
#define node_loop() ev_default_loop(0)
11

    
12
#endif // node_h
13