diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-12-07 15:34:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-07 15:34:33 +0100 |
commit | e20011b0da4af68ecb4b267e46c43e30004494b5 (patch) | |
tree | 5385cc395fc2f50f3a62aec6e16b34cb01f37760 /platform/javascript/http_request.h | |
parent | 44a88244dee7e8996824aa29507e917b22ffccca (diff) | |
parent | dd9503dc1937e1469b2a6f8e145e80acbf2c7cbb (diff) | |
download | redot-engine-e20011b0da4af68ecb4b267e46c43e30004494b5.tar.gz |
Merge pull request #44076 from Faless/js/4.x_gdnative
[HTML5] Optional GDNative Support
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); |