Skip to content

emterpreter.h: remove obsolete comments #9735

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions system/include/emscripten/emscripten.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,9 @@ int emscripten_async_wget2_data(const char* url, const char* requesttype, const

void emscripten_async_wget2_abort(int handle);

// wget "sync" (ASYNCIFY)
// wget "sync"

void emscripten_wget(const char* url, const char* file);

// wget data "sync" (EMTERPRETIFY_ASYNC)

void emscripten_wget_data(const char* url, void** pbuffer, int* pnum, int *perror);

// IDB
Expand All @@ -186,7 +183,7 @@ void emscripten_idb_async_delete(const char *db_name, const char *file_id, void*
typedef void (*em_idb_exists_func)(void*, int);
void emscripten_idb_async_exists(const char *db_name, const char *file_id, void* arg, em_idb_exists_func oncheck, em_arg_callback_func onerror);

// IDB "sync" (EMTERPRETIFY_ASYNC)
// IDB "sync"

void emscripten_idb_load(const char *db_name, const char *file_id, void** pbuffer, int* pnum, int *perror);
void emscripten_idb_store(const char *db_name, const char *file_id, void* buffer, int num, int *perror);
Expand Down