-
Notifications
You must be signed in to change notification settings - Fork 5
/
XorsBind.pbi
1044 lines (1042 loc) · 98.6 KB
/
XorsBind.pbi
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
; *=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*
; xScript's binding declarations.
; Converted in 2012 by Guevara-chan
; *=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-*
IncludeFile "xScript[decls].pbi"
xRegisterFunction("int xCreateLine3D(float, float, float, float, float, float, int, int, int, int, int)", xGetFunctionAddress("xCreateLine3D"))
xRegisterFunction("void xLine3DOrigin(int, float, float, float, int)", xGetFunctionAddress("xLine3DOrigin"))
xRegisterFunction("void xLine3DAddNode(int, float, float, float, int)", xGetFunctionAddress("xLine3DAddNode"))
xRegisterFunction("void xLine3DColor(int, int, int, int, int)", xGetFunctionAddress("xLine3DColor"))
xRegisterFunction("void xLine3DUseZBuffer(int, int)", xGetFunctionAddress("xLine3DUseZBuffer"))
xRegisterFunction("float xLine3DOriginX(int, int)", xGetFunctionAddress("xLine3DOriginX"))
xRegisterFunction("float xLine3DOriginY(int, int)", xGetFunctionAddress("xLine3DOriginY"))
xRegisterFunction("float xLine3DOriginZ(int, int)", xGetFunctionAddress("xLine3DOriginZ"))
xRegisterFunction("int xLine3DNodesCount(int)", xGetFunctionAddress("xLine3DNodesCount"))
xRegisterFunction("void xLine3DNodePosition(int, int, float, float, float, int)", xGetFunctionAddress("xLine3DNodePosition"))
xRegisterFunction("float xLine3DNodeX(int, int, int)", xGetFunctionAddress("xLine3DNodeX"))
xRegisterFunction("float xLine3DNodeY(int, int, int)", xGetFunctionAddress("xLine3DNodeY"))
xRegisterFunction("float xLine3DNodeZ(int, int, int)", xGetFunctionAddress("xLine3DNodeZ"))
xRegisterFunction("int xLine3DRed(int)", xGetFunctionAddress("xLine3DRed"))
xRegisterFunction("int xLine3DGreen(int)", xGetFunctionAddress("xLine3DGreen"))
xRegisterFunction("int xLine3DBlue(int)", xGetFunctionAddress("xLine3DBlue"))
xRegisterFunction("int xLine3DAlpha(int)", xGetFunctionAddress("xLine3DAlpha"))
xRegisterFunction("int xGetLine3DUseZBuffer(int)", xGetFunctionAddress("xGetLine3DUseZBuffer"))
xRegisterFunction("void xDeleteLine3DNode(int, int)", xGetFunctionAddress("xDeleteLine3DNode"))
xRegisterFunction("void xClearLine3D(int)", xGetFunctionAddress("xClearLine3D"))
xRegisterFunction("int xLoadBrush(charsArray, int, float, float)", xGetFunctionAddress("xLoadBrush"))
xRegisterFunction("int xCreateBrush(float, float, float)", xGetFunctionAddress("xCreateBrush"))
xRegisterFunction("void xFreeBrush(int)", xGetFunctionAddress("xFreeBrush"))
xRegisterFunction("int xGetBrushTexture(int, int)", xGetFunctionAddress("xGetBrushTexture"))
xRegisterFunction("void xBrushColor(int, int, int, int)", xGetFunctionAddress("xBrushColor"))
xRegisterFunction("void xBrushAlpha(int, float)", xGetFunctionAddress("xBrushAlpha"))
xRegisterFunction("void xBrushShininess(int, float)", xGetFunctionAddress("xBrushShininess"))
xRegisterFunction("void xBrushBlend(int, int)", xGetFunctionAddress("xBrushBlend"))
xRegisterFunction("void xBrushFX(int, int)", xGetFunctionAddress("xBrushFX"))
xRegisterFunction("void xBrushTexture(int, int, int, int)", xGetFunctionAddress("xBrushTexture"))
xRegisterFunction("charsArray xGetBrushName(int)", xGetFunctionAddress("xGetBrushName"))
xRegisterFunction("void xBrushName(int, charsArray)", xGetFunctionAddress("xBrushName"))
xRegisterFunction("float xGetBrushAlpha(int)", xGetFunctionAddress("xGetBrushAlpha"))
xRegisterFunction("int xGetBrushBlend(int)", xGetFunctionAddress("xGetBrushBlend"))
xRegisterFunction("int xGetBrushRed(int)", xGetFunctionAddress("xGetBrushRed"))
xRegisterFunction("int xGetBrushGreen(int)", xGetFunctionAddress("xGetBrushGreen"))
xRegisterFunction("int xGetBrushBlue(int)", xGetFunctionAddress("xGetBrushBlue"))
xRegisterFunction("int xGetBrushFX(int)", xGetFunctionAddress("xGetBrushFX"))
xRegisterFunction("float xGetBrushShininess(int)", xGetFunctionAddress("xGetBrushShininess"))
xRegisterFunction("void xCameraFogMode(int, int)", xGetFunctionAddress("xCameraFogMode"))
xRegisterFunction("void xCameraFogColor(int, int, int, int)", xGetFunctionAddress("xCameraFogColor"))
xRegisterFunction("void xCameraFogRange(int, float, float)", xGetFunctionAddress("xCameraFogRange"))
xRegisterFunction("void xCameraClsColor(int, int, int, int, int)", xGetFunctionAddress("xCameraClsColor"))
xRegisterFunction("void xCameraProjMode(int, int)", xGetFunctionAddress("xCameraProjMode"))
xRegisterFunction("void xCameraClsMode(int, int, int)", xGetFunctionAddress("xCameraClsMode"))
xRegisterFunction("int xSphereInFrustum(int, float, float, float, float)", xGetFunctionAddress("xSphereInFrustum"))
xRegisterFunction("void xCameraClipPlane(int, int, int, float, float, float, float)", xGetFunctionAddress("xCameraClipPlane"))
xRegisterFunction("void xCameraRange(int, float, float)", xGetFunctionAddress("xCameraRange"))
xRegisterFunction("void xCameraViewport(int, int, int, int, int)", xGetFunctionAddress("xCameraViewport"))
xRegisterFunction("void xCameraCropViewport(int, int, int, int, int)", xGetFunctionAddress("xCameraCropViewport"))
xRegisterFunction("int xCreateCamera(int)", xGetFunctionAddress("xCreateCamera"))
xRegisterFunction("void xCameraProject(int, float, float, float)", xGetFunctionAddress("xCameraProject"))
xRegisterFunction("void xCameraProject2D(int, int, int, float)", xGetFunctionAddress("xCameraProject2D"))
xRegisterFunction("float xProjectedX()", xGetFunctionAddress("xProjectedX"))
xRegisterFunction("float xProjectedY()", xGetFunctionAddress("xProjectedY"))
xRegisterFunction("float xProjectedZ()", xGetFunctionAddress("xProjectedZ"))
xRegisterFunction("int xGetViewMatrix(int)", xGetFunctionAddress("xGetViewMatrix"))
xRegisterFunction("int xGetProjectionMatrix(int)", xGetFunctionAddress("xGetProjectionMatrix"))
xRegisterFunction("void xCameraZoom(int, float)", xGetFunctionAddress("xCameraZoom"))
xRegisterFunction("int xGetViewProjMatrix(int)", xGetFunctionAddress("xGetViewProjMatrix"))
xRegisterFunction("void xCollisions(int, int, int, int)", xGetFunctionAddress("xCollisions"))
xRegisterFunction("void xClearCollisions()", xGetFunctionAddress("xClearCollisions"))
xRegisterFunction("void xResetEntity(int)", xGetFunctionAddress("xResetEntity"))
xRegisterFunction("void xEntityRadius(int, float, float)", xGetFunctionAddress("xEntityRadius"))
xRegisterFunction("void xEntityBox(int, float, float, float, float, float, float)", xGetFunctionAddress("xEntityBox"))
xRegisterFunction("void xEntityType(int, int, int)", xGetFunctionAddress("xEntityType"))
xRegisterFunction("int xEntityCollided(int, int)", xGetFunctionAddress("xEntityCollided"))
xRegisterFunction("int xCountCollisions(int)", xGetFunctionAddress("xCountCollisions"))
xRegisterFunction("float xCollisionX(int, int)", xGetFunctionAddress("xCollisionX"))
xRegisterFunction("float xCollisionY(int, int)", xGetFunctionAddress("xCollisionY"))
xRegisterFunction("float xCollisionZ(int, int)", xGetFunctionAddress("xCollisionZ"))
xRegisterFunction("float xCollisionNX(int, int)", xGetFunctionAddress("xCollisionNX"))
xRegisterFunction("float xCollisionNY(int, int)", xGetFunctionAddress("xCollisionNY"))
xRegisterFunction("float xCollisionNZ(int, int)", xGetFunctionAddress("xCollisionNZ"))
xRegisterFunction("float xCollisionTime(int, int)", xGetFunctionAddress("xCollisionTime"))
xRegisterFunction("int xCollisionEntity(int, int)", xGetFunctionAddress("xCollisionEntity"))
xRegisterFunction("int xCollisionSurface(int, int)", xGetFunctionAddress("xCollisionSurface"))
xRegisterFunction("int xCollisionTriangle(int, int)", xGetFunctionAddress("xCollisionTriangle"))
xRegisterFunction("int xGetEntityType(int)", xGetFunctionAddress("xGetEntityType"))
xRegisterFunction("void xRenderPostEffect(int)", xGetFunctionAddress("xRenderPostEffect"))
xRegisterFunction("int xCreatePostEffectPoly(int, int)", xGetFunctionAddress("xCreatePostEffectPoly"))
xRegisterFunction("int xGetFunctionAddress(charsArray)", xGetFunctionAddress("xGetFunctionAddress"))
xRegisterFunction("int xLoadFXFile(charsArray)", xGetFunctionAddress("xLoadFXFile"))
xRegisterFunction("void xFreeEffect(int)", xGetFunctionAddress("xFreeEffect"))
xRegisterFunction("void xSetEntityEffect(int, int, int)", xGetFunctionAddress("xSetEntityEffect"))
xRegisterFunction("void xSetSurfaceEffect(int, int, int)", xGetFunctionAddress("xSetSurfaceEffect"))
xRegisterFunction("void xSetBonesArrayName(int, charsArray, int)", xGetFunctionAddress("xSetBonesArrayName"))
xRegisterFunction("void xSurfaceBonesArrayName(int, charsArray, int)", xGetFunctionAddress("xSurfaceBonesArrayName"))
xRegisterFunction("void xSetEffectInt(int, charsArray, int, int)", xGetFunctionAddress("xSetEffectInt"))
xRegisterFunction("void xSurfaceEffectInt(int, charsArray, int, int)", xGetFunctionAddress("xSurfaceEffectInt"))
xRegisterFunction("void xSetEffectFloat(int, charsArray, float, int)", xGetFunctionAddress("xSetEffectFloat"))
xRegisterFunction("void xSurfaceEffectFloat(int, charsArray, float, int)", xGetFunctionAddress("xSurfaceEffectFloat"))
xRegisterFunction("void xSetEffectBool(int, charsArray, int, int)", xGetFunctionAddress("xSetEffectBool"))
xRegisterFunction("void xSurfaceEffectBool(int, charsArray, int, int)", xGetFunctionAddress("xSurfaceEffectBool"))
xRegisterFunction("void xSetEffectVector(int, charsArray, float, float, float, float, int)", xGetFunctionAddress("xSetEffectVector"))
xRegisterFunction("void xSurfaceEffectVector(int, charsArray, float, float, float, float, int)", xGetFunctionAddress("xSurfaceEffectVector"))
xRegisterFunction("void xSetEffectVectorArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSetEffectVectorArray"))
xRegisterFunction("void xSurfaceEffectVectorArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSurfaceEffectVectorArray"))
xRegisterFunction("void xSurfaceEffectMatrixArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSurfaceEffectMatrixArray"))
xRegisterFunction("void xSurfaceEffectFloatArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSurfaceEffectFloatArray"))
xRegisterFunction("void xSurfaceEffectIntArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSurfaceEffectIntArray"))
xRegisterFunction("void xSetEffectMatrixArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSetEffectMatrixArray"))
xRegisterFunction("void xSetEffectFloatArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSetEffectFloatArray"))
xRegisterFunction("void xSetEffectIntArray(int, charsArray, int, int, int)", xGetFunctionAddress("xSetEffectIntArray"))
xRegisterFunction("int xCreateBufferVectors(int)", xGetFunctionAddress("xCreateBufferVectors"))
xRegisterFunction("void xBufferVectorsSetElement(int, int, float, float, float, float)", xGetFunctionAddress("xBufferVectorsSetElement"))
xRegisterFunction("int xCreateBufferMatrix(int)", xGetFunctionAddress("xCreateBufferMatrix"))
xRegisterFunction("void xBufferMatrixSetElement(int, int, int)", xGetFunctionAddress("xBufferMatrixSetElement"))
xRegisterFunction("int xBufferMatrixGetElement(int, int)", xGetFunctionAddress("xBufferMatrixGetElement"))
xRegisterFunction("int xCreateBufferFloats(int)", xGetFunctionAddress("xCreateBufferFloats"))
xRegisterFunction("void xBufferFloatsSetElement(int, int, float)", xGetFunctionAddress("xBufferFloatsSetElement"))
xRegisterFunction("float xBufferFloatsGetElement(int, int)", xGetFunctionAddress("xBufferFloatsGetElement"))
xRegisterFunction("void xBufferDelete(int)", xGetFunctionAddress("xBufferDelete"))
xRegisterFunction("void xSetEffectMatrixWithElements(int, charsArray, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, int)", xGetFunctionAddress("xSetEffectMatrixWithElements"))
xRegisterFunction("void xSetEffectMatrix(int, charsArray, int, int)", xGetFunctionAddress("xSetEffectMatrix"))
xRegisterFunction("void xSurfaceEffectMatrix(int, charsArray, int, int)", xGetFunctionAddress("xSurfaceEffectMatrix"))
xRegisterFunction("void xSurfaceEffectMatrixWithElements(int, charsArray, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, int)", xGetFunctionAddress("xSurfaceEffectMatrixWithElements"))
xRegisterFunction("void xSetEffectEntityTexture(int, charsArray, int, int)", xGetFunctionAddress("xSetEffectEntityTexture"))
xRegisterFunction("void xSetEffectTexture(int, charsArray, int, int, int, int)", xGetFunctionAddress("xSetEffectTexture"))
xRegisterFunction("void xSurfaceEffectTexture(int, charsArray, int, int, int)", xGetFunctionAddress("xSurfaceEffectTexture"))
xRegisterFunction("void xSurfaceEffectMatrixSemantic(int, charsArray, int, int)", xGetFunctionAddress("xSurfaceEffectMatrixSemantic"))
xRegisterFunction("void xSetEffectMatrixSemantic(int, charsArray, int, int)", xGetFunctionAddress("xSetEffectMatrixSemantic"))
xRegisterFunction("void xDeleteSurfaceConstant(int, charsArray, int)", xGetFunctionAddress("xDeleteSurfaceConstant"))
xRegisterFunction("void xDeleteEffectConstant(int, charsArray, int)", xGetFunctionAddress("xDeleteEffectConstant"))
xRegisterFunction("void xClearSurfaceConstants(int, int)", xGetFunctionAddress("xClearSurfaceConstants"))
xRegisterFunction("void xClearEffectConstants(int, int)", xGetFunctionAddress("xClearEffectConstants"))
xRegisterFunction("void xSetEffectTechnique(int, charsArray, int)", xGetFunctionAddress("xSetEffectTechnique"))
xRegisterFunction("void xSurfaceTechnique(int, charsArray, int)", xGetFunctionAddress("xSurfaceTechnique"))
xRegisterFunction("int xValidateEffectTechnique(int, charsArray)", xGetFunctionAddress("xValidateEffectTechnique"))
xRegisterFunction("void xSetEntityShaderLayer(int, int)", xGetFunctionAddress("xSetEntityShaderLayer"))
xRegisterFunction("int xGetEntityShaderLayer(int)", xGetFunctionAddress("xGetEntityShaderLayer"))
xRegisterFunction("void xSetSurfaceShaderLayer(int, int)", xGetFunctionAddress("xSetSurfaceShaderLayer"))
xRegisterFunction("int xGetSurfaceShaderLayer(int)", xGetFunctionAddress("xGetSurfaceShaderLayer"))
xRegisterFunction("void xSetFXInt(int, charsArray, int)", xGetFunctionAddress("xSetFXInt"))
xRegisterFunction("void xSetFXFloat(int, charsArray, float)", xGetFunctionAddress("xSetFXFloat"))
xRegisterFunction("void xSetFXBool(int, charsArray, int)", xGetFunctionAddress("xSetFXBool"))
xRegisterFunction("void xSetFXVector(int, charsArray, float, float, float, float)", xGetFunctionAddress("xSetFXVector"))
xRegisterFunction("void xSetFXVectorArray(int, charsArray, int, int)", xGetFunctionAddress("xSetFXVectorArray"))
xRegisterFunction("void xSetFXMatrixArray(int, charsArray, int, int)", xGetFunctionAddress("xSetFXMatrixArray"))
xRegisterFunction("void xSetFXFloatArray(int, charsArray, int, int)", xGetFunctionAddress("xSetFXFloatArray"))
xRegisterFunction("void xSetFXIntArray(int, charsArray, int, int)", xGetFunctionAddress("xSetFXIntArray"))
xRegisterFunction("void xSetFXEntityMatrix(int, charsArray, int)", xGetFunctionAddress("xSetFXEntityMatrix"))
xRegisterFunction("void xSetFXTexture(int, charsArray, int, int)", xGetFunctionAddress("xSetFXTexture"))
xRegisterFunction("void xSetFXMatrixSemantic(int, charsArray, int)", xGetFunctionAddress("xSetFXMatrixSemantic"))
xRegisterFunction("void xDeleteFXConstant(int, charsArray)", xGetFunctionAddress("xDeleteFXConstant"))
xRegisterFunction("void xClearFXConstants(int)", xGetFunctionAddress("xClearFXConstants"))
xRegisterFunction("void xSetFXTechnique(int, charsArray)", xGetFunctionAddress("xSetFXTechnique"))
xRegisterFunction("int xCreateEmitter(int, int)", xGetFunctionAddress("xCreateEmitter"))
xRegisterFunction("void xEmitterEnable(int, int)", xGetFunctionAddress("xEmitterEnable"))
xRegisterFunction("int xEmitterEnabled(int)", xGetFunctionAddress("xEmitterEnabled"))
xRegisterFunction("int xEmitterGetPSystem(int)", xGetFunctionAddress("xEmitterGetPSystem"))
xRegisterFunction("int xEmitterAddParticle(int)", xGetFunctionAddress("xEmitterAddParticle"))
xRegisterFunction("void xEmitterFreeParticle(int, int)", xGetFunctionAddress("xEmitterFreeParticle"))
xRegisterFunction("int xEmitterValidateParticle(int, int)", xGetFunctionAddress("xEmitterValidateParticle"))
xRegisterFunction("int xEmitterCountParticles(int)", xGetFunctionAddress("xEmitterCountParticles"))
xRegisterFunction("int xEmitterGetParticle(int, int)", xGetFunctionAddress("xEmitterGetParticle"))
xRegisterFunction("int xEmitterAlive(int)", xGetFunctionAddress("xEmitterAlive"))
xRegisterFunction("int xExtractAnimSeq(int, int, int, int)", xGetFunctionAddress("xExtractAnimSeq"))
xRegisterFunction("int xLoadAnimSeq(int, charsArray)", xGetFunctionAddress("xLoadAnimSeq"))
xRegisterFunction("void xSetAnimSpeed(int, float, charsArray)", xGetFunctionAddress("xSetAnimSpeed"))
xRegisterFunction("float xAnimSpeed(int, charsArray)", xGetFunctionAddress("xAnimSpeed"))
xRegisterFunction("int xAnimating(int, charsArray)", xGetFunctionAddress("xAnimating"))
xRegisterFunction("float xAnimTime(int, charsArray)", xGetFunctionAddress("xAnimTime"))
xRegisterFunction("void xAnimate(int, int, float, int, float, charsArray)", xGetFunctionAddress("xAnimate"))
xRegisterFunction("int xAnimSeq(int, charsArray)", xGetFunctionAddress("xAnimSeq"))
xRegisterFunction("float xAnimLength(int, charsArray)", xGetFunctionAddress("xAnimLength"))
xRegisterFunction("void xSetAnimTime(int, float, int, charsArray)", xGetFunctionAddress("xSetAnimTime"))
xRegisterFunction("void xSetAnimFrame(int, float, int, charsArray)", xGetFunctionAddress("xSetAnimFrame"))
xRegisterFunction("void xEntityAutoFade(int, float, float)", xGetFunctionAddress("xEntityAutoFade"))
xRegisterFunction("void xEntityOrder(int, int)", xGetFunctionAddress("xEntityOrder"))
xRegisterFunction("void xFreeEntity(int)", xGetFunctionAddress("xFreeEntity"))
xRegisterFunction("int xCopyEntity(int, int, int)", xGetFunctionAddress("xCopyEntity"))
xRegisterFunction("void xPaintEntity(int, int)", xGetFunctionAddress("xPaintEntity"))
xRegisterFunction("void xEntityShininess(int, float)", xGetFunctionAddress("xEntityShininess"))
xRegisterFunction("void xEntityPickMode(int, int, int, int)", xGetFunctionAddress("xEntityPickMode"))
xRegisterFunction("void xEntityTexture(int, int, int, int, int)", xGetFunctionAddress("xEntityTexture"))
xRegisterFunction("void xEntityFX(int, int)", xGetFunctionAddress("xEntityFX"))
xRegisterFunction("int xGetParent(int)", xGetFunctionAddress("xGetParent"))
xRegisterFunction("void xSetFrustumSphere(int, float, float, float, float)", xGetFunctionAddress("xSetFrustumSphere"))
xRegisterFunction("void xCalculateFrustumVolume(int)", xGetFunctionAddress("xCalculateFrustumVolume"))
xRegisterFunction("void xEntityParent(int, int, int)", xGetFunctionAddress("xEntityParent"))
xRegisterFunction("void xShowEntity(int)", xGetFunctionAddress("xShowEntity"))
xRegisterFunction("void xHideEntity(int)", xGetFunctionAddress("xHideEntity"))
xRegisterFunction("void xNameEntity(int, charsArray)", xGetFunctionAddress("xNameEntity"))
xRegisterFunction("void xSetEntityQuaternion(int, int)", xGetFunctionAddress("xSetEntityQuaternion"))
xRegisterFunction("void xSetEntityMatrix(int, int)", xGetFunctionAddress("xSetEntityMatrix"))
xRegisterFunction("void xEntityAlpha(int, float)", xGetFunctionAddress("xEntityAlpha"))
xRegisterFunction("void xEntityColor(int, int, int, int)", xGetFunctionAddress("xEntityColor"))
xRegisterFunction("void xEntitySpecularColor(int, int, int, int)", xGetFunctionAddress("xEntitySpecularColor"))
xRegisterFunction("void xEntityAmbientColor(int, int, int, int)", xGetFunctionAddress("xEntityAmbientColor"))
xRegisterFunction("void xEntityEmissiveColor(int, int, int, int)", xGetFunctionAddress("xEntityEmissiveColor"))
xRegisterFunction("void xEntityBlend(int, int)", xGetFunctionAddress("xEntityBlend"))
xRegisterFunction("void xEntityAlphaRef(int, int)", xGetFunctionAddress("xEntityAlphaRef"))
xRegisterFunction("void xEntityAlphaFunc(int, int)", xGetFunctionAddress("xEntityAlphaFunc"))
xRegisterFunction("int xCreateInstance(int, int)", xGetFunctionAddress("xCreateInstance"))
xRegisterFunction("void xFreezeInstances(int, int)", xGetFunctionAddress("xFreezeInstances"))
xRegisterFunction("int xInstancingAvaliable()", xGetFunctionAddress("xInstancingAvaliable"))
xRegisterFunction("int xGetEntityWorld(int)", xGetFunctionAddress("xGetEntityWorld"))
xRegisterFunction("void xSetEntityWorld(int, int)", xGetFunctionAddress("xSetEntityWorld"))
xRegisterFunction("void xScaleEntity(int, float, float, float, int)", xGetFunctionAddress("xScaleEntity"))
xRegisterFunction("void xPositionEntity(int, float, float, float, int)", xGetFunctionAddress("xPositionEntity"))
xRegisterFunction("void xMoveEntity(int, float, float, float, int)", xGetFunctionAddress("xMoveEntity"))
xRegisterFunction("void xTranslateEntity(int, float, float, float, int)", xGetFunctionAddress("xTranslateEntity"))
xRegisterFunction("void xRotateEntity(int, float, float, float, int)", xGetFunctionAddress("xRotateEntity"))
xRegisterFunction("void xTurnEntity(int, float, float, float, int)", xGetFunctionAddress("xTurnEntity"))
xRegisterFunction("void xPointEntity(int, int, float)", xGetFunctionAddress("xPointEntity"))
xRegisterFunction("void xAlignToVector(int, float, float, float, int, float)", xGetFunctionAddress("xAlignToVector"))
xRegisterFunction("float xEntityDistance(int, int)", xGetFunctionAddress("xEntityDistance"))
xRegisterFunction("float xGetMatElement(int, int, int)", xGetFunctionAddress("xGetMatElement"))
xRegisterFunction("charsArray xEntityClass(int)", xGetFunctionAddress("xEntityClass"))
xRegisterFunction("int xGetEntityBrush(int)", xGetFunctionAddress("xGetEntityBrush"))
xRegisterFunction("float xEntityX(int, int)", xGetFunctionAddress("xEntityX"))
xRegisterFunction("float xEntityY(int, int)", xGetFunctionAddress("xEntityY"))
xRegisterFunction("float xEntityZ(int, int)", xGetFunctionAddress("xEntityZ"))
xRegisterFunction("int xEntityVisible(int, int)", xGetFunctionAddress("xEntityVisible"))
xRegisterFunction("float xEntityScaleX(int)", xGetFunctionAddress("xEntityScaleX"))
xRegisterFunction("float xEntityScaleY(int)", xGetFunctionAddress("xEntityScaleY"))
xRegisterFunction("float xEntityScaleZ(int)", xGetFunctionAddress("xEntityScaleZ"))
xRegisterFunction("float xEntityRoll(int, int)", xGetFunctionAddress("xEntityRoll"))
xRegisterFunction("float xEntityYaw(int, int)", xGetFunctionAddress("xEntityYaw"))
xRegisterFunction("float xEntityPitch(int, int)", xGetFunctionAddress("xEntityPitch"))
xRegisterFunction("charsArray xEntityName(int)", xGetFunctionAddress("xEntityName"))
xRegisterFunction("int xCountChildren(int)", xGetFunctionAddress("xCountChildren"))
xRegisterFunction("int xGetChild(int, int)", xGetFunctionAddress("xGetChild"))
xRegisterFunction("int xEntityInView(int, int)", xGetFunctionAddress("xEntityInView"))
xRegisterFunction("int xFindChild(int, charsArray)", xGetFunctionAddress("xFindChild"))
xRegisterFunction("int xGetEntityMatrix(int)", xGetFunctionAddress("xGetEntityMatrix"))
xRegisterFunction("float xGetEntityAlpha(int)", xGetFunctionAddress("xGetEntityAlpha"))
xRegisterFunction("int xGetAlphaRef(int)", xGetFunctionAddress("xGetAlphaRef"))
xRegisterFunction("int xGetAlphaFunc(int)", xGetFunctionAddress("xGetAlphaFunc"))
xRegisterFunction("int xEntityRed(int)", xGetFunctionAddress("xEntityRed"))
xRegisterFunction("int xEntityGreen(int)", xGetFunctionAddress("xEntityGreen"))
xRegisterFunction("int xEntityBlue(int)", xGetFunctionAddress("xEntityBlue"))
xRegisterFunction("float xGetEntityShininess(int)", xGetFunctionAddress("xGetEntityShininess"))
xRegisterFunction("int xGetEntityBlend(int)", xGetFunctionAddress("xGetEntityBlend"))
xRegisterFunction("int xGetEntityFX(int)", xGetFunctionAddress("xGetEntityFX"))
xRegisterFunction("int xEntityHidden(int)", xGetFunctionAddress("xEntityHidden"))
xRegisterFunction("int xEntitiesBBIntersect(int, int)", xGetFunctionAddress("xEntitiesBBIntersect"))
xRegisterFunction("int xMountPackFile(charsArray, charsArray, charsArray)", xGetFunctionAddress("xMountPackFile"))
xRegisterFunction("void xUnmountPackFile(int)", xGetFunctionAddress("xUnmountPackFile"))
xRegisterFunction("int xOpenFile(charsArray)", xGetFunctionAddress("xOpenFile"))
xRegisterFunction("int xReadFile(charsArray)", xGetFunctionAddress("xReadFile"))
xRegisterFunction("int xWriteFile(charsArray)", xGetFunctionAddress("xWriteFile"))
xRegisterFunction("void xCloseFile(int)", xGetFunctionAddress("xCloseFile"))
xRegisterFunction("int xFilePos(int)", xGetFunctionAddress("xFilePos"))
xRegisterFunction("void xSeekFile(int, int)", xGetFunctionAddress("xSeekFile"))
xRegisterFunction("int xFileType(charsArray)", xGetFunctionAddress("xFileType"))
xRegisterFunction("int xFileSize(charsArray)", xGetFunctionAddress("xFileSize"))
xRegisterFunction("int xFileCreationTime(charsArray)", xGetFunctionAddress("xFileCreationTime"))
xRegisterFunction("charsArray xFileCreationTimeStr(charsArray)", xGetFunctionAddress("xFileCreationTimeStr"))
xRegisterFunction("int xFileModificationTime(charsArray)", xGetFunctionAddress("xFileModificationTime"))
xRegisterFunction("charsArray xFileModificationTimeStr(charsArray)", xGetFunctionAddress("xFileModificationTimeStr"))
xRegisterFunction("int xReadDir(charsArray)", xGetFunctionAddress("xReadDir"))
xRegisterFunction("void xCloseDir(int)", xGetFunctionAddress("xCloseDir"))
xRegisterFunction("charsArray xNextFile(int)", xGetFunctionAddress("xNextFile"))
xRegisterFunction("charsArray xCurrentDir()", xGetFunctionAddress("xCurrentDir"))
xRegisterFunction("void xChangeDir(charsArray)", xGetFunctionAddress("xChangeDir"))
xRegisterFunction("int xCreateDir(charsArray)", xGetFunctionAddress("xCreateDir"))
xRegisterFunction("int xDeleteDir(charsArray)", xGetFunctionAddress("xDeleteDir"))
xRegisterFunction("int xCopyFile(charsArray, charsArray)", xGetFunctionAddress("xCopyFile"))
xRegisterFunction("int xDeleteFile(charsArray)", xGetFunctionAddress("xDeleteFile"))
xRegisterFunction("int xEof(int)", xGetFunctionAddress("xEof"))
xRegisterFunction("int xReadByte(int)", xGetFunctionAddress("xReadByte"))
xRegisterFunction("int xReadShort(int)", xGetFunctionAddress("xReadShort"))
xRegisterFunction("int xReadInt(int)", xGetFunctionAddress("xReadInt"))
xRegisterFunction("float xReadFloat(int)", xGetFunctionAddress("xReadFloat"))
xRegisterFunction("charsArray xReadString(int)", xGetFunctionAddress("xReadString"))
xRegisterFunction("charsArray xReadLine(int, int)", xGetFunctionAddress("xReadLine"))
xRegisterFunction("void xWriteByte(int, int)", xGetFunctionAddress("xWriteByte"))
xRegisterFunction("void xWriteShort(int, int)", xGetFunctionAddress("xWriteShort"))
xRegisterFunction("void xWriteInt(int, int)", xGetFunctionAddress("xWriteInt"))
xRegisterFunction("void xWriteFloat(int, float)", xGetFunctionAddress("xWriteFloat"))
xRegisterFunction("void xWriteString(int, charsArray)", xGetFunctionAddress("xWriteString"))
xRegisterFunction("void xWriteLine(int, charsArray, int)", xGetFunctionAddress("xWriteLine"))
xRegisterFunction("int xLoadFont(charsArray, int, int, int, int, charsArray)", xGetFunctionAddress("xLoadFont"))
xRegisterFunction("void xText(float, float, charsArray, int, int)", xGetFunctionAddress("xText"))
xRegisterFunction("void xSetFont(int)", xGetFunctionAddress("xSetFont"))
xRegisterFunction("void xFreeFont(int)", xGetFunctionAddress("xFreeFont"))
xRegisterFunction("int xFontWidth()", xGetFunctionAddress("xFontWidth"))
xRegisterFunction("int xFontHeight()", xGetFunctionAddress("xFontHeight"))
xRegisterFunction("int xStringWidth(charsArray)", xGetFunctionAddress("xStringWidth"))
xRegisterFunction("int xStringHeight(charsArray)", xGetFunctionAddress("xStringHeight"))
xRegisterFunction("int xWinMessage(charsArray)", xGetFunctionAddress("xWinMessage"))
xRegisterFunction("int xGetMaxPixelShaderVersion()", xGetFunctionAddress("xGetMaxPixelShaderVersion"))
xRegisterFunction("void xLine(int, int, int, int)", xGetFunctionAddress("xLine"))
xRegisterFunction("void xRect(int, int, int, int, int)", xGetFunctionAddress("xRect"))
xRegisterFunction("int xRectsOverlap(int, int, int, int, int, int, int, int)", xGetFunctionAddress("xRectsOverlap"))
xRegisterFunction("void xViewport(int, int, int, int)", xGetFunctionAddress("xViewport"))
xRegisterFunction("void xOval(int, int, int, int, int)", xGetFunctionAddress("xOval"))
xRegisterFunction("void xOrigin(int, int)", xGetFunctionAddress("xOrigin"))
xRegisterFunction("int xGetMaxVertexShaderVersion()", xGetFunctionAddress("xGetMaxVertexShaderVersion"))
xRegisterFunction("int xGetMaxAntiAlias()", xGetFunctionAddress("xGetMaxAntiAlias"))
xRegisterFunction("int xGetMaxTextureFiltering()", xGetFunctionAddress("xGetMaxTextureFiltering"))
xRegisterFunction("void xSetAntiAliasType(int)", xGetFunctionAddress("xSetAntiAliasType"))
xRegisterFunction("void xAppTitle(charsArray)", xGetFunctionAddress("xAppTitle"))
xRegisterFunction("void xSetWND(int)", xGetFunctionAddress("xSetWND"))
xRegisterFunction("void xSetRenderWindow(int)", xGetFunctionAddress("xSetRenderWindow"))
xRegisterFunction("void xSetTopWindow(int)", xGetFunctionAddress("xSetTopWindow"))
xRegisterFunction("void xDestroyRenderWindow()", xGetFunctionAddress("xDestroyRenderWindow"))
xRegisterFunction("void xFlip()", xGetFunctionAddress("xFlip"))
xRegisterFunction("int xBackBuffer()", xGetFunctionAddress("xBackBuffer"))
xRegisterFunction("void xLockBuffer(int)", xGetFunctionAddress("xLockBuffer"))
xRegisterFunction("void xUnlockBuffer(int)", xGetFunctionAddress("xUnlockBuffer"))
xRegisterFunction("void xWritePixelFast(int, int, int, int)", xGetFunctionAddress("xWritePixelFast"))
xRegisterFunction("int xReadPixelFast(int, int, int)", xGetFunctionAddress("xReadPixelFast"))
xRegisterFunction("int xGetPixels(int)", xGetFunctionAddress("xGetPixels"))
xRegisterFunction("void xSaveBuffer(int, charsArray)", xGetFunctionAddress("xSaveBuffer"))
xRegisterFunction("int xGetCurrentBuffer()", xGetFunctionAddress("xGetCurrentBuffer"))
xRegisterFunction("int xBufferWidth(int)", xGetFunctionAddress("xBufferWidth"))
xRegisterFunction("int xBufferHeight(int)", xGetFunctionAddress("xBufferHeight"))
xRegisterFunction("int xCatchTimestamp()", xGetFunctionAddress("xCatchTimestamp"))
xRegisterFunction("float xGetElapsedTime(int)", xGetFunctionAddress("xGetElapsedTime"))
xRegisterFunction("void xSetBuffer(int)", xGetFunctionAddress("xSetBuffer"))
xRegisterFunction("void xSetMRT(int, int, int)", xGetFunctionAddress("xSetMRT"))
xRegisterFunction("void xUnSetMRT()", xGetFunctionAddress("xUnSetMRT"))
xRegisterFunction("int xGetNumberRT()", xGetFunctionAddress("xGetNumberRT"))
xRegisterFunction("int xTextureBuffer(int, int)", xGetFunctionAddress("xTextureBuffer"))
xRegisterFunction("void xLoadBuffer(int, charsArray)", xGetFunctionAddress("xLoadBuffer"))
xRegisterFunction("void xWritePixel(int, int, int, int)", xGetFunctionAddress("xWritePixel"))
xRegisterFunction("void xCopyPixel(int, int, int, int, int, int)", xGetFunctionAddress("xCopyPixel"))
xRegisterFunction("void xCopyPixelFast(int, int, int, int, int, int)", xGetFunctionAddress("xCopyPixelFast"))
xRegisterFunction("void xCopyRect(int, int, int, int, int, int, int, int)", xGetFunctionAddress("xCopyRect"))
xRegisterFunction("int xGraphicsBuffer()", xGetFunctionAddress("xGraphicsBuffer"))
xRegisterFunction("int xGetColor(int, int)", xGetFunctionAddress("xGetColor"))
xRegisterFunction("int xReadPixel(int, int, int)", xGetFunctionAddress("xReadPixel"))
xRegisterFunction("int xGraphicsWidth(int)", xGetFunctionAddress("xGraphicsWidth"))
xRegisterFunction("int xGraphicsHeight(int)", xGetFunctionAddress("xGraphicsHeight"))
xRegisterFunction("int xGraphicsDepth()", xGetFunctionAddress("xGraphicsDepth"))
xRegisterFunction("int xColorAlpha()", xGetFunctionAddress("xColorAlpha"))
xRegisterFunction("int xColorRed()", xGetFunctionAddress("xColorRed"))
xRegisterFunction("int xColorGreen()", xGetFunctionAddress("xColorGreen"))
xRegisterFunction("int xColorBlue()", xGetFunctionAddress("xColorBlue"))
xRegisterFunction("void xClsColor(int, int, int, int)", xGetFunctionAddress("xClsColor"))
xRegisterFunction("void xClearWorld(int, int, int)", xGetFunctionAddress("xClearWorld"))
xRegisterFunction("void xColor(int, int, int, int)", xGetFunctionAddress("xColor"))
xRegisterFunction("void xCls()", xGetFunctionAddress("xCls"))
xRegisterFunction("void xUpdateWorld(float)", xGetFunctionAddress("xUpdateWorld"))
xRegisterFunction("void xRenderEntity(int, int, float)", xGetFunctionAddress("xRenderEntity"))
xRegisterFunction("void xRenderWorld(float, int)", xGetFunctionAddress("xRenderWorld"))
xRegisterFunction("void xSetAutoTB(int)", xGetFunctionAddress("xSetAutoTB"))
xRegisterFunction("int xMaxClipPlanes()", xGetFunctionAddress("xMaxClipPlanes"))
xRegisterFunction("void xWireframe(int)", xGetFunctionAddress("xWireframe"))
xRegisterFunction("void xDither(int)", xGetFunctionAddress("xDither"))
xRegisterFunction("void xSetSkinningMethod(int)", xGetFunctionAddress("xSetSkinningMethod"))
xRegisterFunction("int xTrisRendered()", xGetFunctionAddress("xTrisRendered"))
xRegisterFunction("int xDIPCounter()", xGetFunctionAddress("xDIPCounter"))
xRegisterFunction("int xSurfRendered()", xGetFunctionAddress("xSurfRendered"))
xRegisterFunction("int xEntityRendered()", xGetFunctionAddress("xEntityRendered"))
xRegisterFunction("void xAmbientLight(int, int, int, int)", xGetFunctionAddress("xAmbientLight"))
xRegisterFunction("int xGetFPS()", xGetFunctionAddress("xGetFPS"))
xRegisterFunction("void xAntiAlias(int)", xGetFunctionAddress("xAntiAlias"))
xRegisterFunction("void xSetTextureFiltering(int)", xGetFunctionAddress("xSetTextureFiltering"))
xRegisterFunction("void xStretchRect(int, int, int, int, int, int, int, int, int, int, int)", xGetFunctionAddress("xStretchRect"))
xRegisterFunction("void xStretchBackBuffer(int, int, int, int, int, int)", xGetFunctionAddress("xStretchBackBuffer"))
xRegisterFunction("int xGetDevice()", xGetFunctionAddress("xGetDevice"))
xRegisterFunction("void xReleaseGraphics()", xGetFunctionAddress("xReleaseGraphics"))
xRegisterFunction("void xShowPointer()", xGetFunctionAddress("xShowPointer"))
xRegisterFunction("void xHidePointer()", xGetFunctionAddress("xHidePointer"))
xRegisterFunction("void xCreateDSS(int, int)", xGetFunctionAddress("xCreateDSS"))
xRegisterFunction("void xDeleteDSS()", xGetFunctionAddress("xDeleteDSS"))
xRegisterFunction("void xGridColor(int, int, int, int, int, int)", xGetFunctionAddress("xGridColor"))
xRegisterFunction("void xDrawGrid(float, float, int, int)", xGetFunctionAddress("xDrawGrid"))
xRegisterFunction("void xDrawBBox(int, int, int, int, int, int)", xGetFunctionAddress("xDrawBBox"))
xRegisterFunction("void xGraphics3D(int, int, int, int, int)", xGetFunctionAddress("xGraphics3D"))
xRegisterFunction("void xGraphicsAspectRatio(float)", xGetFunctionAddress("xGraphicsAspectRatio"))
xRegisterFunction("void xGraphicsBorderColor(int, int, int)", xGetFunctionAddress("xGraphicsBorderColor"))
xRegisterFunction("int xGetRenderWindow()", xGetFunctionAddress("xGetRenderWindow"))
xRegisterFunction("void xKey(charsArray)", xGetFunctionAddress("xKey"))
xRegisterFunction("void xSetEngineSetting(charsArray, charsArray)", xGetFunctionAddress("xSetEngineSetting"))
xRegisterFunction("charsArray xGetEngineSetting(charsArray)", xGetFunctionAddress("xGetEngineSetting"))
xRegisterFunction("int xHWInstancingAvailable()", xGetFunctionAddress("xHWInstancingAvailable"))
xRegisterFunction("int xShaderInstancingAvailable()", xGetFunctionAddress("xShaderInstancingAvailable"))
xRegisterFunction("void xSetShaderLayer(int)", xGetFunctionAddress("xSetShaderLayer"))
xRegisterFunction("int xGetShaderLayer()", xGetFunctionAddress("xGetShaderLayer"))
xRegisterFunction("void xDrawMovementGizmo(float, float, float, int)", xGetFunctionAddress("xDrawMovementGizmo"))
xRegisterFunction("void xDrawScaleGizmo(float, float, float, int, float, float, float)", xGetFunctionAddress("xDrawScaleGizmo"))
xRegisterFunction("void xDrawRotationGizmo(float, float, float, int, float, float, float)", xGetFunctionAddress("xDrawRotationGizmo"))
xRegisterFunction("int xCheckMovementGizmo(float, float, float, int, int, int)", xGetFunctionAddress("xCheckMovementGizmo"))
xRegisterFunction("int xCheckScaleGizmo(float, float, float, int, int, int)", xGetFunctionAddress("xCheckScaleGizmo"))
xRegisterFunction("int xCheckRotationGizmo(float, float, float, int, int, int)", xGetFunctionAddress("xCheckRotationGizmo"))
xRegisterFunction("void xCaptureWorld()", xGetFunctionAddress("xCaptureWorld"))
xRegisterFunction("int xCountGfxModes()", xGetFunctionAddress("xCountGfxModes"))
xRegisterFunction("int xGfxModeWidth(int)", xGetFunctionAddress("xGfxModeWidth"))
xRegisterFunction("int xGfxModeHeight(int)", xGetFunctionAddress("xGfxModeHeight"))
xRegisterFunction("int xGfxModeDepth(int)", xGetFunctionAddress("xGfxModeDepth"))
xRegisterFunction("int xGfxModeExists(int, int, int)", xGetFunctionAddress("xGfxModeExists"))
xRegisterFunction("void xAppWindowFrame(int)", xGetFunctionAddress("xAppWindowFrame"))
xRegisterFunction("int xMillisecs()", xGetFunctionAddress("xMillisecs"))
xRegisterFunction("int xDeltaTime(int)", xGetFunctionAddress("xDeltaTime"))
xRegisterFunction("float xDeltaValue(float, int)", xGetFunctionAddress("xDeltaValue"))
xRegisterFunction("void xAddDeviceLostCallback(int)", xGetFunctionAddress("xAddDeviceLostCallback"))
xRegisterFunction("void xDeleteDeviceLostCallback(int)", xGetFunctionAddress("xDeleteDeviceLostCallback"))
xRegisterFunction("void xDeinit()", xGetFunctionAddress("xDeinit"))
xRegisterFunction("void xImageColor(int, int, int, int)", xGetFunctionAddress("xImageColor"))
xRegisterFunction("void xImageAlpha(int, float)", xGetFunctionAddress("xImageAlpha"))
xRegisterFunction("int xImageBuffer(int, int)", xGetFunctionAddress("xImageBuffer"))
xRegisterFunction("int xCreateImage(int, int, int)", xGetFunctionAddress("xCreateImage"))
xRegisterFunction("void xGrabImage(int, int, int, int)", xGetFunctionAddress("xGrabImage"))
xRegisterFunction("void xFreeImage(int)", xGetFunctionAddress("xFreeImage"))
xRegisterFunction("int xLoadImage(charsArray)", xGetFunctionAddress("xLoadImage"))
xRegisterFunction("int xLoadAnimImage(charsArray, int, int, int, int)", xGetFunctionAddress("xLoadAnimImage"))
xRegisterFunction("void xSaveImage(int, charsArray, int)", xGetFunctionAddress("xSaveImage"))
xRegisterFunction("void xDrawImage(int, float, float, int)", xGetFunctionAddress("xDrawImage"))
xRegisterFunction("void xDrawImageRect(int, float, float, float, float, float, float, int)", xGetFunctionAddress("xDrawImageRect"))
xRegisterFunction("void xScaleImage(int, float, float)", xGetFunctionAddress("xScaleImage"))
xRegisterFunction("void xResizeImage(int, float, float)", xGetFunctionAddress("xResizeImage"))
xRegisterFunction("void xRotateImage(int, float)", xGetFunctionAddress("xRotateImage"))
xRegisterFunction("float xImageAngle(int)", xGetFunctionAddress("xImageAngle"))
xRegisterFunction("int xImageWidth(int)", xGetFunctionAddress("xImageWidth"))
xRegisterFunction("int xImageHeight(int)", xGetFunctionAddress("xImageHeight"))
xRegisterFunction("int xImagesCollide(int, int, int, int, int, int, int, int)", xGetFunctionAddress("xImagesCollide"))
xRegisterFunction("int xImageRectCollide(int, int, int, int, int, int, int, int)", xGetFunctionAddress("xImageRectCollide"))
xRegisterFunction("int xImageRectOverlap(int, float, float, float, float, float, float)", xGetFunctionAddress("xImageRectOverlap"))
xRegisterFunction("int xImageXHandle(int)", xGetFunctionAddress("xImageXHandle"))
xRegisterFunction("int xImageYHandle(int)", xGetFunctionAddress("xImageYHandle"))
xRegisterFunction("void xHandleImage(int, float, float)", xGetFunctionAddress("xHandleImage"))
xRegisterFunction("void xMidHandle(int)", xGetFunctionAddress("xMidHandle"))
xRegisterFunction("void xAutoMidHandle(int)", xGetFunctionAddress("xAutoMidHandle"))
xRegisterFunction("void xTileImage(int, float, float, int)", xGetFunctionAddress("xTileImage"))
xRegisterFunction("int xImagesOverlap(int, float, float, int, float, float)", xGetFunctionAddress("xImagesOverlap"))
xRegisterFunction("void xMaskImage(int, int, int, int)", xGetFunctionAddress("xMaskImage"))
xRegisterFunction("int xCopyImage(int)", xGetFunctionAddress("xCopyImage"))
xRegisterFunction("void xDrawBlock(int, float, float, int)", xGetFunctionAddress("xDrawBlock"))
xRegisterFunction("void xDrawBlockRect(int, float, float, float, float, float, float, int)", xGetFunctionAddress("xDrawBlockRect"))
xRegisterFunction("int xImageActualWidth(int)", xGetFunctionAddress("xImageActualWidth"))
xRegisterFunction("int xImageActualHeight(int)", xGetFunctionAddress("xImageActualHeight"))
xRegisterFunction("void xFlushKeys()", xGetFunctionAddress("xFlushKeys"))
xRegisterFunction("void xFlushMouse()", xGetFunctionAddress("xFlushMouse"))
xRegisterFunction("int xKeyHit(int)", xGetFunctionAddress("xKeyHit"))
xRegisterFunction("int xKeyUp(int)", xGetFunctionAddress("xKeyUp"))
xRegisterFunction("void xWaitKey()", xGetFunctionAddress("xWaitKey"))
xRegisterFunction("int xMouseHit(int)", xGetFunctionAddress("xMouseHit"))
xRegisterFunction("int xKeyDown(int)", xGetFunctionAddress("xKeyDown"))
xRegisterFunction("int xGetKey()", xGetFunctionAddress("xGetKey"))
xRegisterFunction("int xMouseDown(int)", xGetFunctionAddress("xMouseDown"))
xRegisterFunction("int xMouseUp(int)", xGetFunctionAddress("xMouseUp"))
xRegisterFunction("int xGetMouse()", xGetFunctionAddress("xGetMouse"))
xRegisterFunction("int xMouseX()", xGetFunctionAddress("xMouseX"))
xRegisterFunction("int xMouseY()", xGetFunctionAddress("xMouseY"))
xRegisterFunction("int xMouseZ()", xGetFunctionAddress("xMouseZ"))
xRegisterFunction("int xMouseXSpeed()", xGetFunctionAddress("xMouseXSpeed"))
xRegisterFunction("int xMouseYSpeed()", xGetFunctionAddress("xMouseYSpeed"))
xRegisterFunction("int xMouseZSpeed()", xGetFunctionAddress("xMouseZSpeed"))
xRegisterFunction("int xMouseSpeed()", xGetFunctionAddress("xMouseSpeed"))
xRegisterFunction("void xMoveMouse(int, int)", xGetFunctionAddress("xMoveMouse"))
xRegisterFunction("int xJoyType(int)", xGetFunctionAddress("xJoyType"))
xRegisterFunction("int xJoyDown(int, int)", xGetFunctionAddress("xJoyDown"))
xRegisterFunction("int xJoyHit(int, int)", xGetFunctionAddress("xJoyHit"))
xRegisterFunction("int xGetJoy(int)", xGetFunctionAddress("xGetJoy"))
xRegisterFunction("void xFlushJoy()", xGetFunctionAddress("xFlushJoy"))
xRegisterFunction("int xWaitJoy(int)", xGetFunctionAddress("xWaitJoy"))
xRegisterFunction("float xJoyX(int)", xGetFunctionAddress("xJoyX"))
xRegisterFunction("float xJoyY(int)", xGetFunctionAddress("xJoyY"))
xRegisterFunction("float xJoyZ(int)", xGetFunctionAddress("xJoyZ"))
xRegisterFunction("float xJoyU(int)", xGetFunctionAddress("xJoyU"))
xRegisterFunction("float xJoyV(int)", xGetFunctionAddress("xJoyV"))
xRegisterFunction("float xJoyPitch(int)", xGetFunctionAddress("xJoyPitch"))
xRegisterFunction("float xJoyYaw(int)", xGetFunctionAddress("xJoyYaw"))
xRegisterFunction("float xJoyRoll(int)", xGetFunctionAddress("xJoyRoll"))
xRegisterFunction("float xJoyHat(int)", xGetFunctionAddress("xJoyHat"))
xRegisterFunction("int xJoyXDir(int)", xGetFunctionAddress("xJoyXDir"))
xRegisterFunction("int xJoyYDir(int)", xGetFunctionAddress("xJoyYDir"))
xRegisterFunction("int xJoyZDir(int)", xGetFunctionAddress("xJoyZDir"))
xRegisterFunction("int xJoyUDir(int)", xGetFunctionAddress("xJoyUDir"))
xRegisterFunction("int xJoyVDir(int)", xGetFunctionAddress("xJoyVDir"))
xRegisterFunction("int xCountJoys()", xGetFunctionAddress("xCountJoys"))
xRegisterFunction("int xCreateLight(int)", xGetFunctionAddress("xCreateLight"))
xRegisterFunction("void xLightShadowEpsilons(int, float, float)", xGetFunctionAddress("xLightShadowEpsilons"))
xRegisterFunction("void xLightEnableShadows(int, int)", xGetFunctionAddress("xLightEnableShadows"))
xRegisterFunction("int xLightShadowsEnabled(int)", xGetFunctionAddress("xLightShadowsEnabled"))
xRegisterFunction("void xLightRange(int, float)", xGetFunctionAddress("xLightRange"))
xRegisterFunction("void xLightColor(int, int, int, int)", xGetFunctionAddress("xLightColor"))
xRegisterFunction("void xLightConeAngles(int, float, float)", xGetFunctionAddress("xLightConeAngles"))
xRegisterFunction("int xCreateLog(int, int, charsArray, charsArray)", xGetFunctionAddress("xCreateLog"))
xRegisterFunction("int xCloseLog()", xGetFunctionAddress("xCloseLog"))
xRegisterFunction("charsArray xGetLogString()", xGetFunctionAddress("xGetLogString"))
xRegisterFunction("void xClearLogString()", xGetFunctionAddress("xClearLogString"))
xRegisterFunction("void xSetLogLevel(int)", xGetFunctionAddress("xSetLogLevel"))
xRegisterFunction("void xSetLogTarget(int)", xGetFunctionAddress("xSetLogTarget"))
xRegisterFunction("int xGetLogLevel()", xGetFunctionAddress("xGetLogLevel"))
xRegisterFunction("int xGetLogTarget()", xGetFunctionAddress("xGetLogTarget"))
xRegisterFunction("void xLogInfo(charsArray, charsArray, charsArray, int)", xGetFunctionAddress("xLogInfo"))
xRegisterFunction("void xLogMessage(charsArray, charsArray, charsArray, int)", xGetFunctionAddress("xLogMessage"))
xRegisterFunction("void xLogWarning(charsArray, charsArray, charsArray, int)", xGetFunctionAddress("xLogWarning"))
xRegisterFunction("void xLogError(charsArray, charsArray, charsArray, int)", xGetFunctionAddress("xLogError"))
xRegisterFunction("void xLogFatal(charsArray, charsArray, charsArray, int)", xGetFunctionAddress("xLogFatal"))
xRegisterFunction("int xCreateMesh(int)", xGetFunctionAddress("xCreateMesh"))
xRegisterFunction("int xLoadMesh(charsArray, int)", xGetFunctionAddress("xLoadMesh"))
xRegisterFunction("int xLoadMeshWithChild(charsArray, int)", xGetFunctionAddress("xLoadMeshWithChild"))
xRegisterFunction("int xLoadAnimMesh(charsArray, int)", xGetFunctionAddress("xLoadAnimMesh"))
xRegisterFunction("int xCreateCube(int)", xGetFunctionAddress("xCreateCube"))
xRegisterFunction("int xCreateSphere(int, int)", xGetFunctionAddress("xCreateSphere"))
xRegisterFunction("int xCreateCylinder(int, int, int)", xGetFunctionAddress("xCreateCylinder"))
xRegisterFunction("int xCreateTorus(int, float, float, int)", xGetFunctionAddress("xCreateTorus"))
xRegisterFunction("int xCreateCone(int, int, int)", xGetFunctionAddress("xCreateCone"))
xRegisterFunction("int xCopyMesh(int, int)", xGetFunctionAddress("xCopyMesh"))
xRegisterFunction("void xAddMesh(int, int)", xGetFunctionAddress("xAddMesh"))
xRegisterFunction("void xFlipMesh(int)", xGetFunctionAddress("xFlipMesh"))
xRegisterFunction("void xPaintMesh(int, int)", xGetFunctionAddress("xPaintMesh"))
xRegisterFunction("void xFitMesh(int, float, float, float, float, float, float, int)", xGetFunctionAddress("xFitMesh"))
xRegisterFunction("float xMeshWidth(int, int)", xGetFunctionAddress("xMeshWidth"))
xRegisterFunction("float xMeshHeight(int, int)", xGetFunctionAddress("xMeshHeight"))
xRegisterFunction("float xMeshDepth(int, int)", xGetFunctionAddress("xMeshDepth"))
xRegisterFunction("void xScaleMesh(int, float, float, float)", xGetFunctionAddress("xScaleMesh"))
xRegisterFunction("void xRotateMesh(int, float, float, float)", xGetFunctionAddress("xRotateMesh"))
xRegisterFunction("void xPositionMesh(int, float, float, float)", xGetFunctionAddress("xPositionMesh"))
xRegisterFunction("void xUpdateNormals(int)", xGetFunctionAddress("xUpdateNormals"))
xRegisterFunction("void xUpdateN(int)", xGetFunctionAddress("xUpdateN"))
xRegisterFunction("void xUpdateTB(int)", xGetFunctionAddress("xUpdateTB"))
xRegisterFunction("int xMeshesBBIntersect(int, int)", xGetFunctionAddress("xMeshesBBIntersect"))
xRegisterFunction("int xMeshesIntersect(int, int)", xGetFunctionAddress("xMeshesIntersect"))
xRegisterFunction("int xGetMeshVB(int)", xGetFunctionAddress("xGetMeshVB"))
xRegisterFunction("int xGetMeshIB(int)", xGetFunctionAddress("xGetMeshIB"))
xRegisterFunction("int xGetMeshVBSize(int)", xGetFunctionAddress("xGetMeshVBSize"))
xRegisterFunction("int xGetMeshIBSize(int)", xGetFunctionAddress("xGetMeshIBSize"))
xRegisterFunction("void xDeleteMeshVB(int)", xGetFunctionAddress("xDeleteMeshVB"))
xRegisterFunction("void xDeleteMeshIB(int)", xGetFunctionAddress("xDeleteMeshIB"))
xRegisterFunction("int xCountSurfaces(int)", xGetFunctionAddress("xCountSurfaces"))
xRegisterFunction("int xGetSurface(int, int)", xGetFunctionAddress("xGetSurface"))
xRegisterFunction("int xCreatePivot(int)", xGetFunctionAddress("xCreatePivot"))
xRegisterFunction("int xFindSurface(int, int)", xGetFunctionAddress("xFindSurface"))
xRegisterFunction("int xCreatePoly(int, int)", xGetFunctionAddress("xCreatePoly"))
xRegisterFunction("void xMeshSingleSurface(int)", xGetFunctionAddress("xMeshSingleSurface"))
xRegisterFunction("int xSaveMesh(int, charsArray)", xGetFunctionAddress("xSaveMesh"))
xRegisterFunction("void xLightMesh(int, int, int, int, float, float, float, float)", xGetFunctionAddress("xLightMesh"))
xRegisterFunction("void xMeshPrimitiveType(int, int)", xGetFunctionAddress("xMeshPrimitiveType"))
xRegisterFunction("void xParticlePosition(int, float, float, float)", xGetFunctionAddress("xParticlePosition"))
xRegisterFunction("float xParticleX(int)", xGetFunctionAddress("xParticleX"))
xRegisterFunction("float xParticleY(int)", xGetFunctionAddress("xParticleY"))
xRegisterFunction("float xParticleZ(int)", xGetFunctionAddress("xParticleZ"))
xRegisterFunction("void xParticleVeclocity(int, float, float, float)", xGetFunctionAddress("xParticleVeclocity"))
xRegisterFunction("float xParticleVX(int)", xGetFunctionAddress("xParticleVX"))
xRegisterFunction("float xParticleVY(int)", xGetFunctionAddress("xParticleVY"))
xRegisterFunction("float xParticleVZ(int)", xGetFunctionAddress("xParticleVZ"))
xRegisterFunction("void xParticleRotation(int, float, float, float)", xGetFunctionAddress("xParticleRotation"))
xRegisterFunction("float xParticlePitch(int)", xGetFunctionAddress("xParticlePitch"))
xRegisterFunction("float xParticleYaw(int)", xGetFunctionAddress("xParticleYaw"))
xRegisterFunction("float xParticleRoll(int)", xGetFunctionAddress("xParticleRoll"))
xRegisterFunction("void xParticleTorque(int, float, float, float)", xGetFunctionAddress("xParticleTorque"))
xRegisterFunction("float xParticleTPitch(int)", xGetFunctionAddress("xParticleTPitch"))
xRegisterFunction("float xParticleTYaw(int)", xGetFunctionAddress("xParticleTYaw"))
xRegisterFunction("float xParticleTRoll(int)", xGetFunctionAddress("xParticleTRoll"))
xRegisterFunction("void xParticleSetAlpha(int, float)", xGetFunctionAddress("xParticleSetAlpha"))
xRegisterFunction("float xParticleGetAlpha(int)", xGetFunctionAddress("xParticleGetAlpha"))
xRegisterFunction("void xParticleColor(int, float, float, float)", xGetFunctionAddress("xParticleColor"))
xRegisterFunction("float xParticleRed(int)", xGetFunctionAddress("xParticleRed"))
xRegisterFunction("float xParticleGreen(int)", xGetFunctionAddress("xParticleGreen"))
xRegisterFunction("float xParticleBlue(int)", xGetFunctionAddress("xParticleBlue"))
xRegisterFunction("void xParticleScale(int, float, float)", xGetFunctionAddress("xParticleScale"))
xRegisterFunction("float xParticleSX(int)", xGetFunctionAddress("xParticleSX"))
xRegisterFunction("float xParticleSY(int)", xGetFunctionAddress("xParticleSY"))
xRegisterFunction("void xParticleScaleSpeed(int, float, float)", xGetFunctionAddress("xParticleScaleSpeed"))
xRegisterFunction("float xParticleScaleSpeedX(int)", xGetFunctionAddress("xParticleScaleSpeedX"))
xRegisterFunction("float xParticleScaleSpeedY(int)", xGetFunctionAddress("xParticleScaleSpeedY"))
xRegisterFunction("void xEntityAddDummyShape(int)", xGetFunctionAddress("xEntityAddDummyShape"))
xRegisterFunction("void xEntityAddBoxShape(int, float, float, float, float)", xGetFunctionAddress("xEntityAddBoxShape"))
xRegisterFunction("void xEntityAddSphereShape(int, float, float)", xGetFunctionAddress("xEntityAddSphereShape"))
xRegisterFunction("void xEntityAddCapsuleShape(int, float, float, float)", xGetFunctionAddress("xEntityAddCapsuleShape"))
xRegisterFunction("void xEntityAddConeShape(int, float, float, float)", xGetFunctionAddress("xEntityAddConeShape"))
xRegisterFunction("void xEntityAddCylinderShape(int, float, float, float, float)", xGetFunctionAddress("xEntityAddCylinderShape"))
xRegisterFunction("void xEntityAddTriMeshShape(int)", xGetFunctionAddress("xEntityAddTriMeshShape"))
xRegisterFunction("void xEntityAddTriMeshShapeProxy(int, int)", xGetFunctionAddress("xEntityAddTriMeshShapeProxy"))
xRegisterFunction("void xEntityAddConvexShape(int, float)", xGetFunctionAddress("xEntityAddConvexShape"))
xRegisterFunction("void xEntityAddConvexShapeProxy(int, int, float)", xGetFunctionAddress("xEntityAddConvexShapeProxy"))
xRegisterFunction("void xEntityAddConcaveShape(int, float)", xGetFunctionAddress("xEntityAddConcaveShape"))
xRegisterFunction("void xEntityAddConcaveShapeProxy(int, int, float)", xGetFunctionAddress("xEntityAddConcaveShapeProxy"))
xRegisterFunction("void xEntityAddTerrainShape(int)", xGetFunctionAddress("xEntityAddTerrainShape"))
xRegisterFunction("void xEntityAttachBody(int, int)", xGetFunctionAddress("xEntityAttachBody"))
xRegisterFunction("int xEntityDetachBody(int)", xGetFunctionAddress("xEntityDetachBody"))
xRegisterFunction("void xFreeEntityBody(int)", xGetFunctionAddress("xFreeEntityBody"))
xRegisterFunction("void xEntityAddCompoundShape(int, float)", xGetFunctionAddress("xEntityAddCompoundShape"))
xRegisterFunction("int xEntityCompoundAddBox(int, float, float, float)", xGetFunctionAddress("xEntityCompoundAddBox"))
xRegisterFunction("int xEntityCompoundAddSphere(int, float)", xGetFunctionAddress("xEntityCompoundAddSphere"))
xRegisterFunction("int xEntityCompoundAddCapsule(int, float, float)", xGetFunctionAddress("xEntityCompoundAddCapsule"))
xRegisterFunction("int xEntityCompoundAddCone(int, float, float)", xGetFunctionAddress("xEntityCompoundAddCone"))
xRegisterFunction("int xEntityCompoundAddCylinder(int, float, float)", xGetFunctionAddress("xEntityCompoundAddCylinder"))
xRegisterFunction("int xEntityCompoundCountChildren(int)", xGetFunctionAddress("xEntityCompoundCountChildren"))
xRegisterFunction("void xEntityCompoundRemoveChild(int, int)", xGetFunctionAddress("xEntityCompoundRemoveChild"))
xRegisterFunction("void xEntityCompoundChildSetPosition(int, int, float, float, float)", xGetFunctionAddress("xEntityCompoundChildSetPosition"))
xRegisterFunction("float xEntityCompoundChildGetX(int, int)", xGetFunctionAddress("xEntityCompoundChildGetX"))
xRegisterFunction("float xEntityCompoundChildGetY(int, int)", xGetFunctionAddress("xEntityCompoundChildGetY"))
xRegisterFunction("float xEntityCompoundChildGetZ(int, int)", xGetFunctionAddress("xEntityCompoundChildGetZ"))
xRegisterFunction("void xEntityCompoundChildSetRotation(int, int, float, float, float)", xGetFunctionAddress("xEntityCompoundChildSetRotation"))
xRegisterFunction("float xEntityCompoundChildGetPitch(int, int)", xGetFunctionAddress("xEntityCompoundChildGetPitch"))
xRegisterFunction("float xEntityCompoundChildGetYaw(int, int)", xGetFunctionAddress("xEntityCompoundChildGetYaw"))
xRegisterFunction("float xEntityCompoundChildGetRoll(int, int)", xGetFunctionAddress("xEntityCompoundChildGetRoll"))
xRegisterFunction("int xCreateHingeJoint(int, int, float, float, float, float, float, float, int)", xGetFunctionAddress("xCreateHingeJoint"))
xRegisterFunction("int xCreateBallJoint(int, int, float, float, float, int)", xGetFunctionAddress("xCreateBallJoint"))
xRegisterFunction("int xCreateD6Joint(int, int, float, float, float, float, float, float, int, int)", xGetFunctionAddress("xCreateD6Joint"))
xRegisterFunction("int xCreateD6SpringJoint(int, int, float, float, float, float, float, float, int, int)", xGetFunctionAddress("xCreateD6SpringJoint"))
xRegisterFunction("float xJointHingeGetAngle(int)", xGetFunctionAddress("xJointHingeGetAngle"))
xRegisterFunction("float xJointD6GetPitchAngle(int)", xGetFunctionAddress("xJointD6GetPitchAngle"))
xRegisterFunction("float xJointD6GetYawAngle(int)", xGetFunctionAddress("xJointD6GetYawAngle"))
xRegisterFunction("float xJointD6GetRollAngle(int)", xGetFunctionAddress("xJointD6GetRollAngle"))
xRegisterFunction("float xJointD6GetAngle(int, int)", xGetFunctionAddress("xJointD6GetAngle"))
xRegisterFunction("void xJointDisableCollisions(int, int)", xGetFunctionAddress("xJointDisableCollisions"))
xRegisterFunction("void xJointEnable(int, int)", xGetFunctionAddress("xJointEnable"))
xRegisterFunction("int xJointIsEnabled(int)", xGetFunctionAddress("xJointIsEnabled"))
xRegisterFunction("float xJointGetImpulse(int)", xGetFunctionAddress("xJointGetImpulse"))
xRegisterFunction("void xFreeJoint(int)", xGetFunctionAddress("xFreeJoint"))
xRegisterFunction("void xJointBallSetPivot(int, float, float, float, int)", xGetFunctionAddress("xJointBallSetPivot"))
xRegisterFunction("float xJointBallGetPivotX(int, int)", xGetFunctionAddress("xJointBallGetPivotX"))
xRegisterFunction("float xJointBallGetPivotY(int, int)", xGetFunctionAddress("xJointBallGetPivotY"))
xRegisterFunction("float xJointBallGetPivotZ(int, int)", xGetFunctionAddress("xJointBallGetPivotZ"))
xRegisterFunction("void xJointD6SetLimits(int, int, float, float)", xGetFunctionAddress("xJointD6SetLimits"))
xRegisterFunction("void xJointD6SetLowerLinearLimits(int, float, float, float)", xGetFunctionAddress("xJointD6SetLowerLinearLimits"))
xRegisterFunction("void xJointD6SetUpperLinearLimits(int, float, float, float)", xGetFunctionAddress("xJointD6SetUpperLinearLimits"))
xRegisterFunction("void xJointD6SetLowerAngularLimits(int, float, float, float)", xGetFunctionAddress("xJointD6SetLowerAngularLimits"))
xRegisterFunction("void xJointD6SetUpperAngularLimits(int, float, float, float)", xGetFunctionAddress("xJointD6SetUpperAngularLimits"))
xRegisterFunction("void xJointD6SetLinearLimits(int, float, float, float, float, float, float)", xGetFunctionAddress("xJointD6SetLinearLimits"))
xRegisterFunction("void xJointD6SetAngularLimits(int, float, float, float, float, float, float)", xGetFunctionAddress("xJointD6SetAngularLimits"))
xRegisterFunction("float xJointD6GetLinearLowerX(int)", xGetFunctionAddress("xJointD6GetLinearLowerX"))
xRegisterFunction("float xJointD6GetLinearLowerY(int)", xGetFunctionAddress("xJointD6GetLinearLowerY"))
xRegisterFunction("float xJointD6GetLinearLowerZ(int)", xGetFunctionAddress("xJointD6GetLinearLowerZ"))
xRegisterFunction("float xJointD6GetLinearUpperX(int)", xGetFunctionAddress("xJointD6GetLinearUpperX"))
xRegisterFunction("float xJointD6GetLinearUpperY(int)", xGetFunctionAddress("xJointD6GetLinearUpperY"))
xRegisterFunction("float xJointD6GetLinearUpperZ(int)", xGetFunctionAddress("xJointD6GetLinearUpperZ"))
xRegisterFunction("float xJointD6GetAngularLowerX(int)", xGetFunctionAddress("xJointD6GetAngularLowerX"))
xRegisterFunction("float xJointD6GetAngularLowerY(int)", xGetFunctionAddress("xJointD6GetAngularLowerY"))
xRegisterFunction("float xJointD6GetAngularLowerZ(int)", xGetFunctionAddress("xJointD6GetAngularLowerZ"))
xRegisterFunction("float xJointD6GetAngularUpperX(int)", xGetFunctionAddress("xJointD6GetAngularUpperX"))
xRegisterFunction("float xJointD6GetAngularUpperY(int)", xGetFunctionAddress("xJointD6GetAngularUpperY"))
xRegisterFunction("float xJointD6GetAngularUpperZ(int)", xGetFunctionAddress("xJointD6GetAngularUpperZ"))
xRegisterFunction("void xJointD6SpringSetParam(int, int, int, float, float)", xGetFunctionAddress("xJointD6SpringSetParam"))
xRegisterFunction("void xJointHingeSetAxis(int, float, float, float)", xGetFunctionAddress("xJointHingeSetAxis"))
xRegisterFunction("void xJointHingeSetLimits(int, float, float, float, float, float)", xGetFunctionAddress("xJointHingeSetLimits"))
xRegisterFunction("float xJointHingeGetLowerLimit(int)", xGetFunctionAddress("xJointHingeGetLowerLimit"))
xRegisterFunction("float xJointHingeGetUpperLimit(int)", xGetFunctionAddress("xJointHingeGetUpperLimit"))
xRegisterFunction("void xJointEnableMotor(int, int, float, float, int)", xGetFunctionAddress("xJointEnableMotor"))
xRegisterFunction("void xJointHingeSetMotorTarget(int, float, float)", xGetFunctionAddress("xJointHingeSetMotorTarget"))
xRegisterFunction("int xJointGetEntityA(int)", xGetFunctionAddress("xJointGetEntityA"))
xRegisterFunction("int xJointGetEntityB(int)", xGetFunctionAddress("xJointGetEntityB"))
xRegisterFunction("void xEntityApplyCentralForce(int, float, float, float, int)", xGetFunctionAddress("xEntityApplyCentralForce"))
xRegisterFunction("void xEntityApplyCentralImpulse(int, float, float, float, int)", xGetFunctionAddress("xEntityApplyCentralImpulse"))
xRegisterFunction("void xEntityApplyTorque(int, float, float, float, int)", xGetFunctionAddress("xEntityApplyTorque"))
xRegisterFunction("void xEntityApplyTorqueImpulse(int, float, float, float, int)", xGetFunctionAddress("xEntityApplyTorqueImpulse"))
xRegisterFunction("void xEntityApplyForce(int, float, float, float, float, float, float, int, int)", xGetFunctionAddress("xEntityApplyForce"))
xRegisterFunction("void xEntityApplyImpulse(int, float, float, float, float, float, float, int, int)", xGetFunctionAddress("xEntityApplyImpulse"))
xRegisterFunction("void xEntityReleaseForces(int)", xGetFunctionAddress("xEntityReleaseForces"))
xRegisterFunction("void xWorldSetGravity(float, float, float, int)", xGetFunctionAddress("xWorldSetGravity"))
xRegisterFunction("float xWorldGetGravityX(int)", xGetFunctionAddress("xWorldGetGravityX"))
xRegisterFunction("float xWorldGetGravityY(int)", xGetFunctionAddress("xWorldGetGravityY"))
xRegisterFunction("float xWorldGetGravityZ(int)", xGetFunctionAddress("xWorldGetGravityZ"))
xRegisterFunction("void xEntitySetGravity(int, float, float, float)", xGetFunctionAddress("xEntitySetGravity"))
xRegisterFunction("float xEntityGetGravityX(int)", xGetFunctionAddress("xEntityGetGravityX"))
xRegisterFunction("float xEntityGetGravityY(int)", xGetFunctionAddress("xEntityGetGravityY"))
xRegisterFunction("float xEntityGetGravityZ(int)", xGetFunctionAddress("xEntityGetGravityZ"))
xRegisterFunction("void xEntitySetLinearVelocity(int, float, float, float, int)", xGetFunctionAddress("xEntitySetLinearVelocity"))
xRegisterFunction("float xEntityGetLinearVelocityX(int, int)", xGetFunctionAddress("xEntityGetLinearVelocityX"))
xRegisterFunction("float xEntityGetLinearVelocityY(int, int)", xGetFunctionAddress("xEntityGetLinearVelocityY"))
xRegisterFunction("float xEntityGetLinearVelocityZ(int, int)", xGetFunctionAddress("xEntityGetLinearVelocityZ"))
xRegisterFunction("void xEntitySetAngularVelocity(int, float, float, float, int)", xGetFunctionAddress("xEntitySetAngularVelocity"))
xRegisterFunction("float xEntityGetAngularVelocityX(int, int)", xGetFunctionAddress("xEntityGetAngularVelocityX"))
xRegisterFunction("float xEntityGetAngularVelocityY(int, int)", xGetFunctionAddress("xEntityGetAngularVelocityY"))
xRegisterFunction("float xEntityGetAngularVelocityZ(int, int)", xGetFunctionAddress("xEntityGetAngularVelocityZ"))
xRegisterFunction("void xEntitySetDamping(int, float, float)", xGetFunctionAddress("xEntitySetDamping"))
xRegisterFunction("float xEntityGetLinearDamping(int)", xGetFunctionAddress("xEntityGetLinearDamping"))
xRegisterFunction("float xEntityGetAngularDamping(int)", xGetFunctionAddress("xEntityGetAngularDamping"))
xRegisterFunction("void xEntitySetFriction(int, float)", xGetFunctionAddress("xEntitySetFriction"))
xRegisterFunction("float xEntityGetFriction(int)", xGetFunctionAddress("xEntityGetFriction"))
xRegisterFunction("void xEntitySetAnisotropicFriction(int, float, float, float)", xGetFunctionAddress("xEntitySetAnisotropicFriction"))
xRegisterFunction("float xEntityGetAnisotropicFrictionX(int)", xGetFunctionAddress("xEntityGetAnisotropicFrictionX"))
xRegisterFunction("float xEntityGetAnisotropicFrictionY(int)", xGetFunctionAddress("xEntityGetAnisotropicFrictionY"))
xRegisterFunction("float xEntityGetAnisotropicFrictionZ(int)", xGetFunctionAddress("xEntityGetAnisotropicFrictionZ"))
xRegisterFunction("void xEntitySetLinearFactor(int, float, float, float)", xGetFunctionAddress("xEntitySetLinearFactor"))
xRegisterFunction("float xEntityGetLinearFactorX(int)", xGetFunctionAddress("xEntityGetLinearFactorX"))
xRegisterFunction("float xEntityGetLinearFactorY(int)", xGetFunctionAddress("xEntityGetLinearFactorY"))
xRegisterFunction("float xEntityGetLinearFactorZ(int)", xGetFunctionAddress("xEntityGetLinearFactorZ"))
xRegisterFunction("void xEntitySetAngularFactor(int, float, float, float)", xGetFunctionAddress("xEntitySetAngularFactor"))
xRegisterFunction("float xEntityGetAngularFactorX(int)", xGetFunctionAddress("xEntityGetAngularFactorX"))
xRegisterFunction("float xEntityGetAngularFactorY(int)", xGetFunctionAddress("xEntityGetAngularFactorY"))
xRegisterFunction("float xEntityGetAngularFactorZ(int)", xGetFunctionAddress("xEntityGetAngularFactorZ"))
xRegisterFunction("void xEntitySetRestitution(int, float)", xGetFunctionAddress("xEntitySetRestitution"))
xRegisterFunction("float xEntityGetRestitution(int)", xGetFunctionAddress("xEntityGetRestitution"))
xRegisterFunction("void xEntitySetMass(int, float)", xGetFunctionAddress("xEntitySetMass"))
xRegisterFunction("float xEntityGetMass(int)", xGetFunctionAddress("xEntityGetMass"))
xRegisterFunction("int xEntityCountContacts(int)", xGetFunctionAddress("xEntityCountContacts"))
xRegisterFunction("float xEntityGetContactX(int, int)", xGetFunctionAddress("xEntityGetContactX"))
xRegisterFunction("float xEntityGetContactY(int, int)", xGetFunctionAddress("xEntityGetContactY"))
xRegisterFunction("float xEntityGetContactZ(int, int)", xGetFunctionAddress("xEntityGetContactZ"))
xRegisterFunction("float xEntityGetContactNX(int, int)", xGetFunctionAddress("xEntityGetContactNX"))
xRegisterFunction("float xEntityGetContactNY(int, int)", xGetFunctionAddress("xEntityGetContactNY"))
xRegisterFunction("float xEntityGetContactNZ(int, int)", xGetFunctionAddress("xEntityGetContactNZ"))
xRegisterFunction("float xEntityGetContactDistance(int, int)", xGetFunctionAddress("xEntityGetContactDistance"))
xRegisterFunction("int xEntityGetContact(int, int)", xGetFunctionAddress("xEntityGetContact"))
xRegisterFunction("float xEntityGetContactImpulse(int, int)", xGetFunctionAddress("xEntityGetContactImpulse"))
xRegisterFunction("void xEntitySetCollisionGroup(int, int)", xGetFunctionAddress("xEntitySetCollisionGroup"))
xRegisterFunction("int xEntityGetCollisionGroup(int)", xGetFunctionAddress("xEntityGetCollisionGroup"))
xRegisterFunction("void xEntitySetContactGroup(int, int)", xGetFunctionAddress("xEntitySetContactGroup"))
xRegisterFunction("int xEntityGetContactGroup(int)", xGetFunctionAddress("xEntityGetContactGroup"))
xRegisterFunction("void xEntitySetRaycastGroup(int, int)", xGetFunctionAddress("xEntitySetRaycastGroup"))
xRegisterFunction("int xEntityGetRaycastGroup(int)", xGetFunctionAddress("xEntityGetRaycastGroup"))
xRegisterFunction("void xPhysicsSetCollisionFilter(int, int, int)", xGetFunctionAddress("xPhysicsSetCollisionFilter"))
xRegisterFunction("int xPhysicsGetCollisionFilter(int, int)", xGetFunctionAddress("xPhysicsGetCollisionFilter"))
xRegisterFunction("void xPhysicsSetContactFilter(int, int, int)", xGetFunctionAddress("xPhysicsSetContactFilter"))
xRegisterFunction("int xPhysicsGetContactFilter(int, int)", xGetFunctionAddress("xPhysicsGetContactFilter"))
xRegisterFunction("void xPhysicsSetRaycastFilter(int, int, int)", xGetFunctionAddress("xPhysicsSetRaycastFilter"))
xRegisterFunction("int xPhysicsGetRaycastFilter(int, int)", xGetFunctionAddress("xPhysicsGetRaycastFilter"))
xRegisterFunction("int xEntityIsSleeping(int)", xGetFunctionAddress("xEntityIsSleeping"))
xRegisterFunction("void xEntityDisableSleeping(int, int)", xGetFunctionAddress("xEntityDisableSleeping"))
xRegisterFunction("void xEntityWakeUp(int)", xGetFunctionAddress("xEntityWakeUp"))
xRegisterFunction("void xEntitySleep(int)", xGetFunctionAddress("xEntitySleep"))
xRegisterFunction("void xEntitySetSleepingThresholds(int, float, float)", xGetFunctionAddress("xEntitySetSleepingThresholds"))
xRegisterFunction("float xEntityGetLinearSleepingThreshold(int)", xGetFunctionAddress("xEntityGetLinearSleepingThreshold"))
xRegisterFunction("float xEntityGetAngularSleepingThreshold(int)", xGetFunctionAddress("xEntityGetAngularSleepingThreshold"))
xRegisterFunction("void xPhysicsRayCast(float, float, float, float, float, float, int, int)", xGetFunctionAddress("xPhysicsRayCast"))
xRegisterFunction("int xPhysicsGetHitEntity(int)", xGetFunctionAddress("xPhysicsGetHitEntity"))
xRegisterFunction("float xPhysicsGetHitPointX(int)", xGetFunctionAddress("xPhysicsGetHitPointX"))
xRegisterFunction("float xPhysicsGetHitPointY(int)", xGetFunctionAddress("xPhysicsGetHitPointY"))
xRegisterFunction("float xPhysicsGetHitPointZ(int)", xGetFunctionAddress("xPhysicsGetHitPointZ"))
xRegisterFunction("float xPhysicsGetHitNormalX(int)", xGetFunctionAddress("xPhysicsGetHitNormalX"))
xRegisterFunction("float xPhysicsGetHitNormalY(int)", xGetFunctionAddress("xPhysicsGetHitNormalY"))
xRegisterFunction("float xPhysicsGetHitNormalZ(int)", xGetFunctionAddress("xPhysicsGetHitNormalZ"))
xRegisterFunction("float xPhysicsGetHitDistance(int)", xGetFunctionAddress("xPhysicsGetHitDistance"))
xRegisterFunction("int xPhysicsCountHits()", xGetFunctionAddress("xPhysicsCountHits"))
xRegisterFunction("void xEntityBodyLocalPosition(int, float, float, float)", xGetFunctionAddress("xEntityBodyLocalPosition"))
xRegisterFunction("void xEntityBodyLocalRotation(int, float, float, float)", xGetFunctionAddress("xEntityBodyLocalRotation"))
xRegisterFunction("void xEntityBodyLocalScale(int, float, float, float)", xGetFunctionAddress("xEntityBodyLocalScale"))
xRegisterFunction("void xWorldSetFrequency(float, int)", xGetFunctionAddress("xWorldSetFrequency"))
xRegisterFunction("void xEntityMakeKinematic(int, int)", xGetFunctionAddress("xEntityMakeKinematic"))
xRegisterFunction("int xEntityIsKinematic(int)", xGetFunctionAddress("xEntityIsKinematic"))
xRegisterFunction("void xPhysicsDebugRender(int)", xGetFunctionAddress("xPhysicsDebugRender"))
xRegisterFunction("void xEntityDisableSimulation(int, int)", xGetFunctionAddress("xEntityDisableSimulation"))
xRegisterFunction("int xEntityHasBody(int)", xGetFunctionAddress("xEntityHasBody"))
xRegisterFunction("void xEntityCreateVehicle(int)", xGetFunctionAddress("xEntityCreateVehicle"))
xRegisterFunction("void xEntityFreeVehicle(int)", xGetFunctionAddress("xEntityFreeVehicle"))
xRegisterFunction("int xEntityCountWheels(int)", xGetFunctionAddress("xEntityCountWheels"))
xRegisterFunction("int xEntityAddWheel(int, int)", xGetFunctionAddress("xEntityAddWheel"))
xRegisterFunction("void xEntityWheelSetRadius(int, int, float)", xGetFunctionAddress("xEntityWheelSetRadius"))
xRegisterFunction("void xEntityWheelSetAxle(int, int, float, float, float)", xGetFunctionAddress("xEntityWheelSetAxle"))
xRegisterFunction("void xEntityWheelSetRay(int, int, float, float, float)", xGetFunctionAddress("xEntityWheelSetRay"))
xRegisterFunction("void xEntityWheelSetSuspensionLength(int, int, float)", xGetFunctionAddress("xEntityWheelSetSuspensionLength"))
xRegisterFunction("void xEntityWheelSetBrake(int, int, float)", xGetFunctionAddress("xEntityWheelSetBrake"))
xRegisterFunction("void xEntityWheelSetMaxSuspensionForce(int, int, float)", xGetFunctionAddress("xEntityWheelSetMaxSuspensionForce"))
xRegisterFunction("void xEntityWheelSetMaxSuspensionTravel(int, int, float)", xGetFunctionAddress("xEntityWheelSetMaxSuspensionTravel"))
xRegisterFunction("void xEntityWheelSetSuspensionStiffness(int, int, float)", xGetFunctionAddress("xEntityWheelSetSuspensionStiffness"))
xRegisterFunction("void xEntityWheelSetSuspensionDamping(int, int, float)", xGetFunctionAddress("xEntityWheelSetSuspensionDamping"))
xRegisterFunction("void xEntityWheelSetSuspensionCompression(int, int, float)", xGetFunctionAddress("xEntityWheelSetSuspensionCompression"))
xRegisterFunction("void xEntityWheelSetFriction(int, int, float)", xGetFunctionAddress("xEntityWheelSetFriction"))
xRegisterFunction("void xEntityWheelSetEngineForce(int, int, float)", xGetFunctionAddress("xEntityWheelSetEngineForce"))
xRegisterFunction("void xEntityWheelSetRollInfluence(int, int, float)", xGetFunctionAddress("xEntityWheelSetRollInfluence"))
xRegisterFunction("void xEntityWheelSetRotation(int, int, float)", xGetFunctionAddress("xEntityWheelSetRotation"))
xRegisterFunction("void xEntityWheelSetSteering(int, int, float)", xGetFunctionAddress("xEntityWheelSetSteering"))
xRegisterFunction("void xEntityWheelSetConnectionPoint(int, int, float, float, float, int)", xGetFunctionAddress("xEntityWheelSetConnectionPoint"))
xRegisterFunction("float xEntityWheelGetSuspensionLength(int, int)", xGetFunctionAddress("xEntityWheelGetSuspensionLength"))
xRegisterFunction("float xEntityWheelGetPitch(int, int)", xGetFunctionAddress("xEntityWheelGetPitch"))
xRegisterFunction("float xEntityWheelGetYaw(int, int)", xGetFunctionAddress("xEntityWheelGetYaw"))
xRegisterFunction("float xEntityWheelGetRoll(int, int)", xGetFunctionAddress("xEntityWheelGetRoll"))
xRegisterFunction("int xEntityWheelGetContactEntity(int, int)", xGetFunctionAddress("xEntityWheelGetContactEntity"))
xRegisterFunction("int xLoadPostEffect(charsArray)", xGetFunctionAddress("xLoadPostEffect"))
xRegisterFunction("void xFreePostEffect(int)", xGetFunctionAddress("xFreePostEffect"))
xRegisterFunction("void xSetPostEffect(int, int, charsArray)", xGetFunctionAddress("xSetPostEffect"))
xRegisterFunction("void xRenderPostEffects()", xGetFunctionAddress("xRenderPostEffects"))
xRegisterFunction("void xSetPostEffectInt(int, charsArray, int)", xGetFunctionAddress("xSetPostEffectInt"))
xRegisterFunction("void xSetPostEffectFloat(int, charsArray, float)", xGetFunctionAddress("xSetPostEffectFloat"))
xRegisterFunction("void xSetPostEffectBool(int, charsArray, int)", xGetFunctionAddress("xSetPostEffectBool"))
xRegisterFunction("void xSetPostEffectVector(int, charsArray, float, float, float, float)", xGetFunctionAddress("xSetPostEffectVector"))
xRegisterFunction("void xSetPostEffectTexture(int, charsArray, int, int)", xGetFunctionAddress("xSetPostEffectTexture"))
xRegisterFunction("void xDeletePostEffectConstant(int, charsArray)", xGetFunctionAddress("xDeletePostEffectConstant"))
xRegisterFunction("void xClearPostEffectConstants(int)", xGetFunctionAddress("xClearPostEffectConstants"))
xRegisterFunction("int xCreatePSystem(int)", xGetFunctionAddress("xCreatePSystem"))
xRegisterFunction("int xPSystemType(int)", xGetFunctionAddress("xPSystemType"))
xRegisterFunction("void xPSystemSetBlend(int, int)", xGetFunctionAddress("xPSystemSetBlend"))
xRegisterFunction("int xPSystemGetBlend(int)", xGetFunctionAddress("xPSystemGetBlend"))
xRegisterFunction("void xPSystemSetMaxParticles(int, int)", xGetFunctionAddress("xPSystemSetMaxParticles"))
xRegisterFunction("int xPSystemGetMaxParticles(int)", xGetFunctionAddress("xPSystemGetMaxParticles"))
xRegisterFunction("void xPSystemSetEmitterLifetime(int, int)", xGetFunctionAddress("xPSystemSetEmitterLifetime"))
xRegisterFunction("int xPSystemGetEmitterLifetime(int)", xGetFunctionAddress("xPSystemGetEmitterLifetime"))
xRegisterFunction("void xPSystemSetParticleLifetime(int, int)", xGetFunctionAddress("xPSystemSetParticleLifetime"))
xRegisterFunction("int xPSystemGetParticleLifetime(int)", xGetFunctionAddress("xPSystemGetParticleLifetime"))
xRegisterFunction("void xPSystemSetCreationInterval(int, int)", xGetFunctionAddress("xPSystemSetCreationInterval"))
xRegisterFunction("int xPSystemGetCreationInterval(int)", xGetFunctionAddress("xPSystemGetCreationInterval"))
xRegisterFunction("void xPSystemSetCreationFrequency(int, int)", xGetFunctionAddress("xPSystemSetCreationFrequency"))
xRegisterFunction("int xPSystemGetCreationFrequency(int)", xGetFunctionAddress("xPSystemGetCreationFrequency"))
xRegisterFunction("void xPSystemSetTexture(int, int, int, float)", xGetFunctionAddress("xPSystemSetTexture"))
xRegisterFunction("int xPSystemGetTexture(int)", xGetFunctionAddress("xPSystemGetTexture"))
xRegisterFunction("int xPSystemGetTextureFrames(int)", xGetFunctionAddress("xPSystemGetTextureFrames"))
xRegisterFunction("int xPSystemGetTextureAnimationSpeed(int)", xGetFunctionAddress("xPSystemGetTextureAnimationSpeed"))
xRegisterFunction("void xPSystemSetOffset(int, float, float, float, float, float, float)", xGetFunctionAddress("xPSystemSetOffset"))
xRegisterFunction("float xPSystemGetOffsetMinX(int)", xGetFunctionAddress("xPSystemGetOffsetMinX"))
xRegisterFunction("float xPSystemGetOffsetMinY(int)", xGetFunctionAddress("xPSystemGetOffsetMinY"))
xRegisterFunction("float xPSystemGetOffsetMinZ(int)", xGetFunctionAddress("xPSystemGetOffsetMinZ"))
xRegisterFunction("float xPSystemGetOffsetMaxX(int)", xGetFunctionAddress("xPSystemGetOffsetMaxX"))
xRegisterFunction("float xPSystemGetOffsetMaxY(int)", xGetFunctionAddress("xPSystemGetOffsetMaxY"))
xRegisterFunction("float xPSystemGetOffsetMaxZ(int)", xGetFunctionAddress("xPSystemGetOffsetMaxZ"))
xRegisterFunction("void xPSystemSetVelocity(int, float, float, float, float, float, float)", xGetFunctionAddress("xPSystemSetVelocity"))
xRegisterFunction("float xPSystemGetVelocityMinX(int)", xGetFunctionAddress("xPSystemGetVelocityMinX"))
xRegisterFunction("float xPSystemGetVelocityMinY(int)", xGetFunctionAddress("xPSystemGetVelocityMinY"))
xRegisterFunction("float xPSystemGetVelocityMinZ(int)", xGetFunctionAddress("xPSystemGetVelocityMinZ"))
xRegisterFunction("float xPSystemGetVelocityMaxX(int)", xGetFunctionAddress("xPSystemGetVelocityMaxX"))
xRegisterFunction("float xPSystemGetVelocityMaxY(int)", xGetFunctionAddress("xPSystemGetVelocityMaxY"))
xRegisterFunction("float xPSystemGetVelocityMaxZ(int)", xGetFunctionAddress("xPSystemGetVelocityMaxZ"))
xRegisterFunction("void xPSystemEnableFixedQuads(int, int)", xGetFunctionAddress("xPSystemEnableFixedQuads"))
xRegisterFunction("int xPSystemFixedQuadsUsed(int)", xGetFunctionAddress("xPSystemFixedQuadsUsed"))
xRegisterFunction("void xPSystemSetTorque(int, float, float, float, float, float, float)", xGetFunctionAddress("xPSystemSetTorque"))
xRegisterFunction("float xPSystemGetTorqueMinX(int)", xGetFunctionAddress("xPSystemGetTorqueMinX"))
xRegisterFunction("float xPSystemGetTorqueMinY(int)", xGetFunctionAddress("xPSystemGetTorqueMinY"))
xRegisterFunction("float xPSystemGetTorqueMinZ(int)", xGetFunctionAddress("xPSystemGetTorqueMinZ"))
xRegisterFunction("float xPSystemGetTorqueMaxX(int)", xGetFunctionAddress("xPSystemGetTorqueMaxX"))
xRegisterFunction("float xPSystemGetTorqueMaxY(int)", xGetFunctionAddress("xPSystemGetTorqueMaxY"))
xRegisterFunction("float xPSystemGetTorqueMaxZ(int)", xGetFunctionAddress("xPSystemGetTorqueMaxZ"))
xRegisterFunction("void xPSystemSetGravity(int, float)", xGetFunctionAddress("xPSystemSetGravity"))
xRegisterFunction("float xPSystemGetGravity(int)", xGetFunctionAddress("xPSystemGetGravity"))
xRegisterFunction("void xPSystemSetAlpha(int, float)", xGetFunctionAddress("xPSystemSetAlpha"))
xRegisterFunction("float xPSystemGetAlpha(int)", xGetFunctionAddress("xPSystemGetAlpha"))
xRegisterFunction("void xPSystemSetFadeSpeed(int, float)", xGetFunctionAddress("xPSystemSetFadeSpeed"))
xRegisterFunction("float xPSystemGetFadeSpeed(int)", xGetFunctionAddress("xPSystemGetFadeSpeed"))
xRegisterFunction("void xPSystemSetParticleSize(int, float, float, float, float)", xGetFunctionAddress("xPSystemSetParticleSize"))
xRegisterFunction("float xPSystemGetSizeMinX(int)", xGetFunctionAddress("xPSystemGetSizeMinX"))
xRegisterFunction("float xPSystemGetSizeMinY(int)", xGetFunctionAddress("xPSystemGetSizeMinY"))
xRegisterFunction("float xPSystemGetSizeMaxX(int)", xGetFunctionAddress("xPSystemGetSizeMaxX"))
xRegisterFunction("float xPSystemGetSizeMaxY(int)", xGetFunctionAddress("xPSystemGetSizeMaxY"))
xRegisterFunction("void xPSystemSetScaleSpeed(int, float, float, float, float)", xGetFunctionAddress("xPSystemSetScaleSpeed"))
xRegisterFunction("float xPSystemGetScaleSpeedMinX(int)", xGetFunctionAddress("xPSystemGetScaleSpeedMinX"))
xRegisterFunction("float xPSystemGetScaleSpeedMinY(int)", xGetFunctionAddress("xPSystemGetScaleSpeedMinY"))
xRegisterFunction("float xPSystemGetScaleSpeedMaxX(int)", xGetFunctionAddress("xPSystemGetScaleSpeedMaxX"))
xRegisterFunction("float xPSystemGetScaleSpeedMaxY(int)", xGetFunctionAddress("xPSystemGetScaleSpeedMaxY"))
xRegisterFunction("void xPSystemSetAngles(int, float, float, float, float, float, float)", xGetFunctionAddress("xPSystemSetAngles"))
xRegisterFunction("float xPSystemGetAnglesMinX(int)", xGetFunctionAddress("xPSystemGetAnglesMinX"))
xRegisterFunction("float xPSystemGetAnglesMinY(int)", xGetFunctionAddress("xPSystemGetAnglesMinY"))
xRegisterFunction("float xPSystemGetAnglesMinZ(int)", xGetFunctionAddress("xPSystemGetAnglesMinZ"))
xRegisterFunction("float xPSystemGetAnglesMaxX(int)", xGetFunctionAddress("xPSystemGetAnglesMaxX"))
xRegisterFunction("float xPSystemGetAnglesMaxY(int)", xGetFunctionAddress("xPSystemGetAnglesMaxY"))
xRegisterFunction("float xPSystemGetAnglesMaxZ(int)", xGetFunctionAddress("xPSystemGetAnglesMaxZ"))
xRegisterFunction("void xPSystemSetColorMode(int, int)", xGetFunctionAddress("xPSystemSetColorMode"))
xRegisterFunction("int xPSystemGetColorMode(int)", xGetFunctionAddress("xPSystemGetColorMode"))
xRegisterFunction("void xPSystemSetColors(int, float, float, float, float, float, float)", xGetFunctionAddress("xPSystemSetColors"))
xRegisterFunction("float xPSystemGetBeginColorRed(int)", xGetFunctionAddress("xPSystemGetBeginColorRed"))
xRegisterFunction("float xPSystemGetBeginColorGreen(int)", xGetFunctionAddress("xPSystemGetBeginColorGreen"))
xRegisterFunction("float xPSystemGetBeginColorBlue(int)", xGetFunctionAddress("xPSystemGetBeginColorBlue"))
xRegisterFunction("float xPSystemGetEndColorRed(int)", xGetFunctionAddress("xPSystemGetEndColorRed"))
xRegisterFunction("float xPSystemGetEndColorGreen(int)", xGetFunctionAddress("xPSystemGetEndColorGreen"))
xRegisterFunction("float xPSystemGetEndColorBlue(int)", xGetFunctionAddress("xPSystemGetEndColorBlue"))
xRegisterFunction("void xFreePSystem(int)", xGetFunctionAddress("xFreePSystem"))
xRegisterFunction("void xPSystemSetParticleParenting(int, int)", xGetFunctionAddress("xPSystemSetParticleParenting"))
xRegisterFunction("int xPSystemGetParticleParenting(int)", xGetFunctionAddress("xPSystemGetParticleParenting"))
xRegisterFunction("int xLinePick(float, float, float, float, float, float, float)", xGetFunctionAddress("xLinePick"))
xRegisterFunction("int xEntityPick(int, float)", xGetFunctionAddress("xEntityPick"))
xRegisterFunction("int xCameraPick(int, int, int)", xGetFunctionAddress("xCameraPick"))
xRegisterFunction("float xPickedNX()", xGetFunctionAddress("xPickedNX"))
xRegisterFunction("float xPickedNY()", xGetFunctionAddress("xPickedNY"))
xRegisterFunction("float xPickedNZ()", xGetFunctionAddress("xPickedNZ"))
xRegisterFunction("float xPickedX()", xGetFunctionAddress("xPickedX"))
xRegisterFunction("float xPickedY()", xGetFunctionAddress("xPickedY"))
xRegisterFunction("float xPickedZ()", xGetFunctionAddress("xPickedZ"))
xRegisterFunction("int xPickedEntity()", xGetFunctionAddress("xPickedEntity"))
xRegisterFunction("int xPickedSurface()", xGetFunctionAddress("xPickedSurface"))
xRegisterFunction("int xPickedTriangle()", xGetFunctionAddress("xPickedTriangle"))
xRegisterFunction("int xPickedTime()", xGetFunctionAddress("xPickedTime"))
xRegisterFunction("void xSetShadowsBlur(int)", xGetFunctionAddress("xSetShadowsBlur"))
xRegisterFunction("void xSetShadowShader(charsArray)", xGetFunctionAddress("xSetShadowShader"))
xRegisterFunction("int xInitShadows(int, int, int)", xGetFunctionAddress("xInitShadows"))
xRegisterFunction("void xSetShadowParams(int, float, int, float)", xGetFunctionAddress("xSetShadowParams"))
xRegisterFunction("void xRenderShadows(int, int)", xGetFunctionAddress("xRenderShadows"))
xRegisterFunction("void xShadowPriority(int)", xGetFunctionAddress("xShadowPriority"))
xRegisterFunction("void xCameraDisableShadows(int)", xGetFunctionAddress("xCameraDisableShadows"))
xRegisterFunction("void xCameraEnableShadows(int)", xGetFunctionAddress("xCameraEnableShadows"))
xRegisterFunction("void xEntityCastShadows(int, int, int)", xGetFunctionAddress("xEntityCastShadows"))
xRegisterFunction("void xEntityReceiveShadows(int, int, int)", xGetFunctionAddress("xEntityReceiveShadows"))
xRegisterFunction("int xEntityIsCaster(int, int)", xGetFunctionAddress("xEntityIsCaster"))
xRegisterFunction("int xEntityIsReceiver(int, int)", xGetFunctionAddress("xEntityIsReceiver"))
xRegisterFunction("int xLoadSound(charsArray)", xGetFunctionAddress("xLoadSound"))
xRegisterFunction("int xLoad3DSound(charsArray)", xGetFunctionAddress("xLoad3DSound"))
xRegisterFunction("void xFreeSound(int)", xGetFunctionAddress("xFreeSound"))
xRegisterFunction("void xLoopSound(int)", xGetFunctionAddress("xLoopSound"))
xRegisterFunction("void xSoundPitch(int, int)", xGetFunctionAddress("xSoundPitch"))
xRegisterFunction("void xSoundVolume(int, float)", xGetFunctionAddress("xSoundVolume"))
xRegisterFunction("void xSoundPan(int, float)", xGetFunctionAddress("xSoundPan"))
xRegisterFunction("int xPlaySound(int)", xGetFunctionAddress("xPlaySound"))
xRegisterFunction("void xStopChannel(int)", xGetFunctionAddress("xStopChannel"))
xRegisterFunction("void xPauseChannel(int)", xGetFunctionAddress("xPauseChannel"))
xRegisterFunction("void xResumeChannel(int)", xGetFunctionAddress("xResumeChannel"))
xRegisterFunction("int xPlayMusic(charsArray)", xGetFunctionAddress("xPlayMusic"))
xRegisterFunction("void xChannelPitch(int, int)", xGetFunctionAddress("xChannelPitch"))
xRegisterFunction("void xChannelVolume(int, float)", xGetFunctionAddress("xChannelVolume"))
xRegisterFunction("void xChannelPan(int, float)", xGetFunctionAddress("xChannelPan"))
xRegisterFunction("int xChannelPlaying(int)", xGetFunctionAddress("xChannelPlaying"))
xRegisterFunction("int xEmitSound(int, int)", xGetFunctionAddress("xEmitSound"))
xRegisterFunction("int xCreateListener(int, float, float, float)", xGetFunctionAddress("xCreateListener"))
xRegisterFunction("int xGetListener()", xGetFunctionAddress("xGetListener"))
xRegisterFunction("int xInitalizeSound()", xGetFunctionAddress("xInitalizeSound"))
xRegisterFunction("int xCreateSprite(int)", xGetFunctionAddress("xCreateSprite"))
xRegisterFunction("void xSpriteViewMode(int, int)", xGetFunctionAddress("xSpriteViewMode"))
xRegisterFunction("void xHandleSprite(int, float, float)", xGetFunctionAddress("xHandleSprite"))
xRegisterFunction("int xLoadSprite(charsArray, int, int)", xGetFunctionAddress("xLoadSprite"))
xRegisterFunction("void xRotateSprite(int, float)", xGetFunctionAddress("xRotateSprite"))
xRegisterFunction("void xScaleSprite(int, float, float)", xGetFunctionAddress("xScaleSprite"))
xRegisterFunction("int xCreateSurface(int, int, int)", xGetFunctionAddress("xCreateSurface"))
xRegisterFunction("int xGetSurfaceBrush(int)", xGetFunctionAddress("xGetSurfaceBrush"))
xRegisterFunction("int xAddVertex(int, float, float, float, float, float, float)", xGetFunctionAddress("xAddVertex"))
xRegisterFunction("int xAddTriangle(int, int, int, int)", xGetFunctionAddress("xAddTriangle"))
xRegisterFunction("void xSetSurfaceFrustumSphere(int, float, float, float, float)", xGetFunctionAddress("xSetSurfaceFrustumSphere"))
xRegisterFunction("void xVertexCoords(int, int, float, float, float)", xGetFunctionAddress("xVertexCoords"))
xRegisterFunction("void xVertexNormal(int, int, float, float, float)", xGetFunctionAddress("xVertexNormal"))
xRegisterFunction("void xVertexTangent(int, int, float, float, float)", xGetFunctionAddress("xVertexTangent"))
xRegisterFunction("void xVertexBinormal(int, int, float, float, float)", xGetFunctionAddress("xVertexBinormal"))
xRegisterFunction("void xVertexColor(int, int, int, int, int, float)", xGetFunctionAddress("xVertexColor"))
xRegisterFunction("void xVertexTexCoords(int, int, float, float, float, int)", xGetFunctionAddress("xVertexTexCoords"))
xRegisterFunction("int xCountVertices(int)", xGetFunctionAddress("xCountVertices"))
xRegisterFunction("float xVertexX(int, int)", xGetFunctionAddress("xVertexX"))
xRegisterFunction("float xVertexY(int, int)", xGetFunctionAddress("xVertexY"))
xRegisterFunction("float xVertexZ(int, int)", xGetFunctionAddress("xVertexZ"))
xRegisterFunction("float xVertexNX(int, int)", xGetFunctionAddress("xVertexNX"))
xRegisterFunction("float xVertexNY(int, int)", xGetFunctionAddress("xVertexNY"))
xRegisterFunction("float xVertexNZ(int, int)", xGetFunctionAddress("xVertexNZ"))
xRegisterFunction("float xVertexTX(int, int)", xGetFunctionAddress("xVertexTX"))
xRegisterFunction("float xVertexTY(int, int)", xGetFunctionAddress("xVertexTY"))
xRegisterFunction("float xVertexTZ(int, int)", xGetFunctionAddress("xVertexTZ"))
xRegisterFunction("float xVertexBX(int, int)", xGetFunctionAddress("xVertexBX"))
xRegisterFunction("float xVertexBY(int, int)", xGetFunctionAddress("xVertexBY"))
xRegisterFunction("float xVertexBZ(int, int)", xGetFunctionAddress("xVertexBZ"))
xRegisterFunction("float xVertexU(int, int, int)", xGetFunctionAddress("xVertexU"))
xRegisterFunction("float xVertexV(int, int, int)", xGetFunctionAddress("xVertexV"))
xRegisterFunction("float xVertexW(int, int, int)", xGetFunctionAddress("xVertexW"))
xRegisterFunction("float xVertexRed(int, int)", xGetFunctionAddress("xVertexRed"))
xRegisterFunction("float xVertexGreen(int, int)", xGetFunctionAddress("xVertexGreen"))
xRegisterFunction("float xVertexBlue(int, int)", xGetFunctionAddress("xVertexBlue"))
xRegisterFunction("float xVertexAlpha(int, int)", xGetFunctionAddress("xVertexAlpha"))
xRegisterFunction("int xTriangleVertex(int, int, int)", xGetFunctionAddress("xTriangleVertex"))
xRegisterFunction("int xCountTriangles(int)", xGetFunctionAddress("xCountTriangles"))
xRegisterFunction("void xPaintSurface(int, int)", xGetFunctionAddress("xPaintSurface"))
xRegisterFunction("void xClearSurface(int, int, int)", xGetFunctionAddress("xClearSurface"))
xRegisterFunction("int xGetSurfaceTexture(int, int)", xGetFunctionAddress("xGetSurfaceTexture"))
xRegisterFunction("void xFreeSurface(int)", xGetFunctionAddress("xFreeSurface"))
xRegisterFunction("void xSurfacePrimitiveType(int, int)", xGetFunctionAddress("xSurfacePrimitiveType"))
xRegisterFunction("void xSurfaceTexture(int, int, int, int)", xGetFunctionAddress("xSurfaceTexture"))
xRegisterFunction("void xSurfaceColor(int, int, int, int)", xGetFunctionAddress("xSurfaceColor"))
xRegisterFunction("void xSurfaceAlpha(int, float)", xGetFunctionAddress("xSurfaceAlpha"))
xRegisterFunction("void xSurfaceShininess(int, float)", xGetFunctionAddress("xSurfaceShininess"))
xRegisterFunction("void xSurfaceBlend(int, int)", xGetFunctionAddress("xSurfaceBlend"))
xRegisterFunction("void xSurfaceFX(int, int)", xGetFunctionAddress("xSurfaceFX"))
xRegisterFunction("void xSurfaceAlphaRef(int, int)", xGetFunctionAddress("xSurfaceAlphaRef"))
xRegisterFunction("void xSurfaceAlphaFunc(int, int)", xGetFunctionAddress("xSurfaceAlphaFunc"))
xRegisterFunction("charsArray xCPUName()", xGetFunctionAddress("xCPUName"))
xRegisterFunction("charsArray xCPUVendor()", xGetFunctionAddress("xCPUVendor"))
xRegisterFunction("int xCPUFamily()", xGetFunctionAddress("xCPUFamily"))
xRegisterFunction("int xCPUModel()", xGetFunctionAddress("xCPUModel"))
xRegisterFunction("int xCPUStepping()", xGetFunctionAddress("xCPUStepping"))
xRegisterFunction("int xCPUSpeed()", xGetFunctionAddress("xCPUSpeed"))
xRegisterFunction("charsArray xVideoInfo()", xGetFunctionAddress("xVideoInfo"))
xRegisterFunction("float xVideoAspectRatio()", xGetFunctionAddress("xVideoAspectRatio"))
xRegisterFunction("charsArray xVideoAspectRatioStr()", xGetFunctionAddress("xVideoAspectRatioStr"))
xRegisterFunction("float xGetTotalPhysMem()", xGetFunctionAddress("xGetTotalPhysMem"))
xRegisterFunction("float xGetAvailPhysMem()", xGetFunctionAddress("xGetAvailPhysMem"))
xRegisterFunction("float xGetTotalPageMem()", xGetFunctionAddress("xGetTotalPageMem"))
xRegisterFunction("float xGetAvailPageMem()", xGetFunctionAddress("xGetAvailPageMem"))
xRegisterFunction("float xGetTotalVidMem()", xGetFunctionAddress("xGetTotalVidMem"))
xRegisterFunction("float xGetAvailVidMem()", xGetFunctionAddress("xGetAvailVidMem"))
xRegisterFunction("float xGetTotalVidLocalMem()", xGetFunctionAddress("xGetTotalVidLocalMem"))
xRegisterFunction("float xGetAvailVidLocalMem()", xGetFunctionAddress("xGetAvailVidLocalMem"))
xRegisterFunction("float xGetTotalVidNonlocalMem()", xGetFunctionAddress("xGetTotalVidNonlocalMem"))
xRegisterFunction("float xGetAvailVidNonlocalMem()", xGetFunctionAddress("xGetAvailVidNonlocalMem"))
xRegisterFunction("charsArray xGetXors3dVersion()", xGetFunctionAddress("xGetXors3dVersion"))
xRegisterFunction("int xGetXors3dMajorVersion()", xGetFunctionAddress("xGetXors3dMajorVersion"))
xRegisterFunction("int xGetXors3dMinorVersion()", xGetFunctionAddress("xGetXors3dMinorVersion"))
xRegisterFunction("int xGetXors3dRevision()", xGetFunctionAddress("xGetXors3dRevision"))
xRegisterFunction("int xLoadTerrain(charsArray, int)", xGetFunctionAddress("xLoadTerrain"))
xRegisterFunction("int xCreateTerrain(int, int)", xGetFunctionAddress("xCreateTerrain"))
xRegisterFunction("void xTerrainShading(int, int)", xGetFunctionAddress("xTerrainShading"))
xRegisterFunction("float xTerrainHeight(int, int, int)", xGetFunctionAddress("xTerrainHeight"))
xRegisterFunction("int xTerrainSize(int)", xGetFunctionAddress("xTerrainSize"))
xRegisterFunction("float xTerrainX(int, float, float, float)", xGetFunctionAddress("xTerrainX"))
xRegisterFunction("float xTerrainY(int, float, float, float)", xGetFunctionAddress("xTerrainY"))
xRegisterFunction("float xTerrainZ(int, float, float, float)", xGetFunctionAddress("xTerrainZ"))
xRegisterFunction("void xModifyTerrain(int, int, int, float, int)", xGetFunctionAddress("xModifyTerrain"))
xRegisterFunction("void xTerrainDetail(int, int)", xGetFunctionAddress("xTerrainDetail"))
xRegisterFunction("void xTerrainSplatting(int, int)", xGetFunctionAddress("xTerrainSplatting"))
xRegisterFunction("int xLoadTerrainTexture(charsArray)", xGetFunctionAddress("xLoadTerrainTexture"))
xRegisterFunction("void xFreeTerrainTexture(int)", xGetFunctionAddress("xFreeTerrainTexture"))
xRegisterFunction("void xTerrainTextureLightmap(int, int)", xGetFunctionAddress("xTerrainTextureLightmap"))
xRegisterFunction("void xTerrainTexture(int, int)", xGetFunctionAddress("xTerrainTexture"))
xRegisterFunction("void xTerrainViewZone(int, int, int)", xGetFunctionAddress("xTerrainViewZone"))
xRegisterFunction("void xTerrainLODs(int)", xGetFunctionAddress("xTerrainLODs"))
xRegisterFunction("int xTextureWidth(int)", xGetFunctionAddress("xTextureWidth"))
xRegisterFunction("int xTextureHeight(int)", xGetFunctionAddress("xTextureHeight"))
xRegisterFunction("int xCreateTexture(int, int, int, int)", xGetFunctionAddress("xCreateTexture"))
xRegisterFunction("void xFreeTexture(int)", xGetFunctionAddress("xFreeTexture"))
xRegisterFunction("void xSetTextureFilter(int, int)", xGetFunctionAddress("xSetTextureFilter"))
xRegisterFunction("void xTextureBlend(int, int)", xGetFunctionAddress("xTextureBlend"))
xRegisterFunction("void xTextureCoords(int, int)", xGetFunctionAddress("xTextureCoords"))
xRegisterFunction("void xTextureFilter(charsArray, int)", xGetFunctionAddress("xTextureFilter"))
xRegisterFunction("void xClearTextureFilters()", xGetFunctionAddress("xClearTextureFilters"))
xRegisterFunction("int xLoadTexture(charsArray, int)", xGetFunctionAddress("xLoadTexture"))
xRegisterFunction("charsArray xTextureName(int)", xGetFunctionAddress("xTextureName"))
xRegisterFunction("void xPositionTexture(int, float, float)", xGetFunctionAddress("xPositionTexture"))
xRegisterFunction("void xScaleTexture(int, float, float)", xGetFunctionAddress("xScaleTexture"))
xRegisterFunction("void xRotateTexture(int, float)", xGetFunctionAddress("xRotateTexture"))
xRegisterFunction("int xLoadAnimTexture(charsArray, int, int, int, int, int)", xGetFunctionAddress("xLoadAnimTexture"))
xRegisterFunction("int xCreateTextureFromData(int, int, int, int, int)", xGetFunctionAddress("xCreateTextureFromData"))
xRegisterFunction("int xGetTextureData(int, int)", xGetFunctionAddress("xGetTextureData"))
xRegisterFunction("int xGetTextureDataPitch(int, int)", xGetFunctionAddress("xGetTextureDataPitch"))
xRegisterFunction("int xGetTextureSurface(int, int)", xGetFunctionAddress("xGetTextureSurface"))
xRegisterFunction("int xGetTextureFrames(int)", xGetFunctionAddress("xGetTextureFrames"))