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
#[allow(unused_imports)]
use crate::*;
extern "C" {
    fn window_get_window(instance: DOMReference) -> i32;
    fn window_set_window(instance: DOMReference, value: i32);
}

pub fn get_window(instance: DOMReference) -> i32 {
    unsafe { window_get_window(instance) }
}

pub fn set_window(instance: DOMReference, value: i32) {
    unsafe {
        window_set_window(instance, value);
    }
}
extern "C" {
    fn window_get_self(instance: DOMReference) -> i32;
    fn window_set_self(instance: DOMReference, value: i32);
}

pub fn get_self(instance: DOMReference) -> i32 {
    unsafe { window_get_self(instance) }
}

pub fn set_self(instance: DOMReference, value: i32) {
    unsafe {
        window_set_self(instance, value);
    }
}
extern "C" {
    fn window_get_document(instance: DOMReference) -> i32;
    fn window_set_document(instance: DOMReference, value: i32);
}

pub fn get_document(instance: DOMReference) -> i32 {
    unsafe { window_get_document(instance) }
}

pub fn set_document(instance: DOMReference, value: i32) {
    unsafe {
        window_set_document(instance, value);
    }
}
extern "C" {
    fn window_get_name(instance: DOMReference) -> CString;
    fn window_set_name(instance: DOMReference, value: CString);
}

pub fn get_name(instance: DOMReference) -> String {
    unsafe { to_string(window_get_name(instance)) }
}

pub fn set_name(instance: DOMReference, value: &str) {
    unsafe {
        window_set_name(instance, to_cstring(value));
    }
}
extern "C" {
    fn window_get_location(instance: DOMReference) -> i32;
    fn window_set_location(instance: DOMReference, value: i32);
}

pub fn get_location(instance: DOMReference) -> i32 {
    unsafe { window_get_location(instance) }
}

pub fn set_location(instance: DOMReference, value: i32) {
    unsafe {
        window_set_location(instance, value);
    }
}
extern "C" {
    fn window_get_history(instance: DOMReference) -> i32;
    fn window_set_history(instance: DOMReference, value: i32);
}

pub fn get_history(instance: DOMReference) -> i32 {
    unsafe { window_get_history(instance) }
}

pub fn set_history(instance: DOMReference, value: i32) {
    unsafe {
        window_set_history(instance, value);
    }
}
extern "C" {
    fn window_get_custom_elements(instance: DOMReference) -> i32;
    fn window_set_custom_elements(instance: DOMReference, value: i32);
}

pub fn get_custom_elements(instance: DOMReference) -> i32 {
    unsafe { window_get_custom_elements(instance) }
}

pub fn set_custom_elements(instance: DOMReference, value: i32) {
    unsafe {
        window_set_custom_elements(instance, value);
    }
}
extern "C" {
    fn window_get_locationbar(instance: DOMReference) -> i32;
    fn window_set_locationbar(instance: DOMReference, value: i32);
}

pub fn get_locationbar(instance: DOMReference) -> i32 {
    unsafe { window_get_locationbar(instance) }
}

pub fn set_locationbar(instance: DOMReference, value: i32) {
    unsafe {
        window_set_locationbar(instance, value);
    }
}
extern "C" {
    fn window_get_menubar(instance: DOMReference) -> i32;
    fn window_set_menubar(instance: DOMReference, value: i32);
}

pub fn get_menubar(instance: DOMReference) -> i32 {
    unsafe { window_get_menubar(instance) }
}

pub fn set_menubar(instance: DOMReference, value: i32) {
    unsafe {
        window_set_menubar(instance, value);
    }
}
extern "C" {
    fn window_get_personalbar(instance: DOMReference) -> i32;
    fn window_set_personalbar(instance: DOMReference, value: i32);
}

pub fn get_personalbar(instance: DOMReference) -> i32 {
    unsafe { window_get_personalbar(instance) }
}

