summaryrefslogtreecommitdiff
path: root/src/handlers.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/handlers.h
parentd770cc18f80257b520c2cf9cdc5ddea707b38680 (diff)
Implement deno_handle_msg_from_js in Rust
Fixes #419, #414.
Diffstat (limited to 'src/handlers.h')
-rw-r--r--src/handlers.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/handlers.h b/src/handlers.h
deleted file mode 100644
index 715db3483..000000000
--- a/src/handlers.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
-#ifndef HANDLERS_H_
-#define HANDLERS_H_
-
-#include <stdint.h>
-#include "deno.h"
-
-extern "C" {
-void handle_code_fetch(Deno* d, uint32_t cmd_id, const char* module_specifier,
- const char* containing_file);
-void handle_code_cache(Deno* d, uint32_t cmd_id, const char* filename,
- const char* source_code, const char* output_code);
-
-void handle_timer_start(Deno* d, uint32_t cmd_id, uint32_t timer_id,
- bool interval, uint32_t delay);
-void handle_timer_clear(Deno* d, uint32_t cmd_id, uint32_t timer_id);
-void handle_read_file_sync(Deno* d, uint32_t cmd_id, const char* filename);
-} // extern "C"
-#endif // HANDLERS_H_