File tree 4 files changed +6
-2
lines changed
4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 7
7
<br ><hr ><br >
8
8
9
9
* Change log
10
+ - sync with QJS Version "2019-09-18"
11
+ - Dlls is update to QJS Version "2019-09-18"
10
12
- Sync with QJS Version "2019-09-01"
11
13
- DLLs not updated yet (will upload static libs for mac, linux and dynamic ones for windows ).
12
14
- Add Delphi Support
Original file line number Diff line number Diff line change 22
22
IN THE SOFTWARE.
23
23
}
24
24
25
- unit QuickJS; // sync with version - "2019-09-01 ".
25
+ unit QuickJS; // sync with version - "2019-09-18 ".
26
26
27
27
{ $IfDef FPC}
28
28
{ $MODE Delphi}
@@ -61,7 +61,8 @@ interface
61
61
{ ===============================================================================}
62
62
// QuickJS Constants
63
63
{ ===============================================================================}
64
-
64
+ const
65
+ QJS_VERSION = ' 2019-09-01' ;
65
66
const
66
67
{ all tags with a reference count are negative }
67
68
JS_TAG_FIRST = -10 ; { first negative tag }
@@ -559,6 +560,7 @@ JSCFunctionListEntry = record
559
560
function JS_AtomToValue (ctx: JSContext; atom:JSAtom):JSValue; cdecl; external { $IFDEF mswindows} QJSDLL{ $endif} ;
560
561
function JS_AtomToString (ctx: JSContext; atom:JSAtom):JSValue; cdecl; external { $IFDEF mswindows} QJSDLL{ $endif} ;
561
562
function JS_AtomToCString (ctx: JSContext; atom:JSAtom):{ $IFDEF FPC} PChar{ $Else} PAnsiChar{ $EndIf} ; cdecl; external { $IFDEF mswindows} QJSDLL{ $endif} ;
563
+ function JS_ValueToAtom (ctx: JSContext; val:JSValueConst) : JSAtom; cdecl; external { $IFDEF mswindows} QJSDLL{ $endif} ;
562
564
563
565
{ object class support }
564
566
You can’t perform that action at this time.
0 commit comments