pub fn set_personalbar(instance: DOMReference, value: i32) {
    unsafe {
        window_set_personalbar(instance, value);
    }
}
extern "C" {
    fn window_get_scrollbars(instance: DOMReference) -> i32;
    fn window_set_scrollbars(instance: DOMReference, value: i32);
}

pub fn get_scrollbars(instance: DOMReference) -> i32 {
    unsafe { window_get_scrollbars(instance) }
}

pub fn set_scrollbars(instance: DOMReference, value: i32) {
    unsafe {
        window_set_scrollbars(instance, value);
    }
}
extern "C" {
    fn window_get_statusbar(instance: DOMReference) -> i32;
    fn window_set_statusbar(instance: DOMReference, value: i32);
}

pub fn get_statusbar(instance: DOMReference) -> i32 {
    unsafe { window_get_statusbar(instance) }
}

pub fn set_statusbar(instance: DOMReference, value: i32) {
    unsafe {
        window_set_statusbar(instance, value);
    }
}
extern "C" {
    fn window_get_toolbar(instance: DOMReference) -> i32;
    fn window_set_toolbar(instance: DOMReference, value: i32);
}

pub fn get_toolbar(instance: DOMReference) -> i32 {
    unsafe { window_get_toolbar(instance) }
}

pub fn set_toolbar(instance: DOMReference, value: i32) {
    unsafe {
        window_set_toolbar(instance, value);
    }
}
extern "C" {
    fn window_get_status(instance: DOMReference) -> CString;
    fn window_set_status(instance: DOMReference, value: CString);
}

pub fn get_status(instance: DOMReference) -> String {
    unsafe { to_string(window_get_status(instance)) }
}

pub fn set_status(instance: DOMReference, value: &str) {
    unsafe {
        window_set_status(instance, to_cstring(value));
    }
}
extern "C" {
    fn window_close(instance: i32);
}

pub fn close(instance: i32) {
    unsafe { window_close(instance) }
}
extern "C" {
    fn window_get_closed(instance: DOMReference) -> i32;
    fn window_set_closed(instance: DOMReference, value: i32);
}

pub fn get_closed(instance: DOMReference) -> i32 {
    unsafe { window_get_closed(instance) }
}

pub fn set_closed(instance: DOMReference, value: i32) {
    unsafe {
        window_set_closed(instance, value);
    }
}
extern "C" {
    fn window_stop(instance: i32);
}

pub fn stop(instance: i32) {
    unsafe { window_stop(instance) }
}
extern "C" {
    fn window_focus(instance: i32);
}

pub fn focus(instance: i32) {
    unsafe { window_focus(instance) }
}
extern "C" {
    fn window_blur(instance: i32);
}

pub fn blur(instance: i32) {
    unsafe { window_blur(instance) }
}
extern "C" {
    fn window_get_event(instance: DOMReference) -> i32;
    fn window_set_event(instance: DOMReference, value: i32);
}

pub fn get_event(instance: DOMReference) -> i32 {
    unsafe { window_get_event(instance) }
}

pub fn set_event(instance: DOMReference, value: i32) {
    unsafe {
        window_set_event(instance, value);
    }
}
extern "C" {
    fn window_get_frames(instance: DOMReference) -> i32;
    fn window_set_frames(instance: DOMReference, value: i32);
}

pub fn get_frames(instance: DOMReference) -> i32 {
    unsafe { window_get_frames(instance) }
}

pub fn set_frames(instance: DOMReference, value: i32) {
    unsafe {
        window_set_frames(instance, value);
    }
}
extern "C" {
    fn window_get_length(instance: DOMReference) -> i32;
    fn window_set_length(instance: DOMReference, value: i32);
}

pub fn get_length(instance: DOMReference) -> i32 {
    unsafe { window_get_length(instance) }
}

pub fn set_length(instance: DOMReference, value: i32) {
    unsafe {
        window_set_length(instance, value);
    }
}
extern "C" {
    fn window_get_top(instance: DOMReference) -> i32;
    fn window_set_top(instance: DOMReference, value: i32);
}

