diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-06-10 02:24:34 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-06-10 02:24:34 +0200 |
commit | 092ec213818c1c3f94e4750f80bf1186703944d9 (patch) | |
tree | 13adafb9ef31401c459e6cf2dfba1613eba38c0f /deno2/deno.h | |
parent | 9df9cdae07048564a9d81e9ea67159d49196a1df (diff) |
Wrap deno library in a namespace.
Diffstat (limited to 'deno2/deno.h')
-rw-r--r-- | deno2/deno.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deno2/deno.h b/deno2/deno.h index f2a9e7294..2fadfd983 100644 --- a/deno2/deno.h +++ b/deno2/deno.h @@ -6,6 +6,8 @@ #include <string> #include "v8/include/v8.h" +namespace deno { + // Data that gets transmitted. struct buf_s { void* data; @@ -52,4 +54,6 @@ const char* deno_last_exception(Deno* d); void deno_dispose(Deno* d); void deno_terminate_execution(Deno* d); +} // namespace deno + #endif // DENO_H_ |