Preliminary libcurl support

This commit is contained in:
Armando Rivera 2018-11-01 00:35:43 -04:00
parent a51787d899
commit 0aeb962a4e
2 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#define ENDFUNCTION }
#define DIM
#define AS
#define DEF
#define SUB void
#define ENDSUB }
#define BEGIN {
@ -70,6 +71,7 @@
#define INTEGER int
#define UINT unsigned int
#define VECTOR std::vector
#define ARRAY std::vector
#define MAP std::map
#define CHAR char
#define ENUM enum {

5
jade.h
View File

@ -1,3 +1,8 @@
#include "header.inc"
#include "runtime.inc"
#ifdef USE_CURL
#include "curl.inc"
#endif