pub fn get_top(instance: DOMReference) -> i32 {
    unsafe { window_get_top(instance) }
}

pub fn set_top(instance: DOMReference, value: i32) {
    unsafe {
        window_set_top(instance, value);
    }
}
extern "C" {
    fn window_get_opener(instance: DOMReference) -> i32;
    fn window_set_opener(instance: DOMReference, value: i32);
}

pub fn get_opener(instance: DOMReference) -> i32 {
    unsafe { window_get_opener(instance) }
}

pub fn set_opener(instance: DOMReference, value: i32) {
    unsafe {
        window_set_opener(instance, value);
    }
}
extern "C" {
    fn window_get_parent(instance: DOMReference) -> i32;
    fn window_set_parent(instance: DOMReference, value: i32);
}

pub fn get_parent(instance: DOMReference) -> i32 {
    unsafe { window_get_parent(instance) }
}

pub fn set_parent(instance: DOMReference, value: i32) {
    unsafe {
        window_set_parent(instance, value);
    }
}
extern "C" {
    fn window_get_frame_element(instance: DOMReference) -> i32;
    fn window_set_frame_element(instance: DOMReference, value: i32);
}

pub fn get_frame_element(instance: DOMReference) -> i32 {
    unsafe { window_get_frame_element(instance) }
}

pub fn set_frame_element(instance: DOMReference, value: i32) {
    unsafe {
        window_set_frame_element(instance, value);
    }
}
extern "C" {
    fn window_open(instance: i32, url: CString, target: CString, features: CString) -> i32;
}

pub fn open(instance: i32, url: &str, target: &str, features: &str) -> i32 {
    unsafe {
        window_open(
            instance,
            to_cstring(url),
            to_cstring(target),
            to_cstring(features),
        )
    }
}
extern "C" {
    fn window_get_navigator(instance: DOMReference) -> i32;
    fn window_set_navigator(instance: DOMReference, value: i32);
}

pub fn get_navigator(instance: DOMReference) -> i32 {
    unsafe { window_get_navigator(instance) }
}

pub fn set_navigator(instance: DOMReference, value: i32) {
    unsafe {
        window_set_navigator(instance, value);
    }
}
extern "C" {
    fn window_get_external(instance: DOMReference) -> i32;
    fn window_set_external(instance: DOMReference, value: i32);
}

pub fn get_external(instance: DOMReference) -> i32 {
    unsafe { window_get_external(instance) }
}

pub fn set_external(instance: DOMReference, value: i32) {
    unsafe {
        window_set_external(instance, value);
    }
}
extern "C" {
    fn window_get_application_cache(instance: DOMReference) -> i32;
    fn window_set_application_cache(instance: DOMReference, value: i32);
}

pub fn get_application_cache(instance: DOMReference) -> i32 {
    unsafe { window_get_application_cache(instance) }
}

pub fn set_application_cache(instance: DOMReference, value: i32) {
    unsafe {
        window_set_application_cache(instance, value);
    }
}
extern "C" {
    fn window_alert(instance: i32, message: CString);
}

pub fn alert(instance: i32, message: &str) {
    unsafe { window_alert(instance, to_cstring(message)) }
}
extern "C" {
    fn window_confirm(instance: i32, message: CString) -> i32;
}

pub fn confirm(instance: i32, message: &str) -> i32 {
    unsafe { window_confirm(instance, to_cstring(message)) }
}
extern "C" {
    fn window_prompt(instance: i32, message: CString, default_message: CString) -> CString;
}

pub fn prompt(instance: i32, message: &str, default_message: &str) -> String {
    unsafe {
        to_string(window_prompt(
            instance,
            to_cstring(message),
            to_cstring(default_message),
        ))
    }
}
extern "C" {
    fn window_print(instance: i32);
}

pub fn print(instance: i32) {
    unsafe { window_print(instance) }
}
extern "C" {
    fn window_post_message(instance: i32, message: i32, target_origin: CString, transfer: i32);
}

