diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-09 13:24:30 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-09 14:27:46 -0700 |
commit | 413bcf20425992762a9a5a6e19caddc5ff160303 (patch) | |
tree | 4606305c26969bdaf955e7a74a860c73f2796c1f /src/handlers.h | |
parent | 72544de443701a1d9907db9583db4c948517338e (diff) |
Add readFileSync
Diffstat (limited to 'src/handlers.h')
-rw-r--r-- | src/handlers.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handlers.h b/src/handlers.h index decbe59da..715db3483 100644 --- a/src/handlers.h +++ b/src/handlers.h @@ -14,5 +14,6 @@ void handle_code_cache(Deno* d, uint32_t cmd_id, const char* filename, 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_ |