1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00

[libdom] xhr.cpp

This commit is contained in:
Witold Filipczyk 2023-04-17 19:49:34 +02:00
parent 6cbbc877ed
commit 984f7c9fe7
4 changed files with 1794 additions and 2 deletions

View File

@ -2,6 +2,6 @@ top_builddir=../../..
include $(top_builddir)/Makefile.config
INCLUDES += $(SPIDERMONKEY_CFLAGS)
OBJS = localstorage.obj unibar.obj
OBJS = localstorage.obj unibar.obj xhr.obj
include $(top_srcdir)/Makefile.lib

View File

@ -1 +1 @@
srcs += files('localstorage.cpp', 'unibar.cpp')
srcs += files('localstorage.cpp', 'unibar.cpp', 'xhr.cpp')

File diff suppressed because it is too large Load Diff

View File

@ -60,6 +60,8 @@
#include <sstream>
#include <vector>
#ifndef CONFIG_LIBDOM
const unsigned short UNSENT = 0;
const unsigned short OPENED = 1;
const unsigned short HEADERS_RECEIVED = 2;
@ -1787,3 +1789,4 @@ xhr_set_property_withCredentials(JSContext *ctx, unsigned int argc, JS::Value *v
return true;
}
#endif