pub fn post_message(instance: i32, message: i32, target_origin: &str, transfer: i32) {
    unsafe { window_post_message(instance, message, to_cstring(target_origin), transfer) }
}
extern "C" {
    fn window_get_onappinstalled(instance: DOMReference) -> i32;
    fn window_set_onappinstalled(instance: DOMReference, value: i32);
}

pub fn get_onappinstalled(instance: DOMReference) -> i32 {
    unsafe { window_get_onappinstalled(instance) }
}

pub fn set_onappinstalled(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onappinstalled(instance, value);
    }
}
extern "C" {
    fn window_capture_events(instance: i32);
}

pub fn capture_events(instance: i32) {
    unsafe { window_capture_events(instance) }
}
extern "C" {
    fn window_release_events(instance: i32);
}

pub fn release_events(instance: i32) {
    unsafe { window_release_events(instance) }
}
extern "C" {
    fn window_get_selection(instance: i32) -> i32;
}

pub fn get_selection(instance: i32) -> i32 {
    unsafe { window_get_selection(instance) }
}
extern "C" {
    fn window_get_computed_style(instance: i32, elt: i32, pseudo_elt: CString) -> i32;
}

pub fn get_computed_style(instance: i32, elt: i32, pseudo_elt: &str) -> i32 {
    unsafe { window_get_computed_style(instance, elt, to_cstring(pseudo_elt)) }
}
extern "C" {
    fn window_match_media(instance: i32, query: CString) -> i32;
}

pub fn match_media(instance: i32, query: &str) -> i32 {
    unsafe { window_match_media(instance, to_cstring(query)) }
}
extern "C" {
    fn window_get_screen(instance: DOMReference) -> i32;
    fn window_set_screen(instance: DOMReference, value: i32);
}

pub fn get_screen(instance: DOMReference) -> i32 {
    unsafe { window_get_screen(instance) }
}

pub fn set_screen(instance: DOMReference, value: i32) {
    unsafe {
        window_set_screen(instance, value);
    }
}
extern "C" {
    fn window_move_to(instance: i32, x: i32, y: i32);
}

pub fn move_to(instance: i32, x: i32, y: i32) {
    unsafe { window_move_to(instance, x, y) }
}
extern "C" {
    fn window_move_by(instance: i32, x: i32, y: i32);
}

pub fn move_by(instance: i32, x: i32, y: i32) {
    unsafe { window_move_by(instance, x, y) }
}
extern "C" {
    fn window_resize_to(instance: i32, x: i32, y: i32);
}

pub fn resize_to(instance: i32, x: i32, y: i32) {
    unsafe { window_resize_to(instance, x, y) }
}
extern "C" {
    fn window_resize_by(instance: i32, x: i32, y: i32);
}

pub fn resize_by(instance: i32, x: i32, y: i32) {
    unsafe { window_resize_by(instance, x, y) }
}
extern "C" {
    fn window_get_inner_width(instance: DOMReference) -> i32;
    fn window_set_inner_width(instance: DOMReference, value: i32);
}

pub fn get_inner_width(instance: DOMReference) -> i32 {
    unsafe { window_get_inner_width(instance) }
}

pub fn set_inner_width(instance: DOMReference, value: i32) {
    unsafe {
        window_set_inner_width(instance, value);
    }
}
extern "C" {
    fn window_get_inner_height(instance: DOMReference) -> i32;
    fn window_set_inner_height(instance: DOMReference, value: i32);
}

pub fn get_inner_height(instance: DOMReference) -> i32 {
    unsafe { window_get_inner_height(instance) }
}

pub fn set_inner_height(instance: DOMReference, value: i32) {
    unsafe {
        window_set_inner_height(instance, value);
    }
}
extern "C" {
    fn window_scroll(instance: i32, x: i32, y: i32);
}

