diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-12-03 12:51:17 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-12-04 23:21:33 +0100 |
commit | 1167ab96e9be2a86b1315693b843820eef978685 (patch) | |
tree | c2702554e7696e0cf6344a61b37a332c82f27229 /platform/javascript/http_request.h | |
parent | ea7dd1be36abc528f39e7c42725267d01774983b (diff) |
[HTML5] Add function signatures to JS libraries.
Diffstat (limited to 'platform/javascript/http_request.h')
-rw-r--r-- | platform/javascript/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/http_request.h b/platform/javascript/http_request.h index 54e98c1927..41e4749216 100644 --- a/platform/javascript/http_request.h +++ b/platform/javascript/http_request.h @@ -47,7 +47,7 @@ typedef enum { extern int godot_xhr_new(); extern void godot_xhr_reset(int p_xhr_id); -extern bool godot_xhr_free(int p_xhr_id); +extern void godot_xhr_free(int p_xhr_id); extern int godot_xhr_open(int p_xhr_id, const char *p_method, const char *p_url, const char *p_user = nullptr, const char *p_password = nullptr); |