summaryrefslogtreecommitdiff
path: root/src/reply.h
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-13 19:55:10 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-16 08:40:11 -0400
commit36d82374cf54be5df23e570bd2c6865e223d5d76 (patch)
tree0885b628d43cd452981c278b9c02ee45042442e5 /src/reply.h
parentd770cc18f80257b520c2cf9cdc5ddea707b38680 (diff)
Implement deno_handle_msg_from_js in Rust
Fixes #419, #414.
Diffstat (limited to 'src/reply.h')
-rw-r--r--src/reply.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/reply.h b/src/reply.h
deleted file mode 100644
index 8815abd52..000000000
--- a/src/reply.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
-
-// TODO(ry) This library handles parsing and sending Flatbuffers. It's written
-// in C++ because flatbuffer support for Rust is not quite there. However, once
-// flatbuffers are supported in Rust, all of this code should be ported back to
-// Rust.
-
-#ifndef REPLY_H_
-#define REPLY_H_
-
-#include <stdint.h>
-#include "deno.h"
-
-extern "C" {
-// Parse incoming messages with C++ Flatbuffers, call into rust handlers.
-void deno_handle_msg_from_js(Deno* d, deno_buf buf);
-}
-#endif // REPLY_H_