aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/include/emscripten/emscripten.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/include/emscripten/emscripten.h b/system/include/emscripten/emscripten.h
index f87e4988..6b254ee6 100644
--- a/system/include/emscripten/emscripten.h
+++ b/system/include/emscripten/emscripten.h
@@ -212,8 +212,9 @@ void emscripten_async_wget(const char* url, const char* file, void (*onload)(con
void emscripten_async_wget_data(const char* url, void *arg, void (*onload)(void*, void*, int), void (*onerror)(void*));
/*
- * More feature-complete version of emscripten_async_wget.
- * Load file from url in asynchronous way.
+ * More feature-complete version of emscripten_async_wget. Note:
+ * this version is experimental.
+ *
* The requestype is 'GET' or 'POST',
* If is post request, param is the post parameter
* like key=value&key2=value2.