diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-13 03:24:07 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-18 15:43:50 -0400 |
commit | 3e51605bc9ca98522fc21a0673e690105f48da98 (patch) | |
tree | 1c31da16173d95d6623721414b402d1dcdf069b4 /src/internal.h | |
parent | 8a4e3dfda4975540d6e0059248477facfe03c31c (diff) |
Execute JS for the first time in Rust rewrite.
Implements code_fetch handler in Rust.
Add ability to embed string assets (for typescript declaration files)
Remove deno_cc and deno_cc_nosnapshot targets.
Diffstat (limited to 'src/internal.h')
-rw-r--r-- | src/internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal.h b/src/internal.h index 0ec0ea416..914079d9a 100644 --- a/src/internal.h +++ b/src/internal.h @@ -18,6 +18,9 @@ struct deno_s { deno_recv_cb cb; void* data; }; +// TODO(ry) Remove these when we call deno_reply_start from Rust. +char** deno_argv(); +int deno_argc(); } namespace deno { |