pub fn scroll(instance: i32, x: i32, y: i32) {
    unsafe { window_scroll(instance, x, y) }
}
extern "C" {
    fn window_scroll_to(instance: i32, x: i32, y: i32);
}

pub fn scroll_to(instance: i32, x: i32, y: i32) {
    unsafe { window_scroll_to(instance, x, y) }
}
extern "C" {
    fn window_scroll_by(instance: i32, x: i32, y: i32);
}

pub fn scroll_by(instance: i32, x: i32, y: i32) {
    unsafe { window_scroll_by(instance, x, y) }
}
extern "C" {
    fn window_get_scroll_x(instance: DOMReference) -> i32;
    fn window_set_scroll_x(instance: DOMReference, value: i32);
}

pub fn get_scroll_x(instance: DOMReference) -> i32 {
    unsafe { window_get_scroll_x(instance) }
}

pub fn set_scroll_x(instance: DOMReference, value: i32) {
    unsafe {
        window_set_scroll_x(instance, value);
    }
}
extern "C" {
    fn window_get_page_x_offset(instance: DOMReference) -> i32;
    fn window_set_page_x_offset(instance: DOMReference, value: i32);
}

pub fn get_page_x_offset(instance: DOMReference) -> i32 {
    unsafe { window_get_page_x_offset(instance) }
}

pub fn set_page_x_offset(instance: DOMReference, value: i32) {
    unsafe {
        window_set_page_x_offset(instance, value);
    }
}
extern "C" {
    fn window_get_scroll_y(instance: DOMReference) -> i32;
    fn window_set_scroll_y(instance: DOMReference, value: i32);
}

pub fn get_scroll_y(instance: DOMReference) -> i32 {
    unsafe { window_get_scroll_y(instance) }
}

pub fn set_scroll_y(instance: DOMReference, value: i32) {
    unsafe {
        window_set_scroll_y(instance, value);
    }
}
extern "C" {
    fn window_get_page_y_offset(instance: DOMReference) -> i32;
    fn window_set_page_y_offset(instance: DOMReference, value: i32);
}

pub fn get_page_y_offset(instance: DOMReference) -> i32 {
    unsafe { window_get_page_y_offset(instance) }
}

pub fn set_page_y_offset(instance: DOMReference, value: i32) {
    unsafe {
        window_set_page_y_offset(instance, value);
    }
}
extern "C" {
    fn window_get_screen_x(instance: DOMReference) -> i32;
    fn window_set_screen_x(instance: DOMReference, value: i32);
}

pub fn get_screen_x(instance: DOMReference) -> i32 {
    unsafe { window_get_screen_x(instance) }
}

pub fn set_screen_x(instance: DOMReference, value: i32) {
    unsafe {
        window_set_screen_x(instance, value);
    }
}
extern "C" {
    fn window_get_screen_y(instance: DOMReference) -> i32;
    fn window_set_screen_y(instance: DOMReference, value: i32);
}

pub fn get_screen_y(instance: DOMReference) -> i32 {
    unsafe { window_get_screen_y(instance) }
}

pub fn set_screen_y(instance: DOMReference, value: i32) {
    unsafe {
        window_set_screen_y(instance, value);
    }
}
extern "C" {
    fn window_get_outer_width(instance: DOMReference) -> i32;
    fn window_set_outer_width(instance: DOMReference, value: i32);
}

pub fn get_outer_width(instance: DOMReference) -> i32 {
    unsafe { window_get_outer_width(instance) }
}

pub fn set_outer_width(instance: DOMReference, value: i32) {
    unsafe {
        window_set_outer_width(instance, value);
    }
}
extern "C" {
    fn window_get_outer_height(instance: DOMReference) -> i32;
    fn window_set_outer_height(instance: DOMReference, value: i32);
}

pub fn get_outer_height(instance: DOMReference) -> i32 {
    unsafe { window_get_outer_height(instance) }
}

