Mercurial > MadButterfly
annotate nodejs/X_supp_njs.h @ 551:9e69c4a0f565 Android_Skia
rename njs_ev_data_t to njs_runtime_t
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Sun, 06 Jun 2010 14:04:03 +0800 |
parents | 127499ab2412 |
children | dd8d32b4c899 |
rev | line source |
---|---|
550
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
1 #ifndef __X_SUPP_NJS_H_ |
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
2 #define __X_SUPP_NJS_H_ |
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
3 |
551
9e69c4a0f565
rename njs_ev_data_t to njs_runtime_t
Thinker K.F. Li <thinker@branda.to>
parents:
550
diff
changeset
|
4 struct _njs_runtime; |
9e69c4a0f565
rename njs_ev_data_t to njs_runtime_t
Thinker K.F. Li <thinker@branda.to>
parents:
550
diff
changeset
|
5 typedef struct _njs_runtime njs_runtime_t; |
550
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
6 |
551
9e69c4a0f565
rename njs_ev_data_t to njs_runtime_t
Thinker K.F. Li <thinker@branda.to>
parents:
550
diff
changeset
|
7 extern void X_njs_MB_handle_connection(njs_runtime_t *ev_data); |
9e69c4a0f565
rename njs_ev_data_t to njs_runtime_t
Thinker K.F. Li <thinker@branda.to>
parents:
550
diff
changeset
|
8 extern void X_njs_MB_free(njs_runtime_t *ev_data); |
9e69c4a0f565
rename njs_ev_data_t to njs_runtime_t
Thinker K.F. Li <thinker@branda.to>
parents:
550
diff
changeset
|
9 extern njs_runtime_t *X_njs_MB_new(char *display_name, int w, int h); |
550
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
10 extern void *_X_njs_MB_get_runtime(nsj_ev_data_t *ev_data); |
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
11 |
127499ab2412
Upgrade ndoejs plugin to level of a new runtime.
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
12 #endif /* __X_SUPP_NJS_H_ */ |