-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChakraCommon.pas
1500 lines (1360 loc) · 37.2 KB
/
ChakraCommon.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit ChakraCommon;
interface
type
bool = Boolean;
size_t = LongWord;
wchar_t = WideChar;
pwchar_t = PWideChar;
uint = LongWord;
int = Integer;
short = Word;
int64_t = Int64;
ChakraCookie = ^LongWord;
ChakraBytePtr = ^Byte;
JsErrorCode = (
JsNoError = 0,
JsErrorCategoryUsage = $10000,
JsErrorInvalidArgument,
JsErrorNullArgument,
JsErrorNoCurrentContext,
JsErrorInExceptionState,
JsErrorNotImplemented,
JsErrorWrongThread,
JsErrorRuntimeInUse,
JsErrorBadSerializedScript,
JsErrorInDisabledState,
JsErrorCannotDisableExecution,
JsErrorHeapEnumInProgress,
JsErrorArgumentNotObject,
JsErrorInProfileCallback,
JsErrorInThreadServiceCallback,
JsErrorCannotSerializeDebugScript,
JsErrorAlreadyDebuggingContext,
JsErrorAlreadyProfilingContext,
JsErrorIdleNotEnabled,
JsCannotSetProjectionEnqueueCallback,
JsErrorCannotStartProjection,
JsErrorInObjectBeforeCollectCallback,
JsErrorObjectNotInspectable,
JsErrorPropertyNotSymbol,
JsErrorPropertyNotString,
JsErrorInvalidContext,
JsInvalidModuleHostInfoKind,
JsErrorModuleParsed,
JsErrorModuleEvaluated,
JsErrorCategoryEngine = $20000,
JsErrorOutOfMemory,
JsErrorBadFPUState,
JsErrorCategoryScript = $30000,
JsErrorScriptException,
JsErrorScriptCompile,
JsErrorScriptTerminated,
JsErrorScriptEvalDisabled,
JsErrorCategoryFatal = $40000,
JsErrorFatal,
JsErrorWrongRuntime,
JsErrorCategoryDiagError = $50000,
JsErrorDiagAlreadyInDebugMode,
JsErrorDiagNotInDebugMode,
JsErrorDiagNotAtBreak,
JsErrorDiagInvalidHandle,
JsErrorDiagObjectNotFound,
JsErrorDiagUnableToPerformAction
);
JsRuntimeHandle = Pointer;
PJsRuntimeHandle = ^JsRuntimeHandle;
const
JS_INVALID_RUNTIME_HANDLE: JsRuntimeHandle = Pointer(0);
type
JsRef = Pointer;
const
JS_INVALID_REFERENCE: JsRef = Pointer(0);
type
JsContextRef = JsRef;
JsValueRef = JsRef;
PJsValueRef = ^JsValueRef;
JsSourceContext = ChakraCookie;
const
JS_SOURCE_CONTEXT_NONE: JsSourceContext = JsSourceContext(not LongWord(0));
type
JsPropertyIdRef = JsRef;
JsRuntimeAttributes = (
JsRuntimeAttributeNone = $00000000,
JsRuntimeAttributeDisableBackgroundWork = $00000001,
JsRuntimeAttributeAllowScriptInterrupt = $00000002,
JsRuntimeAttributeEnableIdleProcessing = $00000004,
JsRuntimeAttributeDisableNativeCodeGeneration = $00000008,
JsRuntimeAttributeDisableEval = $00000010,
JsRuntimeAttributeEnableExperimentalFeatures = $00000020,
JsRuntimeAttributeDispatchSetExceptionsToDebugger = $00000040
);
JsTypedArrayType = (
JsArrayTypeInt8,
JsArrayTypeUint8,
JsArrayTypeUint8Clamped,
JsArrayTypeInt16,
JsArrayTypeUint16,
JsArrayTypeInt32,
JsArrayTypeUint32,
JsArrayTypeFloat32,
JsArrayTypeFloat64
);
JsMemoryEventType = (
JsMemoryAllocate = 0,
JsMemoryFree = 1,
JsMemoryFailure = 2
);
JsParseScriptAttributes = (
JsParseScriptAttributeNone = $0,
JsParseScriptAttributeLibraryCode = $1
);
JsPropertyIdType = (
JsPropertyIdTypeString,
JsPropertyIdTypeSymbol
);
JsValueType = (
JsUndefined = 0,
JsNull = 1,
JsNumber = 2,
JsString = 3,
JsBoolean = 4,
JsObject = 5,
JsFunction = 6,
JsError = 7,
JsArray = 8,
JsSymbol = 9,
JsArrayBuffer = 10,
JsTypedArray = 11,
JsDataView = 12
);
const DLL_NAME = 'ChakraCore.dll';
type
{
typedef bool (CHAKRA_CALLBACK * JsMemoryAllocationCallback)(
_In_opt_ void *callbackState,
_In_ JsMemoryEventType allocationEvent,
_In_ size_t allocationSize
);
}
JsMemoryAllocationCallback = function(
callbackState: Pointer;
allocationEvent: JsMemoryEventType;
allocationSize: size_t
): bool; stdcall;
{
typedef void (CHAKRA_CALLBACK *JsBeforeCollectCallback)(
_In_opt_ void *callbackState
);
}
JsBeforeCollectCallback = procedure(
callbackState: Pointer
); stdcall;
{
typedef void (CHAKRA_CALLBACK *JsObjectBeforeCollectCallback)(
_In_ JsRef ref, _In_opt_ void *callbackState
);
}
JsObjectBeforeCollectCallback = procedure(
ref: JsRef;
callbackState: Pointer
); stdcall;
{
typedef void (CHAKRA_CALLBACK *JsBackgroundWorkItemCallback)(_In_opt_ void *callbackState)
}
JsBackgroundWorkItemCallback = procedure(
callbackState: Pointer
); stdcall;
{
typedef bool (CHAKRA_CALLBACK *JsThreadServiceCallback)(
_In_ JsBackgroundWorkItemCallback callback,
_In_opt_ void *callbackState
);
}
JsThreadServiceCallback = function(
callback: JsBackgroundWorkItemCallback;
callbackState: Pointer
): bool; stdcall;
{
typedef void (CHAKRA_CALLBACK * JsSerializedScriptUnloadCallback)(
_In_ JsSourceContext sourceContext
);
}
JsSerializedScriptUnloadCallback = procedure(
sourceContext: JsSourceContext
); stdcall;
{
typedef bool (CHAKRA_CALLBACK * JsSerializedScriptLoadUtf8SourceCallback)(
_In_ JsSourceContext sourceContext,
_Outptr_result_z_ const char** scriptBuffer
);
}
JsSerializedScriptLoadUtf8SourceCallback = function(
sourceContext: JsSourceContext;
var scriptBuffer: PAnsiChar
): bool; stdcall;
{
typedef void (CHAKRA_CALLBACK *JsFinalizeCallback)(_In_opt_ void *data);
}
JsFinalizeCallback = procedure(data: Pointer); stdcall;
{
typedef _Ret_maybenull_ JsValueRef(CHAKRA_CALLBACK * JsNativeFunction)(
_In_ JsValueRef callee,
_In_ bool isConstructCall,
_In_ JsValueRef *arguments,
_In_ unsigned short argumentCount,
_In_opt_ void *callbackState
);
}
JsNativeFunction = function(
callee: JsValueRef;
isConstructCall: bool;
arguments: PJsValueRef;
argumentCount: Word;
callbackState: Pointer
): JsValueRef; stdcall;
{
typedef void (CHAKRA_CALLBACK *JsPromiseContinuationCallback)(
_In_ JsValueRef task,
_In_opt_ void *callbackState
);
}
JsPromiseContinuationCallback = procedure(
task: JsValueRef;
callbackState: Pointer
); stdcall;
{
CHAKRA_API
JsCreateRuntime(
_In_ JsRuntimeAttributes attributes,
_In_opt_ JsThreadServiceCallback threadService,
_Out_ JsRuntimeHandle *runtime);
}
function JsCreateRuntime(
attributes: JsRuntimeAttributes;
threadService: JsThreadServiceCallback;
var runtime: JsRuntimeHandle
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsCollectGarbage(
_In_ JsRuntimeHandle runtime);
}
function JsCollectGarbage(
runtime: JsRuntimeHandle
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsDisposeRuntime(
_In_ JsRuntimeHandle runtime);
}
function JsDisposeRuntime(
runtime: JsRuntimeHandle
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetRuntimeMemoryUsage(
_In_ JsRuntimeHandle runtime,
_Out_ size_t *memoryUsage);
}
function JsGetRuntimeMemoryUsage(
runtime: JsRuntimeHandle;
var memoryUsage: size_t
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetRuntimeMemoryLimit(
_In_ JsRuntimeHandle runtime,
_Out_ size_t *memoryLimit);
}
function JsGetRuntimeMemoryLimit(
runtime: JsRuntimeHandle;
var memoryLimit: size_t
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetRuntimeMemoryLimit(
_In_ JsRuntimeHandle runtime,
_In_ size_t memoryLimit);
}
function JsSetRuntimeMemoryLimit(
runtime: JsRuntimeHandle;
var memoryLimit: size_t
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetRuntimeMemoryAllocationCallback(
_In_ JsRuntimeHandle runtime,
_In_opt_ void *callbackState,
_In_ JsMemoryAllocationCallback allocationCallback);
}
function JsSetRuntimeMemoryAllocationCallback(
runtime: JsRuntimeHandle;
callbackState: Pointer;
allocationCallback: JsMemoryAllocationCallback
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetRuntimeBeforeCollectCallback(
_In_ JsRuntimeHandle runtime,
_In_opt_ void *callbackState,
_In_ JsBeforeCollectCallback beforeCollectCallback);
}
function JsSetRuntimeBeforeCollectCallback(
runtime: JsRuntimeHandle;
callbackState: Pointer;
beforeCollectCallback: JsBeforeCollectCallback
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsAddRef(
_In_ JsRef ref,
_Out_opt_ unsigned int *count);
}
function JsAddRef(
ref: JsRef;
var count: LongWord
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsRelease(
_In_ JsRef ref,
_Out_opt_ unsigned int *count);
}
function JsRelease(
ref: JsRef;
var count: LongWord
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetObjectBeforeCollectCallback(
_In_ JsRef ref,
_In_opt_ void *callbackState,
_In_ JsObjectBeforeCollectCallback objectBeforeCollectCallback);
}
function JsSetObjectBeforeCollectCallback(
ref: JsRef;
callbackState: Pointer;
objectBeforeCollectCallback: JsObjectBeforeCollectCallback
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsCreateContext(
_In_ JsRuntimeHandle runtime,
_Out_ JsContextRef *newContext);
}
function JsCreateContext(
runtime: JsRuntimeHandle;
var newContext: JsContextRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetCurrentContext(
_Out_ JsContextRef *currentContext);
}
function JsGetCurrentContext(
var currentContext: JsContextRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetCurrentContext(
_In_ JsContextRef context);
}
function JsSetCurrentContext(
context: JsContextRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetContextOfObject(
_In_ JsValueRef object,
_Out_ JsContextRef *context);
}
function JsGetContextOfObject(
_object: JsValueRef;
var context: JsContextRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetContextData(
_In_ JsContextRef context,
_Out_ void **data);
}
function JsGetContextData(
context: JsContextRef;
var data: Pointer
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetContextData(
_In_ JsContextRef context,
_In_ void *data);
}
function JsSetContextData(
context: JsContextRef;
data: Pointer
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetRuntime(
_In_ JsContextRef context,
_Out_ JsRuntimeHandle *runtime);
}
function JsGetRuntime(
context: JsContextRef;
var runtime: JsRuntimeHandle
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsIdle(
_Out_opt_ unsigned int *nextIdleTick);
}
function JsIdle(
var nextIdleTick: LongWord
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsParseScriptUtf8(
_In_z_ const char *script,
_In_ JsSourceContext sourceContext,
_In_z_ const char *sourceUrl,
_Out_ JsValueRef *result);
}
function JsParseScriptUtf8(
const script: PAnsiChar;
sourceContext: JsSourceContext;
const sourceUrl: PAnsiChar;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsParseScriptWithAttributesUtf8(
_In_z_ const char *script,
_In_ JsSourceContext sourceContext,
_In_z_ const char *sourceUrl,
_In_ JsParseScriptAttributes parseAttributes,
_Out_ JsValueRef *result);
}
function JsParseScriptWithAttributesUtf8(
const script: PAnsiChar;
sourceContext: JsSourceContext;
const sourceUrl: PAnsiChar;
parseAttributes: JsParseScriptAttributes;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsRunScriptUtf8(
_In_z_ const char *script,
_In_ JsSourceContext sourceContext,
_In_z_ const char *sourceUrl,
_Out_ JsValueRef *result);
}
function JsRunScriptUtf8(
const script: PAnsiChar;
sourceContext: JsSourceContext;
const sourceUrl: PAnsiChar;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSerializeScriptUtf8(
_In_z_ const char *script,
_Out_writes_to_opt_(*bufferSize, *bufferSize) ChakraBytePtr buffer,
_Inout_ unsigned int *bufferSize);
}
function JsSerializeScriptUtf8(
const script: PAnsiChar;
buffer: ChakraBytePtr;
var bufferSize: LongWord
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsParseSerializedScriptUtf8(
_In_ JsSerializedScriptLoadUtf8SourceCallback scriptLoadCallback,
_In_ JsSerializedScriptUnloadCallback scriptUnloadCallback,
_In_ ChakraBytePtr buffer,
_In_ JsSourceContext sourceContext,
_In_z_ const char *sourceUrl,
_Out_ JsValueRef * result);
}
function JsParseSerializedScriptUtf8(
scriptLoadCallback: JsSerializedScriptLoadUtf8SourceCallback;
scriptUnloadCallback: JsSerializedScriptUnloadCallback;
buffer: ChakraBytePtr;
sourceContext: JsSourceContext;
const sourceUrl: PAnsiChar;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsRunSerializedScriptUtf8(
_In_ JsSerializedScriptLoadUtf8SourceCallback scriptLoadCallback,
_In_ JsSerializedScriptUnloadCallback scriptUnloadCallback,
_In_ ChakraBytePtr buffer,
_In_ JsSourceContext sourceContext,
_In_z_ const char *sourceUrl,
_Out_opt_ JsValueRef * result);
}
function JsRunSerializedScriptUtf8(
scriptLoadCallback: JsSerializedScriptLoadUtf8SourceCallback;
scriptUnloadCallback: JsSerializedScriptUnloadCallback;
buffer: ChakraBytePtr;
sourceContext: JsSourceContext;
const sourceUrl: PAnsiChar;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetPropertyIdFromNameUtf8(
_In_z_ const char *name,
_Out_ JsPropertyIdRef *propertyId);
}
function JsGetPropertyIdFromNameUtf8(
const name: PAnsiChar;
var propertyId: JsPropertyIdRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetPropertyNameFromIdUtf8Copy(
_In_ JsPropertyIdRef propertyId,
_Outptr_result_z_ char **name);
}
function JsGetPropertyNameFromIdUtf8Copy(
propertyId: JsPropertyIdRef;
var name: PAnsiChar
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsPointerToStringUtf8(
_In_reads_(stringLength) const char *stringValue,
_In_ size_t stringLength,
_Out_ JsValueRef *value);
}
function JsPointerToStringUtf8(
const stringValue: PAnsiChar;
stringLength: size_t;
var value: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsStringToPointerUtf8Copy(
_In_ JsValueRef value,
_Outptr_result_buffer_(*stringLength) char **stringValue,
_Out_ size_t *stringLength);
}
function JsStringToPointerUtf8Copy(
value: JsValueRef;
var stringValue: PANsiChar;
var stringLength: size_t
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetSymbolFromPropertyId(
_In_ JsPropertyIdRef propertyId,
_Out_ JsValueRef *symbol);
}
function JsGetSymbolFromPropertyId(
propertyId: JsPropertyIdRef;
var symbol: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetPropertyIdType(
_In_ JsPropertyIdRef propertyId,
_Out_ JsPropertyIdType* propertyIdType);
}
function JsGetPropertyIdType(
propertyId: JsPropertyIdRef;
var propertyIdType: JsPropertyIdType
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetPropertyIdFromSymbol(
_In_ JsValueRef symbol,
_Out_ JsPropertyIdRef *propertyId);
}
function JsGetPropertyIdFromSymbol(
symbol: JsValueRef;
var propertyId: JsPropertyIdRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsCreateSymbol(
_In_ JsValueRef description,
_Out_ JsValueRef *result);
}
function JsCreateSymbol(
description: JsValueRef;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetOwnPropertySymbols(
_In_ JsValueRef object,
_Out_ JsValueRef *propertySymbols);
}
function JsGetOwnPropertySymbols(
_object: JsValueRef;
var propertySymbols: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetUndefinedValue(
_Out_ JsValueRef *undefinedValue);
}
function JsGetUndefinedValue(
var undefinedValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetNullValue(
_Out_ JsValueRef *nullValue);
}
function JsGetNullValue(
var nullValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetTrueValue(
_Out_ JsValueRef *trueValue);
}
function JsGetTrueValue(
var trueValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetFalseValue(
_Out_ JsValueRef *falseValue);
}
function JsGetFalseValue(
var falseValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsBoolToBoolean(
_In_ bool value,
_Out_ JsValueRef *booleanValue);
}
function JsBoolToBoolean(
value: bool;
var booleanValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsBooleanToBool(
_In_ JsValueRef value,
_Out_ bool *boolValue);
}
function JsBooleanToBool(
value: JsValueRef;
var boolValue: bool
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsConvertValueToBoolean(
_In_ JsValueRef value,
_Out_ JsValueRef *booleanValue);
}
function JsConvertValueToBoolean(
value: JsValueRef;
var booleanValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetValueType(
_In_ JsValueRef value,
_Out_ JsValueType *type);
}
function JsGetValueType(
value: JsValueRef;
var _type: JsValueType
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsDoubleToNumber(
_In_ double doubleValue,
_Out_ JsValueRef *value);
}
function JsDoubleToNumber(
doubleValue: double;
var value: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsIntToNumber(
_In_ int intValue,
_Out_ JsValueRef *value);
}
function JsIntToNumber(
var intValue: int;
var value: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsNumberToDouble(
_In_ JsValueRef value,
_Out_ double *doubleValue);
}
function JsNumberToDouble(
value: JsValueRef;
var doubleValue: double
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsNumberToInt(
_In_ JsValueRef value,
_Out_ int *intValue);
}
function JsNumberToInt(
value: JsValueRef;
var intValue: int
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsConvertValueToNumber(
_In_ JsValueRef value,
_Out_ JsValueRef *numberValue);
}
function JsConvertValueToNumber(
value: JsValueRef;
var numberValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetStringLength(
_In_ JsValueRef stringValue,
_Out_ int *length);
}
function JsGetStringLength(
stringValue: JsValueRef;
var length: int
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsConvertValueToString(
_In_ JsValueRef value,
_Out_ JsValueRef *stringValue);
}
function JsConvertValueToString(
value: JsValueRef;
var stringValue: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetGlobalObject(
_Out_ JsValueRef *globalObject);
}
function JsGetGlobalObject(
var globalObject: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsCreateObject(
_Out_ JsValueRef *object);
}
function JsCreateObject(
var _object: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsCreateExternalObject(
_In_opt_ void *data,
_In_opt_ JsFinalizeCallback finalizeCallback,
_Out_ JsValueRef *object);
}
function JsCreateExternalObject(
data: Pointer;
finalizeCallback: JsFinalizeCallback;
var _object: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsConvertValueToObject(
_In_ JsValueRef value,
_Out_ JsValueRef *object);
}
function JsConvertValueToObject(
value: JsValueRef;
var _object: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetPrototype(
_In_ JsValueRef object,
_Out_ JsValueRef *prototypeObject);
}
function JsGetPrototype(
_object: JsValueRef;
var prototypeObject: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetPrototype(
_In_ JsValueRef object,
_In_ JsValueRef prototypeObject);
}
function JsSetPrototype(
_object: JsValueRef;
prototypeObject: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsInstanceOf(
_In_ JsValueRef object,
_In_ JsValueRef constructor,
_Out_ bool *result);
}
function JsInstanceOf(
var _object: JsValueRef;
_constructor: JsValueRef;
var result: bool
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetExtensionAllowed(
_In_ JsValueRef object,
_Out_ bool *value);
}
function JsGetExtensionAllowed(
_objec: JsValueRef;
var value: bool
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsPreventExtension(
_In_ JsValueRef object);
}
function JsPreventExtension(
_object: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetProperty(
_In_ JsValueRef object,
_In_ JsPropertyIdRef propertyId,
_Out_ JsValueRef *value);
}
function JsGetProperty(
_object: JsValueRef;
propertyId: JsPropertyIdRef;
var value: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetOwnPropertyDescriptor(
_In_ JsValueRef object,
_In_ JsPropertyIdRef propertyId,
_Out_ JsValueRef *propertyDescriptor);
}
function JsGetOwnPropertyDescriptor(
_object: JsValueRef;
propertyId: JsPropertyIdRef;
var propertyDescriptor: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsGetOwnPropertyNames(
_In_ JsValueRef object,
_Out_ JsValueRef *propertyNames);
}
function JsGetOwnPropertyNames(
_object: JsValueRef;
var propertyNames: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsSetProperty(
_In_ JsValueRef object,
_In_ JsPropertyIdRef propertyId,
_In_ JsValueRef value,
_In_ bool useStrictRules);
}
function JsSetProperty(
_object: JsValueRef;
propertyId: JsPropertyIdRef;
value: JsValueRef;
useStrictRules: bool
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsHasProperty(
_In_ JsValueRef object,
_In_ JsPropertyIdRef propertyId,
_Out_ bool *hasProperty);
}
function JsHasProperty(
_object: JsValueRef;
propertyId: JsPropertyIdRef;
var hasProperty: bool
): JsErrorCode; stdcall; external DLL_NAME;
{
CHAKRA_API
JsDeleteProperty(
_In_ JsValueRef object,
_In_ JsPropertyIdRef propertyId,
_In_ bool useStrictRules,
_Out_ JsValueRef *result);
}
function JsDeleteProperty(
_object: JsValueRef;
propertyId: JsPropertyIdRef;
useStrictRules: bool;
var result: JsValueRef
): JsErrorCode; stdcall; external DLL_NAME;