pub fn set_outer_height(instance: DOMReference, value: i32) {
    unsafe {
        window_set_outer_height(instance, value);
    }
}
extern "C" {
    fn window_get_device_pixel_ratio(instance: DOMReference) -> i32;
    fn window_set_device_pixel_ratio(instance: DOMReference, value: i32);
}

pub fn get_device_pixel_ratio(instance: DOMReference) -> i32 {
    unsafe { window_get_device_pixel_ratio(instance) }
}

pub fn set_device_pixel_ratio(instance: DOMReference, value: i32) {
    unsafe {
        window_set_device_pixel_ratio(instance, value);
    }
}
extern "C" {
    fn window_request_animation_frame(instance: i32, callback: i32) -> i32;
}

pub fn request_animation_frame(instance: i32, callback: i32) -> i32 {
    unsafe { window_request_animation_frame(instance, callback) }
}
extern "C" {
    fn window_cancel_animation_frame(instance: i32, handle: i32);
}

pub fn cancel_animation_frame(instance: i32, handle: i32) {
    unsafe { window_cancel_animation_frame(instance, handle) }
}
extern "C" {
    fn window_get_performance(instance: DOMReference) -> i32;
    fn window_set_performance(instance: DOMReference, value: i32);
}

pub fn get_performance(instance: DOMReference) -> i32 {
    unsafe { window_get_performance(instance) }
}

pub fn set_performance(instance: DOMReference, value: i32) {
    unsafe {
        window_set_performance(instance, value);
    }
}
extern "C" {
    fn window_get_orientation(instance: DOMReference) -> i32;
    fn window_set_orientation(instance: DOMReference, value: i32);
}

pub fn get_orientation(instance: DOMReference) -> i32 {
    unsafe { window_get_orientation(instance) }
}

pub fn set_orientation(instance: DOMReference, value: i32) {
    unsafe {
        window_set_orientation(instance, value);
    }
}
extern "C" {
    fn window_get_onorientationchange(instance: DOMReference) -> i32;
    fn window_set_onorientationchange(instance: DOMReference, value: i32);
}

pub fn get_onorientationchange(instance: DOMReference) -> i32 {
    unsafe { window_get_onorientationchange(instance) }
}

pub fn set_onorientationchange(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onorientationchange(instance, value);
    }
}
extern "C" {
    fn window_get_onvrdisplayconnect(instance: DOMReference) -> i32;
    fn window_set_onvrdisplayconnect(instance: DOMReference, value: i32);
}

pub fn get_onvrdisplayconnect(instance: DOMReference) -> i32 {
    unsafe { window_get_onvrdisplayconnect(instance) }
}

pub fn set_onvrdisplayconnect(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onvrdisplayconnect(instance, value);
    }
}
extern "C" {
    fn window_get_onvrdisplaydisconnect(instance: DOMReference) -> i32;
    fn window_set_onvrdisplaydisconnect(instance: DOMReference, value: i32);
}

pub fn get_onvrdisplaydisconnect(instance: DOMReference) -> i32 {
    unsafe { window_get_onvrdisplaydisconnect(instance) }
}

pub fn set_onvrdisplaydisconnect(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onvrdisplaydisconnect(instance, value);
    }
}
extern "C" {
    fn window_get_onvrdisplayactivate(instance: DOMReference) -> i32;
    fn window_set_onvrdisplayactivate(instance: DOMReference, value: i32);
}

pub fn get_onvrdisplayactivate(instance: DOMReference) -> i32 {
    unsafe { window_get_onvrdisplayactivate(instance) }
}

pub fn set_onvrdisplayactivate(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onvrdisplayactivate(instance, value);
    }
}
extern "C" {
    fn window_get_onvrdisplaydeactivate(instance: DOMReference) -> i32;
    fn window_set_onvrdisplaydeactivate(instance: DOMReference, value: i32);
}

pub fn get_onvrdisplaydeactivate(instance: DOMReference) -> i32 {
    unsafe { window_get_onvrdisplaydeactivate(instance) }
}

