summaryrefslogtreecommitdiff
path: root/platform/javascript/http_request.h
diff options
context:
space:
mode:
authorFabio Alessandrelli <fabio.alessandrelli@gmail.com>2020-12-03 12:51:17 +0100
committerFabio Alessandrelli <fabio.alessandrelli@gmail.com>2020-12-04 23:21:33 +0100
commit1167ab96e9be2a86b1315693b843820eef978685 (patch)
treec2702554e7696e0cf6344a61b37a332c82f27229 /platform/javascript/http_request.h
parentea7dd1be36abc528f39e7c42725267d01774983b (diff)
[HTML5] Add function signatures to JS libraries.
Diffstat (limited to 'platform/javascript/http_request.h')
-rw-r--r--platform/javascript/http_request.h2
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);