1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +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 9df3d06d1f
commit 8ebb52fad6
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 = NULL, const char *p_password = NULL);