pub fn set_onvrdisplaydeactivate(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onvrdisplaydeactivate(instance, value);
    }
}
extern "C" {
    fn window_get_onvrdisplaypresentchange(instance: DOMReference) -> i32;
    fn window_set_onvrdisplaypresentchange(instance: DOMReference, value: i32);
}

pub fn get_onvrdisplaypresentchange(instance: DOMReference) -> i32 {
    unsafe { window_get_onvrdisplaypresentchange(instance) }
}

pub fn set_onvrdisplaypresentchange(instance: DOMReference, value: i32) {
    unsafe {
        window_set_onvrdisplaypresentchange(instance, value);
    }
}
extern "C" {
    fn window_get_paint_worklet(instance: DOMReference) -> i32;
    fn window_set_paint_worklet(instance: DOMReference, value: i32);
}

pub fn get_paint_worklet(instance: DOMReference) -> i32 {
    unsafe { window_get_paint_worklet(instance) }
}

pub fn set_paint_worklet(instance: DOMReference, value: i32) {
    unsafe {
        window_set_paint_worklet(instance, value);
    }
}
extern "C" {
    fn window_request_idle_callback(instance: i32, callback: i32, options: i32) -> i32;
}

pub fn request_idle_callback(instance: i32, callback: i32, options: i32) -> i32 {
    unsafe { window_request_idle_callback(instance, callback, options) }
}
extern "C" {
    fn window_cancel_idle_callback(instance: i32, handle: i32);
}

pub fn cancel_idle_callback(instance: i32, handle: i32) {
    unsafe { window_cancel_idle_callback(instance, handle) }
}
extern "C" {
    fn window_get_origin(instance: DOMReference) -> i32;
    fn window_set_origin(instance: DOMReference, value: i32);
}

pub fn get_origin(instance: DOMReference) -> i32 {
    unsafe { window_get_origin(instance) }
}

pub fn set_origin(instance: DOMReference, value: i32) {
    unsafe {
        window_set_origin(instance, value);
    }
}
extern "C" {
    fn window_btoa(instance: i32, btoa: CString) -> CString;
}

pub fn btoa(instance: i32, btoa: &str) -> String {
    unsafe { to_string(window_btoa(instance, to_cstring(btoa))) }
}
extern "C" {
    fn window_atob(instance: i32, atob: CString) -> CString;
}

pub fn atob(instance: i32, atob: &str) -> String {
    unsafe { to_string(window_atob(instance, to_cstring(atob))) }
}
extern "C" {
    fn window_set_timeout(instance: i32, handler: i32, timeout: i32) -> i32;
}

pub fn set_timeout(instance: i32, handler: i32, timeout: i32) -> i32 {
    unsafe { window_set_timeout(instance, handler, timeout) }
}
extern "C" {
    fn window_clear_timeout(instance: i32, handle: i32);
}

pub fn clear_timeout(instance: i32, handle: i32) {
    unsafe { window_clear_timeout(instance, handle) }
}
extern "C" {
    fn window_set_interval(instance: i32, handler: i32, timeout: i32) -> i32;
}

pub fn set_interval(instance: i32, handler: i32, timeout: i32) -> i32 {
    unsafe { window_set_interval(instance, handler, timeout) }
}
extern "C" {
    fn window_clear_interval(instance: i32, handle: i32);
}

pub fn clear_interval(instance: i32, handle: i32) {
    unsafe { window_clear_interval(instance, handle) }
}
extern "C" {
    fn window_create_image_bitmap(
        instance: i32,
        a_image: i32,
        a_sx: i32,
        a_sy: i32,
        a_sw: i32,
        a_sh: i32,
    ) -> i32;
}

pub fn create_image_bitmap(
    instance: i32,
    a_image: i32,
    a_sx: i32,
    a_sy: i32,
    a_sw: i32,
    a_sh: i32,
) -> i32 {
    unsafe { window_create_image_bitmap(instance, a_image, a_sx, a_sy, a_sw, a_sh) }
}