1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

[HTML5] Add function signatures to JS libraries.

This commit is contained in:
Fabio Alessandrelli
2020-12-03 12:51:17 +01:00
parent ea7dd1be36
commit 1167ab96e9
10 changed files with 84 additions and 3 deletions

View File

@@ -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);