summaryrefslogtreecommitdiff
path: root/src/reply.h
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-23 14:13:12 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-24 12:29:54 -0400
commit0213053856148379992212b189390f222c6cb460 (patch)
treef62e02bf4d8d91cddcc45169ce5afb0c2d4bf5de /src/reply.h
parentb79ce93010d0cc80a9345f646e562326de4588e5 (diff)
Remove handlers crate target.
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler.
Diffstat (limited to 'src/reply.h')
-rw-r--r--src/reply.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/reply.h b/src/reply.h
index 4b16204da..8815abd52 100644
--- a/src/reply.h
+++ b/src/reply.h
@@ -12,16 +12,6 @@
#include "deno.h"
extern "C" {
-
-void deno_reply_null(Deno* d, uint32_t cmd_id);
-void deno_reply_error(Deno* d, uint32_t cmd_id, const char* error_msg);
-
-void deno_reply_start(Deno* d, uint32_t cmd_id, int argc, char* argv[],
- char* cwd);
-void deno_reply_code_fetch(Deno* d, uint32_t cmd_id, const char* module_name,
- const char* filename, const char* source_code,
- const char* output_code);
-
// Parse incoming messages with C++ Flatbuffers, call into rust handlers.
void deno_handle_msg_from_js(Deno* d, deno_buf buf);
}